Click or drag to resize

Vector Interface

The Vector 3D object. The object is a mathematical object and represents one of the geometry types in the CAM data.

Namespace: Woodwork.Automation.Common
Assembly: WoodworkAutomation (in WoodworkAutomation.dll) Version: 2.1.25
Syntax
public interface Vector

The Vector 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 methodAngleToDetermines the angle between this vector and the specified vector.
Public methodAsUnitVector Normalizes vector to result in a length equal to 1.0.
Public methodCopy Creates a copy of this Vector object. The result is entirely independent and can be edited without affecting the original Vector object.
Public methodCrossProductDetermines the cross product between this vector and the specified vector.
Public methodDotProductDetermines the dot product between this vector and the specified vector.
Public methodIsEqualToCompares this vector for equality with the specified vector.
Public methodIsParallelToCompares this vector is parallel with the specified vector.
Public methodIsPerpendicularToCompares this vector is perpendicular with the specified vector.
Public methodIsSameDirectionCompares this vector is the same direction with the specified vector.
Public methodNormalize Normalizes this vector to result in a length equal to 1.0.
Public methodRotationAroundZAxisRotates this vector by the specified angle around Z axis.
Public methodScaleByScales this vector by scale factor.
Public methodToReferenceCoordinateSystem Transforms this vector to the reference coordinate system.
Public methodTransformBy Transform this vector by the specified matrix.
Public methodTranslateBy Translate this vector by the specified vector.
Top
See Also