Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function DegToRad: TMtxVec; | Convert degrees to radians (in-place). |
| └ indexed: function DegToRad(Index: Integer; Len: Integer): TMtxVec; | ||
| 2 | function DegToRad(const X: TMtxVec): TMtxVec; | Convert X elements from degrees to radians and store in self. |
| └ indexed: function DegToRad(const X: TMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TMtxVec; |
Overload 1: function DegToRad: TMtxVec;
Convert degrees to radians (in-place).
Result: stored in self (calling object), returns self for chaining
Indexed: function DegToRad(Index: Integer; Len: Integer): TMtxVec;
Convert degrees to radians on elements [Index..Index+Len-1] in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Integer | start index |
| 2 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Overload 2: function DegToRad(const X: TMtxVec): TMtxVec;
Convert X elements from degrees to radians and store in self.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec |
Result: stored in self (calling object), returns self for chaining
Indexed: function DegToRad(const X: TMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Convert X elements [XIndex..XIndex+Len-1] from degrees to radians and store in self elements [Index..Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | |
| 2 | XIndex | Integer | X start index |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining