Skip to content

r3sist0r/converters

 
 

Repository files navigation

IxMilia.Converters

A portable .NET library for converting between various CAD file types.

Examples

Convert DXF to SVG

var dxf = DxfFile.Load(@"C:\path\to\file.dxf");

// specify the DXF bounds to plot; left, right, bottom, top
var dxfRect = new ConverterDxfRect(0.0, 800.0, 0.0, 600.0);

// specify the SVG element size
var svgRect = new ConverterSvgRect(400.0, 300.0);

// create options
var convertOptions = new DxfToSvgConverterOptions(dxfRect, svgRect);

// and finally convert
var svg = new DxfToSvgConverter().Convert(dxf, convertOptions);

// optionally write the svg to disk
svg.SaveTo(@"C:\path\to\my\final.svg");

Populate the submodules with

git submodule update --init --recursive

Update submodules to latest with

git submodule update --recursive --remote

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 95.5%
  • JavaScript 2.9%
  • Other 1.6%