Click or drag to resize

Point Interface

Represents a three-dimensional point in the woodwork automation system. A point defines a specific location in 3D space with X, Y, and Z coordinates. Points serve as fundamental positional elements used throughout the system for defining tool positions, workpiece locations, geometric boundaries, and spatial reference frames in manufacturing operations.

Namespace: Woodwork.Automation.Common
Assembly: WoodworkAutomation (in WoodworkAutomation.dll) Version: 10.1.0+426df26b1ad7b7c97e1fbd6e0980a0fe847fc820
Syntax
public interface Point

The Point type exposes the following members.

Properties
 NameDescription
Public propertyX Gets and sets the X coordinate value.
Public propertyY Gets and sets the Y coordinate value.
Public propertyZ Gets and sets the Z coordinate value.
Top
Methods
 NameDescription
Public methodCopy Creates an independent copy of this point. The returned point is entirely independent and can be edited without affecting this instance.
Public methodDistanceTo Calculates the distance between this point and the specified point.
Public methodIsEqualTo Compares this point for equality with the specified point and tolerance.
Public methodToReferenceCoordinateSystem Transforms this point to the reference coordinate system.
Public methodTransformBy Transforms this point by the specified transformation matrix.
Public methodTranslateBy Translates this point by the specified vector.
Top
See Also