Computer Assited Medical Intervention Tool Kit  version 3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GeometricObject.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * $CAMITK_LICENCE_BEGIN$
3  *
4  * CamiTK - Computer Assisted Medical Intervention ToolKit
5  * (c) 2001-2013 UJF-Grenoble 1, CNRS, TIMC-IMAG UMR 5525 (GMCAO)
6  *
7  * Visit http://camitk.imag.fr for more information
8  *
9  * This file is part of CamiTK.
10  *
11  * CamiTK is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * CamiTK is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU Lesser General Public License version 3 for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * version 3 along with CamiTK. If not, see <http://www.gnu.org/licenses/>.
22  *
23  * $CAMITK_LICENCE_END$
24  ****************************************************************************/
25 
26 
27 #ifndef GEOMETRIC_OBJECT_H
28 #define GEOMETRIC_OBJECT_H
29 
30 // -- Core stuff
31 #include "CamiTKAPI.h"
32 
33 // -- vtk stuff
34 #include <vtkSmartPointer.h>
35 
36 // -- vtk stuff Classes
37 class vtkPolyDataAlgorithm;
38 class vtkActor;
39 class vtkPolyDataMapper;
40 
41 namespace camitk
42 {
52  public:
53 
55  enum Geometry {
57  SPHERE
58  };
59 
61  enum Direction {
62  X,
63  Y,
64  Z,
65  USER_DEFINED
66  };
67 
72 
77  GeometricObject(Geometry, const double, const double, const double);
78 
83  GeometricObject(Geometry, Direction);
84 
89  GeometricObject(Geometry, float boundingBox[6]);
90 
92  virtual ~GeometricObject();
93 
95  vtkSmartPointer<vtkActor> getActor();
96 
98  void setPosition(const double, const double, const double);
99 
101  void setDirection(const double, const double, const double);
102 
104  void setColor(const double, const double, const double);
105 
110  void setSize(const double);
111 
113  Geometry getType() const;
114 
115  private:
116 
118  float bounds[6];
119 
122 
124  vtkSmartPointer<vtkActor> myActor;
125 
127  vtkSmartPointer<vtkPolyDataMapper> myMapper;
128 
130  vtkSmartPointer<vtkPolyDataAlgorithm> mySource;
131 
134 
136  virtual void init();
137 
139  void defaultValues();
140 };
141 
143  return myType;
144 }
145 
146 }
147 
148 #endif
149