minusAssign

operator fun Matrix3.minusAssign(matrix3: Matrix3)

Parameters

matrix3

values from this matrix will be subtracted from this matrix.


operator fun Matrix4.minusAssign(matrix4: Matrix4)

Parameters

matrix4

values from this matrix will be subtracted from this matrix.


operator fun Vector2.minusAssign(vector2: Vector2)

Parameters

vector2

values from vector will be subtracted from vector.


operator fun Vector2.minusAssign(subtrahend: Float)
operator fun Vector2.minusAssign(subtrahend: Int)

Parameters

subtrahend

this value will be subtracted from both x and y of the vector.


operator fun Vector3.minusAssign(vector3: Vector3)

Parameters

vector3

values from this vector will be subtracted from this vector.


operator fun Vector3.minusAssign(vector2: Vector2)

Modifies x and y components of this vector.

Parameters

vector2

values from this vector will be subtracted from this vector.


operator fun Vector3.minusAssign(subtrahend: Float)
operator fun Vector3.minusAssign(subtrahend: Int)

Parameters

subtrahend

this value will be subtracted from x, y and z of this vector.


operator fun Vector4.minusAssign(vector4: Vector4)

Parameters

vector4

values from this vector will be subtracted from this vector.


operator fun Vector4.minusAssign(vector2: Vector2)

Modifies X and Y components of this vector.

Parameters

vector2

values from this vector will be subtracted from this vector.


operator fun Vector4.minusAssign(vector3: Vector3)

Modifies X, Y, and Z components of this vector.

Parameters

vector3

values from this vector will be subtracted from this vector.


operator fun Vector4.minusAssign(subtrahend: Float)
operator fun Vector4.minusAssign(subtrahend: Int)

Parameters

subtrahend

this value will be subtracted from X, Y, Z and W components of this vector.