The Trunk: Graphics-mt.398.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-mt.398.mcz

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

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

Name: Graphics-mt.398
Author: mt
Time: 6 May 2018, 3:08:37.011836 pm
UUID: 73c0a26a-9209-cb42-90b7-b679bb5b467d
Ancestors: Graphics-mt.397

Supplement to refactoring in Morphic-mt.1427.

=============== Diff against Graphics-mt.397 ===============

Item was added:
+ ----- Method: Form class>>dotOfSize:color: (in category 'examples') -----
+ dotOfSize: diameter color: color
+
+ | form |
+ form := self extent: diameter asPoint depth: Display depth.
+ form getCanvas fillOval: form boundingBox color: color.
+ ^form!