The Vector 2D Normalize component takes in the x and y components of a single 2D vector and provides the output of normalized components. The normalization process can be described as dividing each input vector component by the vectors magnitude. Each component should be equal to or less than one following the process.
Inputs: 3
Input Name:
Description:
Enabled
Boolean input of 1 or 0, ON or OFF, enabling or disabling computation on the provided inputs. Default is ON.
x
The input value of type double that is the x component of the 2D vector.
y
The input value of type double that is the y component of the 2D vector.
Outputs: 2
Output Name:
Description:
x'
The output value of type double that is the normalized x component of the 2D vector.
y'
The output value of type double that is the normalized y component of the 2D vector.