home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-09-23 | 2.1 KB | 26 lines | [TEXT/????] |
- // Copyright 1993 Ralph Gonzalez
-
- /*
- * FILE: trans.h
- * AUTHOR: R. Gonzalez
- * CREATED: October 3, 1990
- *
- * Defines 3D transformation (using trans. matrix) for picture
- * application.
- */
-
- # ifndef trans_h
- # define trans_h
-
- # include "class.h"
- # define PI 3.1415926
-
- /******************************************************************
- * abstract transformation
- ******************************************************************/
- class Transformation:public Generic_Class
- {
- public:
- double m[4][4];
-
- Transfor