Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Sub(const X: TMtxVecInt; const Y: TMtxVecInt; const Z: TMtxVecInt): TMtxVecInt; | self = X - Y - Z |
| └ indexed: function Sub(const X: TMtxVecInt; XIndex: Integer; const Y: TMtxVecInt; YIndex: Integer; const Z: TMtxVecInt; zIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt; | ||
| 2 | function Sub(const X: TMtxVecInt; const Y: TMtxVecInt; const Z: Integer): TMtxVecInt; | self = X - Y - zScalar |
| └ indexed: function Sub(const X: TMtxVecInt; XIndex: Integer; const Y: TMtxVecInt; YIndex: Integer; const Z: Integer; Index: Integer; Len: Integer): TMtxVecInt; |
Overload 1: function Sub(const X: TMtxVecInt; const Y: TMtxVecInt; const Z: TMtxVecInt): TMtxVecInt;
Compute X - Y - Z
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | |
| 2 | Y | TMtxVecInt | |
| 3 | Z | TMtxVecInt |
Result: stored in self (calling object), returns self for chaining
Indexed: function Sub(const X: TMtxVecInt; XIndex: Integer; const Y: TMtxVecInt; YIndex: Integer; const Z: TMtxVecInt; zIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt;
Compute X - Y - Z on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | |
| 2 | XIndex | Integer | X start index |
| 3 | Y | TMtxVecInt | |
| 4 | YIndex | Integer | Y start index |
| 5 | Z | TMtxVecInt | |
| 6 | zIndex | Integer | |
| 7 | Index | Integer | start index |
| 8 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Overload 2: function Sub(const X: TMtxVecInt; const Y: TMtxVecInt; const Z: Integer): TMtxVecInt;
Compute X - Y - zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | |
| 2 | Y | TMtxVecInt | |
| 3 | Z | Integer |
Result: stored in self (calling object), returns self for chaining
Indexed: function Sub(const X: TMtxVecInt; XIndex: Integer; const Y: TMtxVecInt; YIndex: Integer; const Z: Integer; Index: Integer; Len: Integer): TMtxVecInt;
Compute X - Y - zScalar on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | |
| 2 | XIndex | Integer | X start index |
| 3 | Y | TMtxVecInt | |
| 4 | YIndex | Integer | Y start index |
| 5 | Z | Integer | |
| 6 | Index | Integer | start index |
| 7 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining