Difference between revisions of "SplitTPA"
From SCAR Divi Manual
(→Availability) |
(→Description) |
||
Line 11: | Line 11: | ||
==Description== | ==Description== | ||
− | This function splits a given [[TPointArray]] '''TPA''' into separated TPointArrays by grouping together the points that are within a given distance from each other. The function returns a [[T2DPointArray]] containing all the resulting TPointArrays. | + | This function splits a given [[TPointArray]] '''TPA''' into separated TPointArrays by grouping together the points that are within a given distance '''Dist''' from each other. The function returns a [[T2DPointArray]] containing all the resulting TPointArrays. |
==Example== | ==Example== |
Revision as of 02:29, 10 September 2011
Definition
function SplitTPA(const TPA: TPointArray; const Dist: Integer): T2DPointArray;
Availability
SCAR Divi 3.27 > Current
Aliases
- TPAChain (SCAR Divi 3.26 > Current)
Description
This function splits a given TPointArray TPA into separated TPointArrays by grouping together the points that are within a given distance Dist from each other. The function returns a T2DPointArray containing all the resulting TPointArrays.
Example
var i: Integer; TPA: TPointArray; ATPA: T2DPointArray; begin TPA := [Point(0, 0), Point(2, 6), Point(1, 2), Point(1, 1)]; ATPA := SplitTPA(TPA, 2); for i := Low(ATPA) to High(ATPA) do WriteLn(TPAToStr(ATPA[i])); end.
Output:
(0,0);(1,1);(1,2) (2,6)