NormalMeasurementResult

Interface NormalMeasurementResult

The result of a measurement of the normal of a face at a specific point.

interface NormalMeasurementResult {
    normal: [number, number, number];
    point: [number, number, number];
}

Properties

Properties

normal: [number, number, number]

The calculated normal vector.

point: [number, number, number]

The point on the face used for the normal calculation.