[squeak-dev] The Trunk: EToys-dtl.418.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jan 29 02:16:36 UTC 2021


David T. Lewis uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-dtl.418.mcz

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

Name: EToys-dtl.418
Author: dtl
Time: 28 January 2021, 6:31:01.641276 pm
UUID: 27efb6c6-38aa-46df-904e-858fb4155f2b
Ancestors: EToys-eem.417

For reloadable Etoys per instructions at http://wiki.squeak.org/squeak/2848 section 2.1
Reclassify isVirtualScreen (EToys, Graphics)
Reclassify curvePrototype, trianglePrototype (Etoys, MorphicExtras)
Reclassify Inteval>>start and stop (Etoys, Collections)

=============== Diff against EToys-eem.417 ===============

Item was removed:
- ----- Method: Form>>isVirtualScreen (in category '*Etoys-OLPC-Display') -----
- isVirtualScreen
- 	"Am I a virtual display screen?"
- 	^false!

Item was removed:
- ----- Method: Interval>>start (in category '*Etoys-Squeakland-accessing') -----
- start
- 	^ start!

Item was removed:
- ----- Method: Interval>>stop (in category '*Etoys-Squeakland-accessing') -----
- stop
- 	^ stop!

Item was removed:
- ----- Method: PolygonMorph class>>curvePrototype (in category '*Etoys-Squeakland-instance creation') -----
- curvePrototype
- 	"Answer an instance of the receiver that will serve as a prototypical curve"
- 
- 	| aa |
- 	aa := self new. 
- 	aa vertices: (Array with: 0 at 80 with: 70 at 90 with: 60 at 0) 
- 		color: Color orange lighter 
- 		borderWidth: 4 
- 		borderColor: Color black.
- 	aa beSmoothCurve.
- 	aa setNameTo: 'Curve'.
- 	aa makeForwardArrow.		"is already open"
- 	aa computeBounds.
- 	^ aa
- 
- "
- PolygonMorph curvePrototype openInHand
- "!

Item was removed:
- ----- Method: PolygonMorph class>>trianglePrototype (in category '*Etoys-Squeakland-instance creation') -----
- trianglePrototype
- 	"Answer an instance of the receiver that will serve as a prototypical triangle"
- 
- 	| aa |
- 	aa := self new. 
- 	aa vertices: {0.0 at 0.0. 138.0 at 0.0. -37.0@ -74.0}
- 		color:  (TranslucentColor r: 0.387 g: 1.0 b: 0.548 alpha: 0.463)
- 		borderWidth: 3 
- 		borderColor: Color black.
- 	aa setProperty: #noNewVertices toValue: true.
- 	aa setNameTo: 'Triangle'.
- 	aa makeForwardArrow.		"is already open"
- 	aa computeBounds.
- 	aa addHandles.
- 	^ aa
- 
- "
- PolygonMorph trianglePrototype openInHand
- "!



More information about the Squeak-dev mailing list