Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Sqr(const X: TMtx): Matrix; | Result = X^2 from the source |
| 2 | function Sqr(const X: TVec): Vector; | Result = X^2 from the source |
Overload 1: function Sqr(const X: TMtx): Matrix;
Compute X^2 from the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx |
Returns: Matrix
Remarks:
Internally calls Matrix.Sqr
Overload 2: function Sqr(const X: TVec): Vector;
Compute X^2 from the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec |
Returns: Vector
Remarks:
Internally calls Vector.Sqr