Matrix4Double

data class Matrix4Double(val matrixData: DoubleArray = DoubleArray(16))

Represents a 4x4 matrix of Doubles, stored in column-major order.

Constructors

Link copied to clipboard
constructor(matrixData: DoubleArray = DoubleArray(16))

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
operator fun get(rowIndex: Int, colIndex: Int): Double

Retrieves the element in row = rowIndex, col = colIndex

Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
operator fun times(vector: MapVector4): MapVector4