Ejemplo n.º 1
0
 public DxfToSvgConverterOptions(ConverterDxfRect dxfSource, ConverterSvgRect svgDestination, string svgId = null,
                                 IEnumerable <string> layers = null, AttributeGeneratorFunc attributeGenerator = null)
 {
     DxfSource           = dxfSource;
     SvgDestination      = svgDestination;
     SvgId               = svgId;
     Layers              = layers;
     AttributesGenerator = attributeGenerator;
 }
Ejemplo n.º 2
0
 public DxfToSvgConverterOptions(ConverterDxfRect dxfSource, ConverterSvgRect svgDestination, string svgId = null)
 {
     DxfSource      = dxfSource;
     SvgDestination = svgDestination;
     SvgId          = svgId;
 }
Ejemplo n.º 3
0
 public DxfToSvgConverterOptions(ConverterDxfRect dxfRect, ConverterSvgRect svgRect, string svgId = null)
 {
     DxfRect = dxfRect;
     SvgRect = svgRect;
     SvgId   = svgId;
 }