Hide menu
Loading...
Searching...
No Matches
Curve2dOutline

Defines an outline backed by 2D curves.

The underlying outline of parametric curves is not exposed directly. Instead, the available geometry is represented by triangulation, which stores a polygonal approximation of the curves.

Extends

Constructors

Constructor

‍new Curve2dOutline(): Curve2dOutline

Returns

Curve2dOutline

Inherited from

Outline.constructor

Properties

triangulation

‍triangulation: Polyline2dSet | null = null

Polygonal representation of the 2d curve outline.

The value is null when the polygonal representation is unavailable.

Accessors

id

Get Signature

‍get id(): bigint

Returns the unique identifier of the object.

Returns

bigint

Inherited from

Outline.id

Methods

accept()

‍accept(visitor): void

Accepts an outline visitor.

Parameters

visitor

OutlineVisitor

Visitor to accept.

Returns

void

Overrides

Outline.accept