VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Rendering
Core
vtkWorldPointPicker.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkWorldPointPicker.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 __vtkWorldPointPicker_h
38
#define __vtkWorldPointPicker_h
39
40
#include "vtkRenderingCoreModule.h"
// For export macro
41
#include "
vtkAbstractPicker.h
"
42
43
class
VTKRENDERINGCORE_EXPORT
vtkWorldPointPicker
:
public
vtkAbstractPicker
44
{
45
public
:
46
static
vtkWorldPointPicker
*
New
();
47
vtkTypeMacro(
vtkWorldPointPicker
,
vtkAbstractPicker
);
48
void
PrintSelf
(ostream& os,
vtkIndent
indent);
49
51
52
int
Pick
(
double
selectionX,
double
selectionY,
double
selectionZ,
53
vtkRenderer
*renderer);
54
int
Pick
(
double
selectionPt[3],
vtkRenderer
*renderer)
55
{
return
this->
vtkAbstractPicker::Pick
( selectionPt, renderer); };
57
58
protected
:
59
vtkWorldPointPicker
();
60
~vtkWorldPointPicker
() {};
61
62
private
:
63
vtkWorldPointPicker
(
const
vtkWorldPointPicker
&);
// Not implemented.
64
void
operator=(
const
vtkWorldPointPicker
&);
// Not implemented.
65
};
66
67
#endif
68
69
Generated on Fri May 25 2012 22:39:34 for VTK by
1.8.1