1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
5 - University of LYON http://www.universite-lyon.fr/
6 - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr
7 - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the copyright notices for more information.
13 It is distributed under dual licence
15 - BSD See included LICENSE.txt file
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ======================================================================-====*/
20 #include "vtkGlyph3D.h"
22 class vvGlyph2D : public vtkGlyph3D
25 vtkTypeRevisionMacro(vvGlyph2D,vtkGlyph3D);
26 void PrintSelf(ostream& os, vtkIndent indent);
29 // Construct object with scaling on, scaling mode is by scalar value,
30 // scale factor = 1.0, the range is (0,1), orient geometry is on, and
31 // orientation is by vector. Clamping and indexing are turned off. No
32 // initial sources are defined.
33 void SetOrientation(int x,int y,int z);
34 static vvGlyph2D *New();
36 void SetUseLog(int log) {
47 virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
50 vvGlyph2D(const vvGlyph2D&); // Not implemented.
51 void operator=(const vvGlyph2D&); // Not implemented.
52 double mOrientation[3];