Esempio 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;
 }
Esempio n. 2
0
 public DxfToSvgConverterOptions(ConverterDxfRect dxfSource, ConverterSvgRect svgDestination, string svgId = null)
 {
     DxfSource      = dxfSource;
     SvgDestination = svgDestination;
     SvgId          = svgId;
 }
Esempio n. 3
0
 public DxfToSvgConverterOptions(ConverterDxfRect dxfRect, ConverterSvgRect svgRect, string svgId = null)
 {
     DxfRect = dxfRect;
     SvgRect = svgRect;
     SvgId   = svgId;
 }