Tvector4_single
[Properties (by Name)][Methods (by Name)][Events (by Name)]
Single precision vector of four scalars
Declaration
Source position: matrix.pp line 116
Type
Tvector4_single = object
data : Tvector4_single_data;
constructor init_zero;
constructor init_one;
constructor init(a: single; b: single; c: single; d: single);
function &length : single;
function squared_length : single;
end
;
Description
The Tvector4_single object provides a vector of four single precision scalars.
Members
Member | Type | Visibility | Description |
---|---|---|---|
data | Field | default | Internal data of Tvector4.single |
init | Method | default | Initializes the vector, setting its elements to the values passed to the constructor. |
init_one | Method | default | Initializes the vector and sets its elements to one |
init_zero | Method | default | Initializes the vector and sets its elements to zero |
length | Method | default | Calculates the length of the vector. |
squared_length | Method | default | Calculates the squared length of the vector. |
Inheritance
Class | Description |
---|---|
Tvector4_single | Single precision vector of four scalars |