Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec SubScaled(TMtxVec X, TCplx xScale, TMtxVec Y, TCplx yScale, TMtxVec Z, TCplx zScale) | self = X*xScale - Y*yScale - Z*zScale |
| └ indexed: TMtxVec SubScaled(TMtxVec X, Int32 XIndex, TCplx xScale, TMtxVec Y, Int32 YIndex, TCplx yScale, TMtxVec Z, Int32 zIndex, TCplx zScale, Int32 Index, Int32 Len) | ||
| 2 | TMtxVec SubScaled(TMtxVec X, TMtxVec Y, TCplx yScale, TMtxVec Z, TCplx zScale) | self = X - Y*yScale - Z*zScale |
| └ indexed: TMtxVec SubScaled(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, TCplx yScale, TMtxVec Z, Int32 zIndex, TCplx zScale, Int32 Index, Int32 Len) | ||
| 3 | TMtxVec SubScaled(TMtxVec X, TMtxVec Y, TMtxVec Z, TCplx zScale) | self = X - Y - Z*zScale |
| └ indexed: TMtxVec SubScaled(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, TMtxVec Z, Int32 zIndex, TCplx zScale, Int32 Index, Int32 Len) | ||
| 4 | TMtxVec SubScaled(TMtxVec X, TMtxVec Y, TMtxVec Z, Double zScale) | self = X - Y - Z*zScale |
| └ indexed: TMtxVec SubScaled(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, TMtxVec Z, Int32 zIndex, Double zScale, Int32 Index, Int32 Len) | ||
| 5 | TMtxVec SubScaled(TMtxVec X, TMtxVec Y, Double yScale, TMtxVec Z, Double zScale) | self = X - Y*yScale - Z*zScale |
| └ indexed: TMtxVec SubScaled(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, Double yScale, TMtxVec Z, Int32 zIndex, Double zScale, Int32 Index, Int32 Len) | ||
| 6 | TMtxVec SubScaled(TMtxVec X, Double xScale, TMtxVec Y, Double yScale, TMtxVec Z, Double zScale) | self = X*xScale - Y*yScale - Z*zScale |
| └ indexed: TMtxVec SubScaled(TMtxVec X, Int32 XIndex, Double xScale, TMtxVec Y, Int32 YIndex, Double yScale, TMtxVec Z, Int32 zIndex, Double zScale, Int32 Index, Int32 Len) |
Overload 1: TMtxVec SubScaled(TMtxVec X, TCplx xScale, TMtxVec Y, TCplx yScale, TMtxVec Z, TCplx zScale)
Compute X*xScale - Y*yScale - Z*zScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | xScale | TCplx | scalar |
| 3 | Y | TMtxVec | source TVec or TMtx |
| 4 | yScale | TCplx | scalar |
| 5 | Z | TMtxVec | source TVec or TMtx |
| 6 | zScale | TCplx | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec SubScaled(TMtxVec X, Int32 XIndex, TCplx xScale, TMtxVec Y, Int32 YIndex, TCplx yScale, TMtxVec Z, Int32 zIndex, TCplx zScale, Int32 Index, Int32 Len)
Compute X*xScale - Y*yScale - Z*zScale on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | XIndex | Int32 | X start index |
| 3 | xScale | TCplx | scalar |
| 4 | Y | TMtxVec | source TVec or TMtx |
| 5 | YIndex | Int32 | Y start index |
| 6 | yScale | TCplx | scalar |
| 7 | Z | TMtxVec | source TVec or TMtx |
| 8 | zIndex | Int32 | |
| 9 | zScale | TCplx | scalar |
| 10 | Index | Int32 | start index |
| 11 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 2: TMtxVec SubScaled(TMtxVec X, TMtxVec Y, TCplx yScale, TMtxVec Z, TCplx zScale)
Compute X - Y*yScale - Z*zScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | Y | TMtxVec | source TVec or TMtx |
| 3 | yScale | TCplx | scalar |
| 4 | Z | TMtxVec | source TVec or TMtx |
| 5 | zScale | TCplx | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec SubScaled(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, TCplx yScale, TMtxVec Z, Int32 zIndex, TCplx zScale, Int32 Index, Int32 Len)
Compute X - Y*yScale - Z*zScale on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | XIndex | Int32 | X start index |
| 3 | Y | TMtxVec | source TVec or TMtx |
| 4 | YIndex | Int32 | Y start index |
| 5 | yScale | TCplx | scalar |
| 6 | Z | TMtxVec | source TVec or TMtx |
| 7 | zIndex | Int32 | |
| 8 | zScale | TCplx | scalar |
| 9 | Index | Int32 | start index |
| 10 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 3: TMtxVec SubScaled(TMtxVec X, TMtxVec Y, TMtxVec Z, TCplx zScale)
Compute X - Y - Z*zScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | Y | TMtxVec | source TVec or TMtx |
| 3 | Z | TMtxVec | source TVec or TMtx |
| 4 | zScale | TCplx | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec SubScaled(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, TMtxVec Z, Int32 zIndex, TCplx zScale, Int32 Index, Int32 Len)
Compute X - Y - Z*zScale on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | XIndex | Int32 | X start index |
| 3 | Y | TMtxVec | source TVec or TMtx |
| 4 | YIndex | Int32 | Y start index |
| 5 | Z | TMtxVec | source TVec or TMtx |
| 6 | zIndex | Int32 | |
| 7 | zScale | TCplx | scalar |
| 8 | Index | Int32 | start index |
| 9 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 4: TMtxVec SubScaled(TMtxVec X, TMtxVec Y, TMtxVec Z, Double zScale)
Compute X - Y - Z*zScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | Y | TMtxVec | source TVec or TMtx |
| 3 | Z | TMtxVec | source TVec or TMtx |
| 4 | zScale | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec SubScaled(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, TMtxVec Z, Int32 zIndex, Double zScale, Int32 Index, Int32 Len)
Compute X - Y - Z*zScale on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | XIndex | Int32 | X start index |
| 3 | Y | TMtxVec | source TVec or TMtx |
| 4 | YIndex | Int32 | Y start index |
| 5 | Z | TMtxVec | source TVec or TMtx |
| 6 | zIndex | Int32 | |
| 7 | zScale | Double | scalar |
| 8 | Index | Int32 | start index |
| 9 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 5: TMtxVec SubScaled(TMtxVec X, TMtxVec Y, Double yScale, TMtxVec Z, Double zScale)
Compute X - Y*yScale - Z*zScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | Y | TMtxVec | source TVec or TMtx |
| 3 | yScale | Double | scalar |
| 4 | Z | TMtxVec | source TVec or TMtx |
| 5 | zScale | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec SubScaled(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, Double yScale, TMtxVec Z, Int32 zIndex, Double zScale, Int32 Index, Int32 Len)
Compute X - Y*yScale - Z*zScale on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | XIndex | Int32 | X start index |
| 3 | Y | TMtxVec | source TVec or TMtx |
| 4 | YIndex | Int32 | Y start index |
| 5 | yScale | Double | scalar |
| 6 | Z | TMtxVec | source TVec or TMtx |
| 7 | zIndex | Int32 | |
| 8 | zScale | Double | scalar |
| 9 | Index | Int32 | start index |
| 10 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 6: TMtxVec SubScaled(TMtxVec X, Double xScale, TMtxVec Y, Double yScale, TMtxVec Z, Double zScale)
Compute X*xScale - Y*yScale - Z*zScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | xScale | Double | scalar |
| 3 | Y | TMtxVec | source TVec or TMtx |
| 4 | yScale | Double | scalar |
| 5 | Z | TMtxVec | source TVec or TMtx |
| 6 | zScale | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec SubScaled(TMtxVec X, Int32 XIndex, Double xScale, TMtxVec Y, Int32 YIndex, Double yScale, TMtxVec Z, Int32 zIndex, Double zScale, Int32 Index, Int32 Len)
Compute X*xScale - Y*yScale - Z*zScale on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | XIndex | Int32 | X start index |
| 3 | xScale | Double | scalar |
| 4 | Y | TMtxVec | source TVec or TMtx |
| 5 | YIndex | Int32 | Y start index |
| 6 | yScale | Double | scalar |
| 7 | Z | TMtxVec | source TVec or TMtx |
| 8 | zIndex | Int32 | |
| 9 | zScale | Double | scalar |
| 10 | Index | Int32 | start index |
| 11 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining