Describes drawing elements composed of 2D curves.
This geometric element represents the portion of a drawing view described by parametric 2D curves.
The underlying set of parametric curves is not exposed directly. Instead, the available geometry is represented by triangulation, which stores a polygonal approximation of the curves.
new CurveSet():
CurveSet
CurveSet
triangulation:
Polyline2dSet|null=null
Polygonal representation of the curve set.
The value is null when the polygonal representation is unavailable.
get id():
bigint
Returns the unique identifier of the object.
bigint
get uuid():
`${string}-${string}-${string}-${string}-${string}`|null
UUID of the drawing element.
The value is null if no UUID is assigned.
`${string}-${string}-${string}-${string}-${string}` | null
set uuid(
uuid):void
Sets the UUID of the drawing element.
`${string}-${string}-${string}-${string}-${string}` | null
UUID to assign to the drawing element.
void
accept(
visitor):void
Accepts an element visitor.
Element visitor to accept.
void