Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TVec *Concat(const DewArray<TVec *> &Src); | Concatenates an array of TVec objects. |
| 2 | TVec *Concat(int Index, const DewArray<TVec *> &Src); | Copies the contents of all TVec objects from the Src array to the calling vector elements, starting with at Index. |
Overload 1: TVec *Concat(const DewArray<TVec *> &Src);
Concatenates an array of TVec objects.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | const DewArray<TVec *> & |
Remarks:
Concatenates an array of TVec objects. The method copies the contents of all TVec objects from the Src array to the calling object. The TVec::Length and TVec::Complex properties of the calling vector are set implicitly. An exception is raised, if Complex properties of TVec objects do not match.
Declared in Dew::Math::TVec · Dew.Math/MtxVec.h · Cross-compiler
Overload 2: TVec *Concat(int Index, const DewArray<TVec *> &Src);
Copies the contents of all TVec objects from the Src array to the calling vector elements, starting with at Index.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Src | const DewArray<TVec *> & |
Remarks:
The TVec::Length and TVec::Complex properties of the calling vector must be set explicitly. An exception is raised, if Complex properties of TVec objects do not match or if the sum of Length's exceeds the Length property of the calling object.
Declared in Dew::Math::TVec · Dew.Math/MtxVec.h · Cross-compiler