INTERFACELine ; IMPORT Point; IMPORT Rect; IMPORT LineStyle; CONST Brand = "Line"; TYPE T = RECORD a, b: Point.T; s := LineStyle.Default; END; PROCEDURE GetBoundRect(l: T): Rect.T; PROCEDURE Format(a: T): TEXT; PROCEDURE Equal(a, b: T): BOOLEAN; END Line.