Tim Felgentreff uploaded a new version of Balloon to project The Trunk:
http://source.squeak.org/trunk/Balloon-tfel.26.mcz==================== Summary ====================
Name: Balloon-tfel.26
Author: tfel
Time: 12 March 2015, 9:26:51.323 am
UUID: 7d7db55f-da29-0948-83c9-f86c8b41e972
Ancestors: Balloon-bf.25
Fix typo in example method
=============== Diff against Balloon-bf.25 ===============
Item was changed:
----- Method: Bezier3Segment class>>example2 (in category 'examples') -----
example2
"draws a cubic bezier on the screen"
| c canvas |
c := Bezier3Segment new
from: 0 @ 0
via: 0 @ 100
and: 100 @ 0
to: 100 @ 100.
+ canvas := Display getCanvas asBalloonCanvas.
- canvas := Display getCanvas asBalloonCanvas
canvas aaLevel: 4.
canvas
drawBezier3Shape: c asPointArray
color: Color transparent
borderWidth: 1
borderColor: Color black!