SVMatrixOps.mesa
Copyright © 1986 by Xerox Corporation. All rights reserved.
Last edited by Bier on February 17, 1987 2:14:04 pm PST
Contents: Some of the transform operations from the latest copy of my unpublished transform tutorial.
DIRECTORY
SV3d;
SVMatrixOps: CEDAR DEFINITIONS =
BEGIN
Matrix4by4: TYPE = SV3d.Matrix4by4;
IncTransf: PROC [CWORLD, PWORLD, DWORLD, M: Matrix4by4] RETURNS [newCP: Matrix4by4];
AbsTransf: PROC [PWORLD, DWORLD, N: Matrix4by4] RETURNS [newCP: Matrix4by4];
END.