format
typescript
Vector4.normalizedclass: Vector4
description
(Read Only) Returns the normalized value of the vector.
parameter
| param_name | type | description |
|---|
reture
| type | description |
|---|---|
Vector4 | The normalized value of the vector. |
code example
typescript
let v4 = new Vector4(-1, -2, -3, -4);
let normalized_v4 = v4.normalized;