|
|
|
Vector Shape - Create Rectangle
Added on 2/7/2006
|
Pass the width and height and a vertexList will be returned which consists of a retangular vector shape.
on createRectangle (width, height)
vertList = [[#vertex: point(0, 0)], [#vertex: point(width, 0)], [#vertex: point(width, height)], [#vertex: point(0, height)]]
return vertList
end
|
|