Re: Morphic animation, c'est lent.
Stéphane Rollandin <hepta-JzcQqk2NLvvfG2/[email protected]>
| Newsgroups | gmane.comp.lang.smalltalk.squeak.french |
|---|---|
| Message-ID | <[email protected]> |
pour voir la vitesse maximum que tu peux atteindre pixel par pixel, essaie ceci dans un workspace: (m := Morph new) openInWorld. 1 to: 300 do: [:i | m position: m position + (1@1). World doOneCycle] Stef