Difference between revisions of "CombineTPA"
From SCAR Divi Manual
Line 23: | Line 23: | ||
Output: | Output: | ||
TPointArray[(0,0);(1,2);(5,6);(-5,2);(1,3)] | TPointArray[(0,0);(1,2);(5,6);(-5,2);(1,3)] | ||
+ | |||
+ | ==See Also== | ||
+ | *[[MergeATPA]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:TPA Functions]] | [[Category:TPA Functions]] | ||
[[Category:Array Functions]] | [[Category:Array Functions]] |
Revision as of 00:29, 21 October 2011
Definition
function CombineTPA(const TPA1, TPA2: TPointArray): TPointArray;
Availability
SCAR Divi 3.20b > Current
Aliases
- TPACombine (SCAR Divi 3.26 > Current)
Description
Appends the given TPointArray TPA2 to end of the given TPointArray TPA1 and returns it.
Example
begin WriteLn('TPointArray[' + TPAToStr(CombineTPA([Point(0, 0), Point(1, 2), Point(5, 6)], [Point(-5, 2), Point(1, 3)])) + ']'); end.
Output:
TPointArray[(0,0);(1,2);(5,6);(-5,2);(1,3)]