home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / MEDIT.LZH / POSE.CPP < prev    next >
C/C++ Source or Header  |  1995-08-01  |  276b  |  21 lines

  1. #include <stdio.h>
  2. #include <math.h>
  3. #include "matrix.h"
  4. #include "pose.h"
  5.  
  6. Pose::Pose()
  7. {
  8.     dirtype = DirNone;
  9.     scaletype = ScaleNone;
  10.     rotationcount = 0;
  11.     position = rotation = Vector(0,0,0);
  12.     scale = Vector(1,1,1);
  13.     target = NULL;
  14. }
  15.  
  16. Pose::~Pose()
  17. {
  18. }
  19.  
  20.  
  21.