00001 #ifndef _VU_VOLUME_LIGHTFIELD_UNIMODAL_SphLfFlt_All_H_
00002 #define _VU_VOLUME_LIGHTFIELD_UNIMODAL_SphLfFlt_All_H_
00003
00004 #include "../vuSphericFilter.h"
00005
00006 template <int SIZE, class TYPE>
00007 class vuSphLfFlt_All : public vuSphericFilter<SIZE,TYPE>
00008 {
00009 protected:
00010 using vuSphericFilter<SIZE,TYPE>::m_volume;
00011 using vuSphericFilter<SIZE,TYPE>::getNearestViews;
00012 public:
00013 vuSphLfFlt_All(const vuString& filterName);
00014
00016 void calcFilteredViews(vuSphericView<SIZE,TYPE>**& views, dword& count);
00017 };
00018
00019 template class vuSphLfFlt_All<1,byte>;
00020 template class vuSphLfFlt_All<2,byte>;
00021 template class vuSphLfFlt_All<3,byte>;
00022 template class vuSphLfFlt_All<1,float>;
00023 template class vuSphLfFlt_All<2,float>;
00024 template class vuSphLfFlt_All<3,float>;
00025
00026 typedef vuSphLfFlt_All<1,byte> vuSphLfFlt_All1B;
00027 typedef vuSphLfFlt_All<2,byte> vuSphLfFlt_All2B;
00028 typedef vuSphLfFlt_All<3,byte> vuSphLfFlt_All3B;
00029 typedef vuSphLfFlt_All<1,float> vuSphLfFlt_All1F;
00030 typedef vuSphLfFlt_All<2,float> vuSphLfFlt_All2F;
00031 typedef vuSphLfFlt_All<3,float> vuSphLfFlt_All3F;
00032
00033 #endif