Vector Methods |
The Vector type exposes the following members.
| Name | Description | |
|---|---|---|
| AngleTo | Determines the angle between this vector and the specified vector. | |
| AsUnitVector | Normalizes vector to result in a length equal to 1.0. | |
| Copy | Creates a copy of this Vector object. The result is entirely independent and can be edited without affecting the original Vector object. | |
| CrossProduct | Determines the cross product between this vector and the specified vector. | |
| DotProduct | Determines the dot product between this vector and the specified vector. | |
| IsEqualTo | Compares this vector for equality with the specified vector. | |
| IsParallelTo | Compares this vector is parallel with the specified vector. | |
| IsPerpendicularTo | Compares this vector is perpendicular with the specified vector. | |
| IsSameDirection | Compares this vector is the same direction with the specified vector. | |
| Normalize | Normalizes this vector to result in a length equal to 1.0. | |
| RotationAroundZAxis | Rotates this vector by the specified angle around Z axis. | |
| ScaleBy | Scales this vector by scale factor. | |
| ToReferenceCoordinateSystem | Transforms this vector to the reference coordinate system. | |
| TransformBy | Transform this vector by the specified matrix. | |
| TranslateBy | Translate this vector by the specified vector. |