The Trunk: MorphicExtras-mt.295.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: MorphicExtras-mt.295.mcz

commits-2
Marcel Taeumel uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-mt.295.mcz

==================== Summary ====================

Name: MorphicExtras-mt.295
Author: mt
Time: 26 April 2021, 3:08:44.455131 pm
UUID: d6f2966e-08bb-3e4e-837c-213b25c346ed
Ancestors: MorphicExtras-mt.294

Sorry for the noise. :-)

=============== Diff against MorphicExtras-mt.294 ===============

Item was changed:
  ----- Method: MovingEyeMorph class>>extraExampleSqueakGhostIsWatchingYou (in category 'examples') -----
  extraExampleSqueakGhostIsWatchingYou
  "MovingEyeMorph extraExampleSqueakGhostIsWatchingYou openInHand"
 
  | logoMorph leftEye rightEye |
+ logoMorph := (Form squeakLogo collectColors: #negated) asMorph.
- logoMorph := (Form squeakLogo "collectColors: #negated") asMorph.
  leftEye := (self color: Color white irisColor: Color black)
  extent: logoMorph extent * (0.1 @ 0.15);
  center: (logoMorph pointAtFraction: 0.39 @ 0.55);
  yourself.
  rightEye := (self color: Color white irisColor: Color black)
  extent: logoMorph extent * (0.1 @ 0.15);
  center: (logoMorph pointAtFraction: 0.59 @ 0.56);
  yourself.
  logoMorph addAllMorphs: {leftEye. rightEye}.
  ^ logoMorph.!