Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function RadToDeg: TMtxVec; | Convert radians to degrees (in-place). |
| └ indexed: function RadToDeg(Index: Integer; Len: Integer): TMtxVec; | ||
| 2 | function RadToDeg(const X: TMtxVec): TMtxVec; | Convert X elements from radians to degrees and store in self. |
| └ indexed: function RadToDeg(const X: TMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TMtxVec; |
Overload 1: function RadToDeg: TMtxVec;
Convert radians to degrees (in-place).
Result: stored in self (calling object), returns self for chaining
Indexed: function RadToDeg(Index: Integer; Len: Integer): TMtxVec;
Convert radians to degrees 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 RadToDeg(const X: TMtxVec): TMtxVec;
Convert X elements from radians to degrees and store in self.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec |
Result: stored in self (calling object), returns self for chaining
Indexed: function RadToDeg(const X: TMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Convert X elements [XIndex..XIndex+Len-1] from radians to degrees 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