The Inbox: Morphic-spd.469.mcz

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

The Inbox: Morphic-spd.469.mcz

commits-2
A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-spd.469.mcz

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

Name: Morphic-spd.469
Author: spd
Time: 1 October 2010, 2:20:39.508 pm
UUID: a68c21fa-d7d3-46da-82ea-53077512621a
Ancestors: Morphic-laza.468

LineMorph class>>from:to:color:width: changed to return a LineMorph

=============== Diff against Morphic-laza.468 ===============

Item was changed:
  ----- Method: LineMorph class>>from:to:color:width: (in category 'instance creation') -----
  from: startPoint to: endPoint color: lineColor width: lineWidth
 
+ ^ self vertices: {startPoint. endPoint}
- ^ PolygonMorph vertices: {startPoint. endPoint}
  color: Color black borderWidth: lineWidth borderColor: lineColor!