6
は
私はAthensTutorialをしていた、私は最初のステップAthensチュートリアルでキャンバスはどこから来ますか?
surface := AthensCairoSurface extent: self extent asIntegerPoint.
を理解して、ステップ2は
キャンバスが来る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: ([email protected] corner: [email protected]).
canvas draw.
]
のですか?どこが定義されていますか?私はその部分を理解できません。
非常に感謝しています。 – Kilon