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 MITKPlaneOperation_H
00020 #define MITKPlaneOperation_H
00021
00022 #include "mitkCommon.h"
00023 #include "mitkPointOperation.h"
00024 #include "mitkVector.h"
00025
00026
00027
00028 namespace mitk {
00029
00035 class MITK_CORE_EXPORT PlaneOperation : public PointOperation
00036 {
00037 public:
00038 PlaneOperation( OperationType operationType, Point3D point, Vector3D normal );
00039
00040 virtual ~PlaneOperation();
00041
00042 Vector3D GetNormal();
00043
00044 private:
00045 Vector3D m_Normal;
00046
00047 };
00048
00049 }
00050
00051
00052 #endif
00053
00054