Difference between revisions of "TPointArray"
From SCAR Divi Manual
(→Example) |
|||
(One intermediate revision by the same user not shown) | |||
Line 8: | Line 8: | ||
==Description== | ==Description== | ||
− | A dynamic array type based on the [[TPoint]] type. | + | A dynamic array type based on the [[TPoint]] type. There are [[:Category:TPA_Functions|many functions]] available to process these arrays. |
==Example== | ==Example== |
Latest revision as of 18:00, 10 December 2012
Definition
TPointArray = array of TPoint;
Availability
SCAR Divi 3.00 > Current
Description
A dynamic array type based on the TPoint type. There are many functions available to process these arrays.
Example
var TPA: TPointArray; begin SetLength(TPA, 2); TPA[0] := Point(5, 6); TPA[1] := Point(7, -1); WriteLn(TPAToStr(TPA)); end.
Output:
(5,6);(7,-1)