INTERFACEStroker ; IMPORT DrawContext; IMPORT Point; IMPORT Rect; IMPORT LineStyle; TYPE T <: Public; Public = OBJECT METHODS init(dc: DrawContext.T; ls := LineStyle.Default): T; moveTo(p: Point.T); lineTo(p: Point.T); frameRect(r: Rect.T); END; END Stroker.