SurfaceTool.mesa
James Rauen, January 19, 1988 5:26:31 pm PST
Note that SurfaceToolImpl defines a CommandTool command, ASViewers, which calls SurfaceViewer.CreateSurfaceViewer and MakeSurfaceTool. These procedures create the two viewers used to interact with AlgebraicSurfaces.
DIRECTORY
SurfaceViewer USING [SurfaceViewer];
SurfaceTool: CEDAR DEFINITIONS ~ BEGIN
MakeSurfaceTool: PROC[sviewer: REF SurfaceViewer.SurfaceViewer];
Creates a SurfaceTool to execute operations in sviewer. This should normally be used in conjunction with SurfaceViewer.CreateSurfaceViewer.
END.