00001 //deprecated 00003 // 00004 // PROJECT.....: vpat - Creating Virtual Patients 00005 // RESPONSIBLE.: Carla Freitas e Luciana Nedel 00006 // 00007 // FILE........: vpcuttools.h 00008 // DESCRIPTION.: Contain the vpCutTools class hierarchy declarations. 00009 // 00010 // AUTHOR......: Isabel Harb Manssour 00011 // DATE........: December/12/2000 00012 // DESCRIPTION.: Classes declaration. 00013 // 00015 00016 00017 // To foresee several "includes" 00018 #ifndef __VPCUTTOOLS_H 00019 #define __VPCUTTOOLS_H 00020 00021 00022 #include <vppoint3d.h> 00023 00024 00025 //----------------------------------------------------------------- 00026 // C U T T O O L S 00027 //----------------------------------------------------------------- 00028 00029 00031 // Class Name: VPCutTools 00032 // Superclass: - 00033 // Subclasses: VPCutVolume, VPCutPlane 00035 00036 class VPCutTools { 00037 private: 00038 VPPoint3D left; 00039 VPPoint3D right; 00040 public: 00041 VPCutTools(); 00042 VPPoint3D vpGetPointLeft(void); 00043 void vpSetPointLeft(VPPoint3D l); 00044 VPPoint3D vpGetPointRight(void); 00045 void vpSetPointRight(VPPoint3D r); 00046 }; 00047 00048 00049 #endif // __VPCUTTOOLS_H