FVector3 class

FVector3 class

A float vector with three components.

The FVector3 type exposes the following members:

Constructors

ConstructorDescription
__init__(self, x, y, z)Initializes a new instance of the FVector3.
__init__(self, vec)Initializes a new instance of the FVector3.
__init__(self, vec)Initializes a new instance of the FVector4.
__init__(self)Constructs a new instance of FVector3

Properties

PropertyDescription
zeroThe Zero vector.
oneThe unit scale vector with all components are all 1
xThe x component.
yThe y component.
zThe y component.

Methods

MethodDescription
normalize(self)Normalizes this instance.
cross(self, rhs)Cross product of two vectors

See Also