| Vector4FNormalized Property |
Returns the normalized vector.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public Vector4F Normalized { get; }
Public ReadOnly Property Normalized As Vector4F
Get
public:
property Vector4F Normalized {
Vector4F get ();
}
member Normalized : Vector4F with get
Property Value
Type:
Vector4FThe normalized vector.
Exceptions Exception | Condition |
---|
DivideByZeroException |
The length of the vector is zero. The quaternion cannot be normalized.
|
Remarks
The property does not change this instance. To normalize this instance you need to call
Normalize.
See Also