Difference between revisions of "TPAFromBox"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function TPAFromBox(const Box: TBox): TPointArray; </source> ==Availability== SCAR Divi 3.26 > Current ==Description== Generat...") |
|||
Line 19: | Line 19: | ||
Output: | Output: | ||
TPointArray[(3,1);(4,1);(3,2);(4,2);(3,3);(4,3);(3,4);(4,4)] | TPointArray[(3,1);(4,1);(3,2);(4,2);(3,3);(4,3);(3,4);(4,4)] | ||
+ | |||
+ | ==See Also== | ||
+ | *[[TPAFromCircle]] | ||
+ | *[[TPAFromTriangle]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:TPA Functions]] | [[Category:TPA Functions]] | ||
[[Category:Array Functions]] | [[Category:Array Functions]] |
Revision as of 13:08, 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 coordiantes 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)]