<> <> <> <<>> DIRECTORY CADTypes USING [Scad, VariableRec, VisibleMask], Rope USING [ROPE], Geometry3dVector USING [Triple]; CADIO: CEDAR DEFINITIONS ~ BEGIN Error: ERROR[why: ATOM]; ReadVAXCadFiles: PROC [cadFile, csFile: Rope.ROPE] RETURNS [info: CADTypes.Scad]; <> <<>> ReadInfoFile: PROC[filename: Rope.ROPE] RETURNS [info: CADTypes.Scad]; <> <<>> WriteInfoFile: PROC[filename: Rope.ROPE, info: CADTypes.Scad]; <> <<>> SelectCell: PROC[scad: CADTypes.Scad, mask: REF CADTypes.VisibleMask, title: Rope.ROPE] RETURNS [index: INT]; <> <<>> WhatCellIsItOn: PROC[point: Geometry3dVector.Triple, variables: CADTypes.VariableRec, scad: CADTypes.Scad] RETURNS [cell: NAT]; <> <<>> END.