Print3d.mesa
Copyright © 1984 by Xerox Corporation. All rights reserved.
Bloomenthal, February 25, 1986 11:04:05 am PST
DIRECTORY IO, Matrix3d, Rope, Vector3d;
Print3d: CEDAR DEFINITIONS
~ BEGIN
Pair: PROC [stream: IO.STREAM, p: Vector3d.Pair, name: Rope.ROPENIL];
print the value of p on the given stream, optionally preceded by name.
Triple: PROC [stream: IO.STREAM, p: Vector3d.Triple, name: Rope.ROPENIL];
print the value of p on the given stream, optionally preceded by name.
Quad: PROC [stream: IO.STREAM, q: Vector3d.Quad, name: Rope.ROPENIL];
print the value of q on the given stream, optionally preceded by name.
Matrix: PROC [stream: IO.STREAM, m: Matrix3d.Matrix, name: Rope.ROPENIL];
print the value of m on the given stream, optionally preceded by name.
END.