Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Matrix Rem(TMtx X, TMtx Y) | Return reminder after division of X by Y. |
| 2 | Matrix Rem(TMtx X, Double Y) | Return reminder after division of X by Y. |
| 3 | Vector Rem(TVec X, TVec Y) | Return reminder after division of X by Y. |
| 4 | Vector Rem(TVec X, Double Y) | Return reminder after division of X by Y. |
Overload 1: Matrix Rem(TMtx X, TMtx Y)
Return reminder after division of X by Y.
Returns: Matrix
Remarks:
Internally calls Dew.Math.Matrix.Rem
Overload 2: Matrix Rem(TMtx X, Double Y)
Return reminder after division of X by Y.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx | source TMtx |
| 2 | Y | Double | scalar |
Returns: Matrix
Remarks:
Internally calls Dew.Math.Matrix.Rem
Overload 3: Vector Rem(TVec X, TVec Y)
Return reminder after division of X by Y.
Returns: Vector
Remarks:
Internally calls Dew.Math.Vector.Rem
Overload 4: Vector Rem(TVec X, Double Y)
Return reminder after division of X by Y.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec | source TVec |
| 2 | Y | Double | scalar |
Returns: Vector
Remarks:
Internally calls Dew.Math.Matrix.Rem