Eliot Miranda uploaded a new version of Balloon to project The Trunk:
http://source.squeak.org/trunk/Balloon-eem.27.mcz==================== Summary ====================
Name: Balloon-eem.27
Author: eem
Time: 2 September 2015, 6:24:15.595 pm
UUID: 8a4e1c60-2480-434a-b65a-37f6cb45c131
Ancestors: Balloon-tfel.26
Remove carriage returns from some time stamps
=============== Diff against Balloon-tfel.26 ===============
Item was changed:
----- Method: Bezier3Segment class>>from:to: (in category 'instance creation') -----
from: p1 to: p2
^ self new from: p1 via: (p1 interpolateTo: p2 at: 0.3333) and: (p1
interpolateTo: p2 at: 0.66667) to: p2!
Item was changed:
----- Method: Bezier3Segment class>>from:via:and:to: (in category 'instance creation') -----
from: p1 via: p2 and: p3 to: p4
^ self new from: p1 via: p2 and: p3 to: p4!
Item was changed:
----- Method: CompressedBoundaryShape>>bounds (in category 'accessing') -----
bounds
| min max width |
points isEmpty ifTrue:[^0@0 corner: 1@1].
min := max := points first.
points do:[:pt|
min := min min: pt.
max := max max: pt
].
width := 0.
lineWidths valuesDo:[:w| width := width max: w].
^(min corner: max) insetBy: (width negated asPoint)!