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=========================================================================*/
35#ifndef vtkRenderedAreaPicker_h
36#define vtkRenderedAreaPicker_h
37
38#include "vtkRenderingCoreModule.h" // For export macro
39#include "vtkAreaPicker.h"
40
41class vtkRenderer;
42
43class VTKRENDERINGCORE_EXPORT vtkRenderedAreaPicker : public vtkAreaPicker
44{
45public:
48 void PrintSelf(ostream& os, vtkIndent indent);
49
55 virtual int AreaPick(double x0, double y0, double x1, double y1, vtkRenderer *);
56
57protected:
60
61private:
62 vtkRenderedAreaPicker(const vtkRenderedAreaPicker&) VTK_DELETE_FUNCTION;
63 void operator=(const vtkRenderedAreaPicker&) VTK_DELETE_FUNCTION;
64};
65
66#endif
Picks props behind a selection rectangle on a viewport.
Definition: vtkAreaPicker.h:63
a simple class to control print indentation
Definition: vtkIndent.h:40
Uses graphics hardware to picks props behind a selection rectangle on a viewport.
virtual int AreaPick(double x0, double y0, double x1, double y1, vtkRenderer *)
Perform pick operation in volume behind the given screen coordinates.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
static vtkRenderedAreaPicker * New()
abstract specification for renderers
Definition: vtkRenderer.h:64