Interface ExportSVGLayerDefinition

The ExportSVGEdgeDefinition interface defines a layer in an SVG export.


AsyncJobs

interface ExportSVGLayerDefinition {
    color?: Vector4;
    edgeTypes: EdgeTypes[];
    name?: string;
    widthInMillimeters: number;
}

Properties

color?: Vector4

The line color in rgb in the range [0,1]. Specifying no color means the line will not be drawn.

edgeTypes: EdgeTypes[]

The types of lines to add in the given layer.

name?: string

The optional name of the layer.

widthInMillimeters: number

The line thickness in millimeters. A lower than 0 value means the line will not be drawn.