-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPathVisualiser.h
More file actions
37 lines (29 loc) · 808 Bytes
/
PathVisualiser.h
File metadata and controls
37 lines (29 loc) · 808 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
/*
* File: PathVisualiser.h
* Author: zoizoi
*
* Created on 07 March 2011, 06:55
*/
#ifndef PATHVISUALISER_H
#define PATHVISUALISER_H
#include "OVASControl.h"
#include "GeoSphere.h"
#include "vtkEssentials.h"
#include "ViewPathClusterFinder.h"
class PathVisualiser {
public:
PathVisualiser(OVASControl* oc);
PathVisualiser(const PathVisualiser& orig);
virtual ~PathVisualiser();
void VisualisePath(int* path, int len);
void vizMeanPaths();
private:
OVASControl* oc;
vtkSmartPointer<vtkCamera> camera;
vtkSmartPointer<vtkActor> dataActor;
vtkSmartPointer<vtkRenderer> renderer;
vtkSmartPointer<vtkRenderWindow> renderWindow;
vtkSmartPointer<vtkRenderWindowInteractor> renderWindowInteractor;
float sphereRadius;
};
#endif /* PATHVISUALISER_H */