Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function ArcTan2(Y: TOpenCLMatrix; X: TOpenCLMatrix): clMatrix; | Result = the ArcTan2 function from X and Y and return the result |
| 2 | function ArcTan2(Y: TOpenCLValue; X: TOpenCLValue): clValue; | Result = the ArcTan2 function from X and Y and return the result |
| 3 | function ArcTan2(Y: TOpenCLVector; X: TOpenCLVector): clVector; | Result = the ArcTan2 function from X and Y and return the result |
Overload 1: function ArcTan2(Y: TOpenCLMatrix; X: TOpenCLMatrix): clMatrix;
Compute the ArcTan2 function from X and Y and return the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Y | TOpenCLMatrix | source TOpenCLMatrix |
| 2 | X | TOpenCLMatrix | source TOpenCLMatrix |
Returns: clMatrix
Remarks:
Internally calls clMatrix.ArcTan2
Overload 2: function ArcTan2(Y: TOpenCLValue; X: TOpenCLValue): clValue;
Compute the ArcTan2 function from X and Y and return the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Y | TOpenCLValue | source TOpenCLValue |
| 2 | X | TOpenCLValue | source TOpenCLValue |
Returns: clValue
Remarks:
Internally calls clValue.ArcTan2
Overload 3: function ArcTan2(Y: TOpenCLVector; X: TOpenCLVector): clVector;
Compute the ArcTan2 function from X and Y and return the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Y | TOpenCLVector | source TOpenCLVector |
| 2 | X | TOpenCLVector | source TOpenCLVector |
Returns: clVector
Remarks:
Internally calls clVector.ArcTan2