VTK
vtkRenderedAreaPicker.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkRenderedAreaPicker.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 =========================================================================*/
37 #ifndef __vtkRenderedAreaPicker_h
38 #define __vtkRenderedAreaPicker_h
39 
40 #include "vtkAreaPicker.h"
41 
42 class vtkRenderer;
43 
45 {
46 public:
47  static vtkRenderedAreaPicker *New();
49  void PrintSelf(ostream& os, vtkIndent indent);
50 
55  virtual int AreaPick(double x0, double y0, double x1, double y1, vtkRenderer *renderer);
56 
57 protected:
60 
61 private:
62  vtkRenderedAreaPicker(const vtkRenderedAreaPicker&); // Not implemented.
63  void operator=(const vtkRenderedAreaPicker&); // Not implemented.
64 };
65 
66 #endif
67 
68