Warning
Nightly releases are generated automatically from the latest source code and are intended for experimental purposes only. These builds may contain incomplete or untested features, bugs, or security vulnerabilities, and as such, are not for production use. Users should be aware that nightly releases may cause unexpected behavior, data loss, or system instability. Use of these releases is at the user's own risk, and it is advised to have adequate backups before testing. The software is provided as is with no guarantees or support.
BetweenMeasurementResult¶
Type Alias BetweenMeasurementResult
angle?: number;
distance: number;
intersection?: MeasurementTarget[];
points: [[number, number, number], [number, number, number]];
}
Type declaration
Optional
angle?: numberThe angle between the two measurement targets if applicable.
distance: number
The distance between the two measurement targets.
- If the two measurement targets intersect the distance is zero.
Optional
intersection?: MeasurementTarget[]The intersection of the two measurement targets, if existent. Note that the intersection is not available for all MeasurementTargetClass combinations. For details, see the documentation of measureBetween.
points: [[number, number, number], [number, number, number]]
The two 3D points used to calculate the distance.
- If the two measurement targets intersect the two points are equal.
- If the two measurement targets intersect and both are from the class MeasurementTargetClass.PLANE the two points are used to describe the intersection line.
The result of a distance and angle measurement between two MeasurementTargets.