home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / PASM.LZH / SELTYPE.H < prev    next >
C/C++ Source or Header  |  1996-05-29  |  582b  |  15 lines

  1. #ifndef _SELTYPE_
  2. #define _SELTYPE_
  3. enum SelectType {SelNone = 0, SelMove = 1, SelRot = 2, SelScale = 4,
  4.                  SelX = 8, SelY = 16, SelZ = 32,
  5.                  SelPers = 64, SelStat = 128,
  6.                  SelTarget = 256, SelCombined = 512};
  7. const SelectType SelMode = SelMove|SelRot|SelScale|SelTarget|SelCombined;
  8. const SelectType SelAxis = SelX|SelY|SelZ;
  9. const SelectType SelAll = SelX | SelY | SelZ | SelPers | SelStat;
  10. const SelectType SelXYZ = SelX | SelY | SelZ;
  11. const SelectType SelXY = SelX | SelY;
  12. const SelectType SelYZ = SelY | SelZ;
  13. const SelectType SelZX = SelZ | SelX;
  14. #endif
  15.