The Trunk: EToys-hjh.333.mcz

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

The Trunk: EToys-hjh.333.mcz

commits-2
David T. Lewis uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-hjh.333.mcz

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

Name: EToys-hjh.333
Author: hjh
Time: 11 June 2018, 7:47:07.644259 am
UUID: 1872ec0f-374c-4d8a-a701-f118fb19ae40
Ancestors: EToys-nice.332

Move methods
Morph rotationCenter and rotationCenter:
from 'Etoys-geometry' to 'geometry'

=============== Diff against EToys-nice.332 ===============

Item was removed:
- ----- Method: Morph>>rotationCenter (in category '*Etoys-geometry') -----
- rotationCenter
- "Return the rotation center of the receiver. The rotation center defines the relative offset inside the receiver's bounds for locating the reference position."
- ^self valueOfProperty: #rotationCenter ifAbsent:[0.5@0.5]
- !

Item was removed:
- ----- Method: Morph>>rotationCenter: (in category '*Etoys-geometry') -----
- rotationCenter: aPointOrNil
- "Set the new rotation center of the receiver. The rotation center defines the relative offset inside the receiver's bounds for locating the reference position."
- aPointOrNil isNil
- ifTrue:[self removeProperty: #rotationCenter]
- ifFalse:[self setProperty: #rotationCenter toValue: aPointOrNil]
- !