On Fri, 17 Jul 2009, Martin DeMello wrote: > Is there any way to draw a simple, closed polygon and have it filled > in? I can't find it in the manual.
Look at "shape" in the Slots/Art section. Here's a weird shape.
Shoes.app do
fill red
shape do
move_to(100, 100)
line_to(150, 150)
line_to(100, 150)
line_to(120, 125)
end
end
As per the manual, shape() can do more than just lines.
--
J. David Eisenberg http://catcode.com/
