This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "Morphic Performance Testing v2" | |
| | rand creating deleting hiding showing ellipses | | |
| rand := Random new. | |
| creating := | |
| [ | m | m := EllipseMorph new. | |
| ellipses add: m. | |
| m color: Color random. | |
| m position: ActiveWorld extent * ((rand next)@(rand next)) | |
| ]. | |
| deleting := [ World removeAllMorphsIn: ellipses]. |
OlderNewer