Skip to content

whitegreen/Import-DXF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Import-DXF

This library imports polylines from DXF file, based on the kabeja library.

dependency: kabeja-0.4.jar

read polylines from single layer

String file=“…/poly0.dxf”;

double[][][] polygons = DXFImport.polylines_layer(file, "poly");

read polylines from multiple layers

String[] layerNames = { "poly", "vd", "bound" };

double[][][][] all = DXFImport.polylines_layers(file, layerNames);

alt text

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages