Tmatrix3_single
[Properties (by Name)][Methods (by Name)][Events (by Name)]
Single precision matrix of three scalars
Declaration
Source position: matrix.pp line 185
Type
Tmatrix3_single = object
data : Tmatrix3_single_data;
constructor init_zero;
constructor init_identity;
constructor init(aa: single; ab: single; ac: single; ba: single;
bb: single; bc: single; ca: single; cb: single;
cc: single);
function get_column(c: Byte) : Tvector3_single;
function get_row(r: Byte) : Tvector3_single;
procedure set_column(c: Byte; const v: Tvector3_single);
procedure set_row(r: Byte; const v: Tvector3_single);
function determinant : single;
function inverse(Adeterminant: single) : Tmatrix3_single;
function transpose : Tmatrix3_single;
end
;
Description
The Tmatrix3_single object provides a matrix of 3*3 single precision scalars.
Members
Member | Type | Visibility | Description |
---|---|---|---|
data | Field | default | Internal data of Tmatrix3.single |
determinant | Method | default | Calculates the determinant of the matrix. |
get_column | Method | default | Returns the c-th column of the matrix as vector. |
get_row | Method | default | Returns the r-th row of the matrix as vector. |
init | Method | default | Initializes the matrix, setting its elements to the values passed to the constructor. |
init_identity | Method | default | Initializes the matrix and sets its elements to the identity matrix. |
init_zero | Method | default | Initializes the matrix and sets its elements to zero |
inverse | Method | default | Calculates the inverse of the matrix. |
set_column | Method | default | Sets c-th column of the matrix with a vector. |
set_row | Method | default | Sets r-th row of the matrix with a vector. |
transpose | Method | default | Returns the transposition of the matrix. |
Inheritance
Class | Description |
---|---|
Tmatrix3_single | Single precision matrix of three scalars |