Skip to content

NecroMancer05/DxfReader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DxfReader

  • Basic .dxf file reader.
  • Fast.
  • Consumes less memory.
  • Only reads 4 entitity types: Polyline, Line, Multiline and Point
  • Can read Header and Layers too.
  • Example
static void Main(string[] args)
{
    var dxfContents = DxfContents.Read("dxfFilePath");

    var polylines = dxfContents.Polylines;

    foreach (var point in dxfContents.Points)
    {
        //do whatever you want
    }
}

About

Lightning fast Dxf file reader.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages