Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *DegToRad() const; | Convert degrees to radians (in-place). |
| 2 | TMtxVec *DegToRad(int Index, int Len) const; | Convert degrees to radians on elements [Index..Index+Len-1] in-place. |
| 3 | TMtxVec *DegToRad(TMtxVec *X) const; | Convert X elements from degrees to radians and store in self. |
| 4 | TMtxVec *DegToRad(TMtxVec *X, int XIndex, int Index, int Len) const; | Convert X elements [XIndex..XIndex+Len-1] from degrees to radians and store in self elements [Index..Index+Len-1]. |
Overload 1: TMtxVec *DegToRad() const;
Convert degrees to radians (in-place).
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TMtxVec *DegToRad(int Index, int Len) const;
Convert degrees to radians on elements [Index..Index+Len-1] in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 3: TMtxVec *DegToRad(TMtxVec *X) const;
Convert X elements from degrees to radians and store in self.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec * |
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 4: TMtxVec *DegToRad(TMtxVec *X, int XIndex, int Index, int Len) const;
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 | int | |
| 3 | Index | int | |
| 4 | Len | int |
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler