The Trunk: Graphics-bf.303.mcz

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

The Trunk: Graphics-bf.303.mcz

commits-2
Bert Freudenberg uploaded a new version of Graphics to project The Trunk:
http://source.squeak.org/trunk/Graphics-bf.303.mcz

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

Name: Graphics-bf.303
Author: bf
Time: 8 December 2014, 1:42:10.857 am
UUID: 59c75040-7563-4061-8425-81f4467d3eb8
Ancestors: Graphics-topa.302

Restore timestamps lost in assignment conversion.

=============== Diff against Graphics-topa.302 ===============

Item was changed:
  ----- Method: Form>>fadeImageVert:at: (in category 'transitions') -----
  fadeImageVert: otherImage at: topLeft
  "Display fadeImageVert: (Form fromDisplay: (10@10 extent: 300@300)) reverse at: 10@10"
  | d |
  d := self depth.
  ^ self fadeImage: otherImage at: topLeft indexAndMaskDo:
  [:i :mask |
  mask fill: ((mask width//2//d-i*d)@0 extent: i*2*d@mask height) fillColor: Color black.
  i <= (mask width//d)]!