=== Top of the Swiki === Attachments ===

FAQ: How do you draw a line?

BobArning
There are several methods that will help here.
See
FormCanvas>>line:to:width:color:


Dan Ingalls
For a line object, use PolygonMorph in its PolyLine mode, thus

World addMorph:
(PolygonMorph
vertices: {pointA. pointB}
color: Color red
borderWidth: 2
borderColor: Color red)