Interface PointFeature

The PointFeature interface defines a point 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 point.


Features

interface PointFeature {
    normal?: Vector3;
    point: Vector3;
    type: FT_Point;
}

Hierarchy (view full)

Properties

Properties

normal?: Vector3

The optional normal vector of point belonging to a surface.

point: Vector3

Gets the point location of the point feature.

type: FT_Point

The type of the feature.