I was doing the AthensTutorial , I understand the first step
surface := AthensCairoSurface extent: self extent asIntegerPoint.
and then step 2 is
surface drawDuring: [:canvas |
"First, we clear the surface"
surface clear.
"we can use
surface clear: Color black.
as well. A #clear is equivalent to: (surface clear: Color transparent). "
"Let''s draw a simple green rectangle"
canvas setPaint: Color green.
canvas setShape: (40@40 corner: 100@100).
canvas draw.
]
Where canvas comes from ? where is defined ? I just dont understand that part.
That's a trick you will see in various Smalltalk frameworks. 'canvas' is a parameter to the block you pass to #drawDuring:. You can name it the way you want, it is totally up to you. The method #drawDuring: will create a canvas instance and will pass it to your block by calling the BlockClosure>>value: method on it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With