File: GGFileIn.mesa
Last edited by Bier on November 11, 1986 11:30:53 pm PST
Copyright © 1986 by Xerox Corporation. All rights reserved.
Contents: Recreates a gargoyle database from a text file of the sort produced by GGFileout.mesa.
DIRECTORY
GGInterfaceTypes, GGModelTypes, IO;
GGFileIn: CEDAR DEFINITIONS =
BEGIN
GGData: TYPE = GGInterfaceTypes.GGData;
Scene: TYPE = GGModelTypes.Scene;
FileinSceneOnly: PROC [f: IO.STREAM, scene: Scene];
Ignores the alignment line options. Merges any objects in f into scene.
FileinSceneAndOptions: PROC [f: IO.STREAM, ggData: GGData];
Merges any objects in f into scene. Merges any alignment line types in f into the viewer represented by ggData.
END.