View Single Post
  #4 (permalink)  
Old 08-15-2007, 04:20 AM
Erel's Avatar
Erel Erel is online now
Administrator
 
Join Date: Apr 2007
Posts: 3,143
Default

You could define:
Dim Type(x,y) pts(500000)
And now store the shapes in one sequence and draw each shape with something like:
Code:
Form1.Polygon(pst(),ShapeNumber * 1000,LengthOfShape,...)
That way there is no need to copy the points each time.
Reply With Quote