Hello,
I'd like to construct variable-length polygon arrays, which contain a set of points given their coordinates. Each point has two coordinates (x, y). Eg.:
poly001 = [ (x1,y1); (x2,y2); ... (xn, yn) ]
where (x1,y1) ... represents the first point in 1-dimensional array.
I'm also thinking...