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.2.1+e3fd5885edfa7211ba46258e0eed5ac221a54381
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