[etoys-dev] Etoys: Morphic-kfr.64.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jul 26 12:52:19 EDT 2011


Karl Ramberg uploaded a new version of Morphic to project Etoys:
http://source.squeak.org/etoys/Morphic-kfr.64.mcz

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

Name: Morphic-kfr.64
Author: kfr
Time: 26 July 2011, 6:51:05 pm
UUID: 60c75e1b-dddc-fc4f-b406-d23b9642e14d
Ancestors: Morphic-kfr.63

Minor typo, Etoy > Morphic.po, "Trignometric" -> "Trigonometric"
SQ-963

=============== Diff against Morphic-kfr.63 ===============

Item was changed:
  ----- Method: StandardScriptingSystem>>tableOfNumericFunctions (in category 'utilities') -----
  tableOfNumericFunctions
  	"Answer an array of <external function name> <actual function to call> <help string> triplets."
  
  "		English on tile			selector				English balloon help"
  	^ #(
  		(abs 					abs						'absolute value')
  		(arcTan				arcTan				'angle, in radians, whose tangent is the argument')
  		(cos					cos						'trigonometric cosine, argument in radians')
  		(cube					cubed					'the argument times itself, times itself again')
  		(cubeRoot				cubeRoot				'cube root of the argument')
  		(degreeArcTan		degreeArcTan		'angle, in degrees, whose tangent is the argument')
  		(degreeCos				degreeCos				'trigonometric cosine, argument in degrees')
+ 		(degreeSin				degreeSin				'trigonometric sine, argument in degrees')
- 		(degreeSin				degreeSin				'trignometric sine, argument in degrees')
  		(degreeTan			degreeTan				'trigonometric tangent, argument in degrees')
  
  		(degreesToRadians	degreesToRadians	'the number of degrees equivalent to the argument which is assumed to be expressed in radians')
  		(exp					exp					'exponential (e to the power of the argument)')
  		(factorial				safeFactorial				'the product of all the whole numbers between 1 and the argument')
  		(ln						safeLn					'natural logarithm')
  		(log						safeLog				'logarithm, base 10')
  		(negate 			negated				'the negative of the argument')
  		(radiansToDegrees	radiansToDegrees	'the number of radians equivalent to the argument, which is expressed in degrees.')
  		(random				random				'a randomly chosen integer between 1 and the argument')
  		(round					rounded				'the integer closest to the argument.')
  		(sign					sign					'1 if argument is positive, -1 if argument is negative, 0 if argument is zero.')
  		(sin						sin						'trigonometric sine, argument in radians')
  		(square				squared				'the argument multiplied by itself')
  		(squareRoot			safeSquareRoot		'square root of the argument')
  		(tan					tan						'trigonometric tangent, argument in radians')
  		(truncate				truncated				'the integer nearest to the argument toward zero')
  
  			) translatedNoop
  
  
  "
  		(raisedto 		raisedTo:		'raised to the power')   
  "!



More information about the etoys-dev mailing list