VTK
vtkEllipsoidTensorProbeRepresentation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkEllipsoidTensorProbeRepresentation.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
27 #ifndef __vtkEllipsoidTensorProbeRepresentation_h
28 #define __vtkEllipsoidTensorProbeRepresentation_h
29 
31 
32 class vtkCellPicker;
33 class vtkTensorGlyph;
34 class vtkPolyDataNormals;
35 
38 {
39 public:
41 
43 
46  void PrintSelf(ostream& os, vtkIndent indent);
48 
49  virtual void BuildRepresentation();
50  virtual int RenderOpaqueGeometry(vtkViewport *);
51 
53  virtual int SelectProbe( int pos[2] );
54 
56 
57  virtual void GetActors(vtkPropCollection *);
58  virtual void ReleaseGraphicsResources(vtkWindow *);
60 
61 protected:
64 
65  // Get the interpolated tensor at the current position
66  void EvaluateTensor( double t[9] );
67 
74 
75 private:
77  vtkEllipsoidTensorProbeRepresentation&); //Not implemented
78  void operator=(const
79  vtkEllipsoidTensorProbeRepresentation&); //Not implemented
80 
81 };
82 
83 #endif
84