SVGPathOptimizationOptions class

SVGPathOptimizationOptions class

SVGPathOptimizationOptions is a class for storing options for optimizing segments of SVG path elements.

The SVGPathOptimizationOptions type exposes the following members:

Constructors

ConstructorDescription
initInitializes a new instance of the SVGPathOptimizationOptions class.

Properties

PropertyDescription
remove_space_after_flagsGets or sets the option to remove extra space after ‘arcto’ command flags. It is ‘false’ by default.
apply_transformsGets or sets the option to apply transformations to the Path segments. It is ‘false’ by default.
float_precisionGets or sets the option to round a float-precision floating-point value to a specified number of fractional digits. It is ‘3’ by default.
arc_building_thresholdGets or sets the parameter value used as the threshold error for replacing Bezier segments with arc segments. It is ‘2.5’ by default.
arc_building_toleranceGets or sets the parameter value used as the percentage of radius for replacing Bezier segments with arc segments. It is ‘0.5’ by default.

See Also