Click or drag to resize

VectorLogicalNot Operator

[This is preliminary documentation and is subject to change.]

Create a unit vector from the provided vector. (= vector normalization)

Namespace:  Infrastructure.Geometry
Assembly:  Infrastructure.Geometry (in Infrastructure.Geometry.dll) Version: 1.13.0+Branch.master.Sha.d583fc64569355d188a9c0818d257b6d0d3e1339
Syntax
C#
public static Vector operator !(
	Vector vectorToNormalize
)

Parameters

vectorToNormalize
Type: Infrastructure.GeometryVector
The vector that needs to be normalized

Return Value

Type: Vector
A new vector which is the unit vector of the provided vector. This vector will have a magnitude / size of 1 but the same direction as the provided vector.
See Also