Vector3F constructor

init

Constructs a new instance of Vector3F

def __init__(self):
    ...

init

Initializes a new instance of the Vector3F struct.

def __init__(self, other):
    ...
ParameterTypeDescription
otherVector3FThe other vector.

init

Initializes a new instance of the Vector3F struct.

def __init__(self, val):
    ...
ParameterTypeDescription
valfloatX,Y,Z coordinate.

init

Initializes a new instance of the Vector3F struct.

def __init__(self, x, y, z):
    ...
ParameterTypeDescription
xfloatX coordinate.
yfloatY coordinate.
zfloatZ coordinate.

See Also