Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Vector4.Vector4

Vector4(x: float, y: float, z: float, w: float)
Vector4(float x, float y, float z, float w);
def Vector4(x as float, y as float, z as float, w as float)

Description

Creates a new vector with given x, y, z, w components.

Vector4(x: float, y: float, z: float)
Vector4(float x, float y, float z);
def Vector4(x as float, y as float, z as float)

Description

Creates a new vector with given x, y, z components and sets w to zero.

Vector4(x: float, y: float)
Vector4(float x, float y);
def Vector4(x as float, y as float)

Description

Creates a new vector with given x, y components and sets z and w to zero.