Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec DegToRad | Convert degrees to radians (in-place). |
| └ indexed: TMtxVec DegToRad(Int32 Index, Int32 Len) | ||
| 2 | TMtxVec DegToRad(TMtxVec X) | Convert X elements from degrees to radians and store in self. |
| └ indexed: TMtxVec DegToRad(TMtxVec X, Int32 XIndex, Int32 Index, Int32 Len) |
Overload 1: TMtxVec DegToRad
Convert degrees to radians (in-place).
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec DegToRad(Int32 Index, Int32 Len)
Convert degrees to radians on elements [Index..Index+Len-1] in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Int32 | start index |
| 2 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 2: TMtxVec DegToRad(TMtxVec X)
Convert X elements from degrees to radians and store in self.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec DegToRad(TMtxVec X, Int32 XIndex, Int32 Index, Int32 Len)
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 | source TVec or TMtx |
| 2 | XIndex | Int32 | X start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining