Files Classes Functions Hierarchy
00001 #ifndef CYLINDER_H 00002 #define CYLINDER_H 00003 00004 #include <point.h> 00005 #include <typedefs.h> 00006 00007 class cylinder 00008 { 00009 public: 00010 00012 point3<double> nml; 00013 00015 point3<double> pos; 00016 00018 double radius; 00019 00021 double height; 00022 00024 cylinder 00025 ( 00026 point3<double> const & nml_, 00027 point3<double> const & pos_, 00028 doublec radius_, 00029 doublec height_ 00030 ); 00031 00033 operator stringc () const; 00034 }; 00035 00036 00037 #endif 00038
1.5.8