00001 00002 00003 #ifndef _VUVOLUMEBCCUNIMODAL3D1BTHRESHOLD_H_ 00004 #define _VUVOLUMEBCCUNIMODAL3D1BTHRESHOLD_H_ 00005 00006 #include "../1B.h" 00007 00008 class vu151212; 00009 typedef vu151212 vuVolumeBccUnimodal3d1BThreshold; 00010 00011 class vu151212 : public vu15121 00012 { 00013 public: 00014 vu151212() { threshold = 16.0; }; 00015 00016 void incThreshold() { if (threshold < 255.0) threshold += 1.0; }; 00017 void decThreshold() { if (threshold > 0.0) threshold -= 1.0; }; 00018 00019 protected: 00020 float threshold; 00021 }; 00022 00023 #endif