Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec AddScaledC(TMtxVec X, TCplx xScale, TMtxVec Y, TCplx yScale, TCplx Z) | self = X*xScale + Y*yScale + zScalar |
| └ indexed: TMtxVec AddScaledC(TMtxVec X, Int32 XIndex, TCplx xScale, TMtxVec Y, Int32 YIndex, TCplx yScale, TCplx Z, Int32 Index, Int32 Len) | ||
| 2 | TMtxVec AddScaledC(TMtxVec X, TMtxVec Y, TCplx yScale, TCplx Z) | self = X + Y*yScale + zScalar |
| └ indexed: TMtxVec AddScaledC(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, TCplx yScale, TCplx Z, Int32 Index, Int32 Len) | ||
| 3 | TMtxVec AddScaledC(TMtxVec X, TMtxVec Y, Double yScale, Double Z) | self = X + Y*yScale + zScalar |
| └ indexed: TMtxVec AddScaledC(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, Double yScale, Double Z, Int32 Index, Int32 Len) | ||
| 4 | TMtxVec AddScaledC(TMtxVec X, Double xScale, TMtxVec Y, Double yScale, Double Z) | self = X*xScale + Y*yScale + zScalar |
| └ indexed: TMtxVec AddScaledC(TMtxVec X, Int32 XIndex, Double xScale, TMtxVec Y, Int32 YIndex, Double yScale, Double Z, Int32 Index, Int32 Len) |
Overload 1: TMtxVec AddScaledC(TMtxVec X, TCplx xScale, TMtxVec Y, TCplx yScale, TCplx Z)
Compute X*xScale + Y*yScale + zScalar
| # | 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 | TCplx | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec AddScaledC(TMtxVec X, Int32 XIndex, TCplx xScale, TMtxVec Y, Int32 YIndex, TCplx yScale, TCplx Z, Int32 Index, Int32 Len)
Compute X*xScale + Y*yScale + z on sub arrays
| # | 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 | TCplx | scalar |
| 8 | Index | Int32 | start index |
| 9 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 2: TMtxVec AddScaledC(TMtxVec X, TMtxVec Y, TCplx yScale, TCplx Z)
Compute X + Y*yScale + zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | Y | TMtxVec | source TVec or TMtx |
| 3 | yScale | TCplx | scalar |
| 4 | Z | TCplx | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec AddScaledC(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, TCplx yScale, TCplx Z, Int32 Index, Int32 Len)
Compute X + Y*yScale + zScalar on sub arrays
| # | 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 | TCplx | scalar |
| 7 | Index | Int32 | start index |
| 8 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 3: TMtxVec AddScaledC(TMtxVec X, TMtxVec Y, Double yScale, Double Z)
Compute X + Y*yScale + zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | Y | TMtxVec | source TVec or TMtx |
| 3 | yScale | Double | scalar |
| 4 | Z | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec AddScaledC(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, Double yScale, Double Z, Int32 Index, Int32 Len)
Compute X + Y*yScale + zScalar on sub arrays
| # | 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 | Double | scalar |
| 7 | Index | Int32 | start index |
| 8 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 4: TMtxVec AddScaledC(TMtxVec X, Double xScale, TMtxVec Y, Double yScale, Double Z)
Compute X*xScale + Y*yScale + zScalar
| # | 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 | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec AddScaledC(TMtxVec X, Int32 XIndex, Double xScale, TMtxVec Y, Int32 YIndex, Double yScale, Double Z, Int32 Index, Int32 Len)
Compute X*xScale + Y*yScale + z on sub arrays
| # | 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 | Double | scalar |
| 8 | Index | Int32 | start index |
| 9 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining