The Trunk: Graphics-nice.284.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-nice.284.mcz

commits-2
Nicolas Cellier uploaded a new version of Graphics to project The Trunk:
http://source.squeak.org/trunk/Graphics-nice.284.mcz

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

Name: Graphics-nice.284
Author: nice
Time: 25 December 2013, 11:44:17.153 pm
UUID: 774db86d-773e-4cb5-aee0-bdf1f35f9c29
Ancestors: Graphics-nice.283

Change a few print:(aFloat roundTo: 0.01) into nextPutAll:(aFloat printShowingMaxDecimalPlaces: 2)

=============== Diff against Graphics-nice.283 ===============

Item was changed:
  ----- Method: TranslucentColor>>storeArrayValuesOn: (in category 'printing') -----
  storeArrayValuesOn: aStream
 
  self isTransparent ifTrue: [
  ^ aStream space].
  super storeArrayValuesOn: aStream.
+ aStream
+ space;
+ print: self alpha maxDecimalPlaces: 3.!
-
- aStream space.
- (self alpha roundTo: 0.001) storeOn: aStream.
-
- !