Vector3.Vector3
Vector3(x: float, y: float, z: float)
Vector3(float x, float y, float z);
def Vector3(x as float, y as float, z as float)
Description

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

Vector3(x: float, y: float)
Vector3(float x, float y);
def Vector3(x as float, y as float)
Description

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