]> Creatis software - clitk.git/blob - vv/vvLandmarksGlyph.h
remove antique RCS headers
[clitk.git] / vv / vvLandmarksGlyph.h
1 /*=========================================================================
2
3  Program:   vv
4  Language:  C++
5  Author :   Pierre Seroul (pierre.seroul@gmail.com)
6
7 Copyright (C) 2008
8 Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr
9 CREATIS-LRMN http://www.creatis.insa-lyon.fr
10
11 This program is free software: you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation, version 3 of the License.
14
15 This program 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 General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
23 =========================================================================*/
24
25 #ifndef __vvLandmarksGlyph_h
26 #define __vvLandmarksGlyph_h
27
28 #include "vtkTextSource.h"
29 #include "vtkPoints.h"
30
31 class vvLandmarksGlyph : public vtkTextSource
32 {
33 public:
34     vtkTypeRevisionMacro(vvLandmarksGlyph,vtkTextSource);
35     void PrintSelf(ostream& os, vtkIndent indent);
36
37     // Description:
38     // Construct object with no string set and backing enabled.
39     static vvLandmarksGlyph *New();
40
41
42 protected:
43     vvLandmarksGlyph();
44     ~vvLandmarksGlyph();
45
46     void AddTextGlyph(vtkPoints* newPoints,vtkUnsignedCharArray* newScalars, vtkCellArray *newPolys, int orientation);
47     void AddCrossGlyph(vtkPoints* newPts,vtkCellArray* newLines);
48     void ChangeOrientation(double v[3], int orientation);
49
50     int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
51
52 private:
53     vvLandmarksGlyph(const vvLandmarksGlyph&);  // Not implemented.
54     void operator=(const vvLandmarksGlyph&);  // Not implemented.
55 };
56
57 #endif