unreal.Plane

class unreal.Plane(x: float = 0.0, y: float = 0.0, z: float = 0.0, w: float = 0.0)

Bases: Vector

A plane definition in 3D space. note: The full C++ class is located here: EngineSourceRuntimeCorePublicMathPlane.h

C++ Source:

  • Module: CoreUObject

  • File: NoExportTypes.h

Editor Properties: (see get_editor_property/set_editor_property)

  • w (double): [Read-Write]

  • x (double): [Read-Write]

  • y (double): [Read-Write] Alias for float/double depending on LWC status. Note: Will be refactored to double before UE5 ships.

  • z (double): [Read-Write]

BACKWARD: Vector

3D vector Unreal backward direction constant (-1,0,0)

Type:

(Vector)

DOWN: Vector

3D vector Unreal down direction constant (0,0,-1)

Type:

(Vector)

FORWARD: Vector

3D vector Unreal forward direction constant (1,0,0)

Type:

(Vector)

LEFT: Vector

3D vector Unreal left direction constant (0,-1,0)

Type:

(Vector)

ONE: Vector

3D vector one constant (1,1,1)

Type:

(Vector)

RIGHT: Vector

3D vector Unreal right direction constant (0,1,0)

Type:

(Vector)

UP: Vector

3D vector Unreal up direction constant (0,0,1)

Type:

(Vector)

ZERO: Vector

3D vector zero constant (0,0,0)

Type:

(Vector)

property w: float

[Read-Write]

Type:

(double)