[Newbies] usage PolygonMorph

karl karl.ramberg at comhem.se
Wed May 30 20:34:19 UTC 2007


Konrad.Krentz wrote:
>
> Hi @ all,
>
> I’d like to know how to create a hexagon using PolygonMorph class.
>
> Thanks!
>
One fun way is to use PolygonMorph shapeFromPen: penBlock color: c 
borderWidth: bw borderColor: bc
You make the pen draw a hexagon and that turns into a hexagon PolygonMorph.
So you get:

World addMorph: (PolygonMorph
shapeFromPen: [:p | 1 to: 6 do:[:i|p go: 50.p turn: 60.
]]
color: Color red borderWidth: 1 borderColor: Color black)

karl


More information about the Beginners mailing list