Interface LineFeature

The LineFeature interface defines an line feature.

The PickingFeatureAttachmentItem.feature may be an arc of circle feature, a point feature, a line feature or an OOBB feature.

In this case, the feature is a line with two points.


Features

interface LineFeature {
    pointA: Vector3;
    pointB: Vector3;
    type: FT_Line;
}

Hierarchy (view full)

Properties

Properties

pointA: Vector3

The first point of the line feature.

pointB: Vector3

The second point of the line feature.

type: FT_Line

The type of the feature.