SurfaceTool.mesa
James Rauen, January 19, 1988 5:26:31 pm PST
Note that SurfaceToolImpl defines two CommandTool commands which call SurfaceViewer.CreateSurfaceViewer and MakeSurfaceTool. These procedures create the two viewers used to interact with AlgebraicSurfaces. ASViewers creates a color surface viewer and ASGrayViewers creates a black-and-white surface viewer.
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.