Interface PointFeaturePickResult

The PointFeaturePickResult interface defines a pick result of a point.

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 with no normal.


Events

interface PointFeaturePickResult {
    applicationFeatureId: number;
    normal?: Vector3;
    point: Vector3;
    type: FT_Point;
}

Hierarchy (view full)

Properties

applicationFeatureId: number

The strictly positive application feature id in case of an application feature pick. If 0, the picked feature belongs to an instance.

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.