forked from springzfx/point-cloud-annotation-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvtkBoxWidgetCallback.h
More file actions
41 lines (31 loc) · 828 Bytes
/
vtkBoxWidgetCallback.h
File metadata and controls
41 lines (31 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef vtkBoxWidgetCallback_H
#define vtkBoxWidgetCallback_H
#include <vtkCommand.h>
class Annotation;
class vtkBoxWidgetCallback0 : public vtkCommand
{
public:
static vtkBoxWidgetCallback0 *New();
virtual void Execute( vtkObject *caller, unsigned long, void* );
/**
* @brief setAnno set the current annotation in which theb actor is picked
* @param value
*/
void setAnno(Annotation *value);
private:
Annotation* anno;
};
class vtkBoxWidgetCallback1 : public vtkCommand
{
public:
static vtkBoxWidgetCallback1 *New();
virtual void Execute( vtkObject *caller, unsigned long, void* );
/**
* @brief setAnno set the current annotation in which the actor is picked
* @param value
*/
void setAnno(Annotation *value);
private:
Annotation* anno;
};
#endif