00001 /*========================================================================= 00002 00003 Program: 3DMed 00004 Date: $Date: 2014-02-25 18:30:00 +0800 $ 00005 Version: $Version: 4.6.0 $ 00006 Copyright: MIPG, Institute of Automation, Chinese Academy of Sciences 00007 00008 =========================================================================*/ 00009 00010 00011 #ifndef __mitkOoCVolumeShearPerspective_h 00012 #define __mitkOoCVolumeShearPerspective_h 00013 00014 #include "mitkOoCVolumeShearFunction.h" 00015 00020 class MITK_VISUALIZATION_API mitkOoCVolumeShearPerspective : public mitkOoCVolumeShearFunction 00021 { 00022 public: 00023 MITK_TYPE(mitkOoCVolumeShearPerspective, mitkOoCVolumeShearFunction) 00024 00025 virtual void PrintSelf(ostream &os); 00026 00027 mitkOoCVolumeShearPerspective(); 00028 00037 virtual bool IsParallel(){ return false; } 00038 00044 virtual void Shear(mitkShear *shearInform); 00045 00046 protected: 00047 virtual ~mitkOoCVolumeShearPerspective(); 00048 00049 private: 00050 mitkOoCVolumeShearPerspective(const mitkOoCVolumeShearPerspective&); 00051 void operator = (const mitkOoCVolumeShearPerspective&); 00052 00053 }; 00054 00055 00056 //#define DEFINED_mitkOoCVolumeShearPerspective 00057 00058 00059 00060 #endif 00061