FVector3 constructor

__init__(self)

Constructs a new instance of FVector3


def __init__(self):
    ...

__init__(self, vec)

Initializes a new instance of the FVector3.


def __init__(self, vec):
    ...
ParameterTypeDescription
vecVector3Vector3 in double type

__init__(self, vec)

Initializes a new instance of the FVector4.


def __init__(self, vec):
    ...
ParameterTypeDescription
vecVector4Vector4 in double type

__init__(self, x, y, z)

Initializes a new instance of the FVector3.


def __init__(self, x, y, z):
    ...
ParameterTypeDescription
xfloatX component of the vector
yfloatY component of the vector
zfloatZ component of the vector

See Also