home *** CD-ROM | disk | FTP | other *** search
/ gdead.berkeley.edu / gdead.berkeley.edu.tar / gdead.berkeley.edu / pub / cad-tools / ciftomann.tar / CD / xforms.h < prev   
C/C++ Source or Header  |  1988-01-28  |  881b  |  33 lines

  1. /*
  2.  * xforms.h
  3.  *
  4.  * Copyright -C- 1981 Kenneth H. Keller, Giles C. Billingsley
  5.  * sccsid "%W%  %G%"
  6.  *
  7.  *     KIC is a graphics editor that was developed by the integrated
  8.  * circuits group of the Electronics Research Laboratory and the
  9.  * Department of Electrical Engineering and Computer Sciences at
  10.  * the University of California, Berkeley, California.  The program
  11.  * KIC is available free of charge to any interested party.
  12.  * The sale, resale, or use of this program for profit without the
  13.  * express written consent of the Department of Electrical Engineering
  14.  * and Computer Sciences, University of California, Berkeley, California,
  15.  * is forbidden.
  16.  */
  17.  
  18.  
  19. /*
  20.  * Data structures for transforms package.
  21.  * 
  22.  */
  23.  
  24. #define    XFORMSTACKSIZE    100
  25.  
  26. struct tt {
  27.     int ttStack[XFORMSTACKSIZE][3][3];
  28.     int ttSP;
  29.     int ttCurrent[3][3];
  30.     int ttInverseCurrent[3][3];
  31.     };
  32.  
  33.