Interface IVector3D
Interface that defines common properties for data structures that describe coordinates, vectors, magnitudes, and sizes in a three-dimensional space.
Inherited Members
Namespace: TheXDS.MCART.Types.Base
Assembly: MCART.dll
Syntax
public interface IVector3D : IVector, IEquatable<IVector>, IEquatable<Vector2>, IEquatable<Vector3>
Properties
| Edit this page View SourceZ
Gets the component of the Z axis represented by this IVector3D.
Declaration
double Z { get; }
Property Value
Type | Description |
---|---|
double |
Methods
| Edit this page View SourceToVector3()
Declaration
Vector3 ToVector3()
Returns
Type | Description |
---|---|
Vector3 | A new Vector3 instance with the same X, Y and Z values as this IVector. |