TVec::Concat Method

Overload List

#SignatureDescription
1TVec *Concat(const DewArray<TVec *> &Src);Concatenates an array of TVec objects.
2TVec *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.

#NameTypeDescription
1Srcconst 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.

See Also: TVec::Split, TVec::Copy, TVec::Copy
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.

#NameTypeDescription
1Indexint
2Srcconst 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