[squeak-dev] The Trunk: Graphics-nice.284.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Dec 25 22:45:21 UTC 2013


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.
- 
- !



More information about the Squeak-dev mailing list