[etoys-dev] Etoys: Morphic-Richo.22.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Jun 20 16:32:34 EDT 2010


Ricardo Moran uploaded a new version of Morphic to project Etoys:
http://source.squeak.org/etoys/Morphic-Richo.22.mcz

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

Name: Morphic-Richo.22
Author: Richo
Time: 20 June 2010, 5:31:18 pm
UUID: 220cdf13-7e3b-434a-8ecc-4b5939423d4a
Ancestors: Morphic-kfr.21

* Fix for bug:  (SQ-719) Can only change a circles diameter to a value less than the current value using width or length tiles

=============== Diff against Morphic-kfr.21 ===============

Item was added:
+ ----- Method: CircleMorph>>width: (in category 'geometry') -----
+ width: aNumber
+ 	" Set my width; my position (top-left corner) and height will remain the same "
+ 
+ 	self extent: aNumber asInteger@ aNumber asInteger.
+ !

Item was added:
+ ----- Method: CircleMorph>>height: (in category 'geometry') -----
+ height: aNumber
+ 	" Set my width; my position (top-left corner) and height will remain the same "
+ 
+ 	self extent: aNumber asInteger@ aNumber asInteger.
+ !



More information about the etoys-dev mailing list