File: SVFileoutPoly.mesa
Last edited by Bier on January 5, 1985 1:19:17 pm PST
Copyright © 1984 by Xerox Corporation. All rights reserved.
Author: Eric Bier on February 5, 1987 1:37:05 pm PST
Contents: Facilities for creating human-readable version of a polygon approximation to a 3d scene.
DIRECTORY
IO,
Rope,
SVModelTypes,
SVSceneTypes;
SVFileoutPoly: CEDAR DEFINITIONS =
BEGIN
Scene: TYPE = SVSceneTypes.Scene;
StorePolyScene: PROC [scene: Scene, f: IO.STREAM, fileName: Rope.ROPE];
END.