'From Squeak3.7alpha of ''11 September 2003'' [latest update: #5497] on 26 October 2003 at 6:47:49 pm'! "Change Set: MorphExample Date: 26 October 2003 Author: Karl Ramberg The step method caused a walk back. Kind of silly to have a class called MorphicExample that don't work. Added a simple class comment."! !MorphExample commentStamp: 'kfr 10/26/2003 18:38' prior: 0! This is a example of how to use a morph. It consists of only two methods, initialize and step. DoIt: MorphExample new openInWorld. ! !MorphExample methodsFor: 'stepping and presenter' stamp: 'kfr 10/26/2003 18:33'! step phase _ phase\\8 + 1. phase = 1 ifTrue: [^ ball delete]. phase < 4 ifTrue:[^self]. phase = 4 ifTrue: [self addMorph: ball]. ball align: ball center with: (star vertices at: (phase-3*2)).! !