00001 //deprecated 00003 // 00004 // PROJECT.....: vpat - Creating Virtual Patients 00005 // RESPONSIBLE.: Carla Freitas e Luciana Nedel 00006 // 00007 // FILE........: vpcone.h 00008 // DESCRIPTION.: Contain the VPCone class hierarchy declarations. 00009 // 00010 // AUTHOR......: Anderson Maciel 00011 // DATE........: 10/August/2000 00012 // DESCRIPTION.: Classes declaration. 00013 // 00015 00016 00017 #ifndef __VPCONE_H 00018 #define __VPCONE_H 00019 00020 #include <vpgraphicobj.h> 00021 00022 00024 // Class Name: VPCone 00025 // Superclass: VPGraphicObj 00026 // Subclasses: none 00028 00029 00030 class VPCone : public VPGraphicObj{ 00031 00032 private: 00033 float bottomRadius; 00034 float height; 00035 bool side; 00036 bool bottom; 00037 00038 public: 00039 }; 00040 00041 #endif