Difference between revisions of "TPAFromBox"
From SCAR Divi Manual
Line 8: | Line 8: | ||
==Description== | ==Description== | ||
− | Generates a [[TPointArray]] containing all coordinates within the given [[TBox]] '''Box'''. The | + | Generates a [[TPointArray]] containing all coordinates within the given [[TBox]] '''Box'''. The coordinates are stored row-by-row in the TPointArray. |
==Example== | ==Example== |
Revision as of 13:09, 21 November 2012
Definition
function TPAFromBox(const Box: TBox): TPointArray;
Availability
SCAR Divi 3.26 > Current
Description
Generates a TPointArray containing all coordinates within the given TBox Box. The coordinates are stored row-by-row in the TPointArray.
Example
begin WriteLn('TPointArray[' + TPAToStr(TPAFromBox(Box(3, 1, 5, 5))) + ']'); end.
Output:
TPointArray[(3,1);(4,1);(3,2);(4,2);(3,3);(4,3);(3,4);(4,4)]