forked from ProstateBRP/ProstateNav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvtkRobotToImageRegistration.cxx
44 lines (28 loc) · 1.28 KB
/
vtkRobotToImageRegistration.cxx
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
42
/*==========================================================================
Portions (c) Copyright 2008 Brigham and Women's Hospital (BWH) All Rights Reserved.
See Doc/copyright/copyright.txt
or http://www.slicer.org/copyright/copyright.txt for details.
Program: 3D Slicer
Module: $HeadURL: http://svn.slicer.org/Slicer3/trunk/Modules/OpenIGTLinkIF/vtkRobotRegistration.cxx $
Date: $Date: 2009-01-05 13:28:20 -0500 (Mon, 05 Jan 2009) $
Version: $Revision: 8267 $
==========================================================================*/
#include "vtkObjectFactory.h"
#include "vtkRobotToImageRegistration.h"
#include <string.h>
vtkStandardNewMacro(vtkRobotToImageRegistration);
vtkCxxRevisionMacro(vtkRobotToImageRegistration, "$Revision: 8267 $");
//---------------------------------------------------------------------------
vtkRobotToImageRegistration::vtkRobotToImageRegistration()
{
this->FiducialVolume = NULL;
this->RobotToImageTransform = NULL;
}
//---------------------------------------------------------------------------
vtkRobotToImageRegistration::~vtkRobotToImageRegistration()
{
}
//---------------------------------------------------------------------------
void vtkRobotToImageRegistration::PrintSelf(ostream& os, vtkIndent indent)
{
}