Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef MITCUBOID_H_HEADER_INCLUDED
00020 #define MITCUBOID_H_HEADER_INCLUDED
00021
00022 #include "mitkBoundingObject.h"
00023 #include "MitkExtExports.h"
00024
00025 namespace mitk {
00026
00027
00028
00029
00030 class MitkExt_EXPORT Cuboid : public BoundingObject
00031 {
00032 public:
00033 mitkClassMacro(Cuboid, BoundingObject);
00034 itkNewMacro(Self);
00035
00036 virtual mitk::ScalarType GetVolume();
00037 virtual bool IsInside(const Point3D& p) const;
00038
00039 protected:
00040 Cuboid();
00041 virtual ~Cuboid();
00042 };
00043
00044 }
00045 #endif
00046
00047