Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function ArcTan2(const Y: TMtx; const X: TMtx): Matrix; | Result = the ArcTan2 function from X and Y and return the result |
| 2 | function ArcTan2(const Y: TVec; const X: TVec): Vector; | Result = the ArcTan2 function from X and Y and return the result |
Overload 1: function ArcTan2(const Y: TMtx; const X: TMtx): Matrix;
Compute the ArcTan2 function from X and Y and return the result.
Returns: Matrix
Remarks:
Internally calls Matrix.ArcTan2
Overload 2: function ArcTan2(const Y: TVec; const X: TVec): Vector;
Compute the ArcTan2 function from X and Y and return the result.
Returns: Vector
Remarks:
Internally calls Vector.ArcTan2