CDOrientExtras.mesa (part of Chipndale)
Copyright © 1984 by Xerox Corporation. All rights reserved.
Ch. Jacobi, Mike Spreitzer, December 13, 1984 11:32:47 am PST
last edited by Ch. Jacobi, December 13, 1984 11:32:50 am PST
DIRECTORY
CD,
Imager;
CDOrientExtras: CEDAR DEFINITIONS =
BEGIN
CreateTransform: PROC [
cellSize: CD.Position,
cellInstOrient: CD.Orientation,
cellInstPos: CD.Position ← [0,0]]
RETURNS [Imager.Transformation];
-- Given the size of a cell,
-- the position and orientation of an instance of that cell in "world"
-- co-ordinates, returns the transformation to be applied to
-- cell points to get world points.
END.