TransformationMatrix

A class for holding a translation and quaternion array. This is used for camera movement while preventing gimbal lock.

Since

200.1.0

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

W quaternion.

Link copied to clipboard

X quaternion.

Link copied to clipboard

Y quaternion.

Link copied to clipboard

Z quaternion.

Link copied to clipboard

X translation.

Link copied to clipboard

Y translation.

Link copied to clipboard

Z translation.

Functions

Link copied to clipboard
infix operator fun minus(transformation: TransformationMatrix): TransformationMatrix

Subtracts the parameter from this object and returns the result. return = (this - parameter).

Link copied to clipboard
infix operator fun plus(transformation: TransformationMatrix): TransformationMatrix

Adds this and transformation together and returns the result. return = (this + parameter)