-- File: SVDraw.mesa
-- Last edited by Bier on December 18, 1982 1:19 am
-- Author: Eric Bier on October 19, 1982 3:10 pm
-- Contents: Some convenience functions to draw shapes not directly available in Cedar Graphics

DIRECTORY
 Graphics;

SVDraw: DEFINITIONS =
BEGIN

Circle: PROC [dc: Graphics.Context, originX, originY, radius: REAL];
Cross: PROC [dc: Graphics.Context, originX, originY, length: REAL];
LineSandwich: PROC [dc: Graphics.Context, fromX, fromY, toX, toY: REAL];

END.