Skip to content

format

typescript
Vector4.normalized

class: Vector4

description

(Read Only) Returns the normalized value of the vector.

parameter

param_nametypedescription

reture

typedescription
Vector4The normalized value of the vector.

code example

typescript
let v4 = new Vector4(-1, -2, -3, -4);
let normalized_v4 = v4.normalized;