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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
/*=========================================================================
Program: Image Guided Surgery Software Toolkit
Module: $RCSfile: igstkTransformBase.cxx,v $
Language: C++
Date: $Date: 2009-01-30 18:24:31 $
Version: $Revision: 1.1 $
Copyright (c) ISC Insight Software Consortium. All rights reserved.
See IGSTKCopyright.txt or http://www.igstk.org/copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "igstkTransformBase.h"
namespace igstk
{
TransformBase
::TransformBase()
{
// Error is NEVER zero. In the best situation is on the range of the smaller
// non-zero epsilon that can be represented with the ErrorType.
m_Error = itk::NumericTraits< ErrorType >::min();
}
TransformBase
::TransformBase( const TransformBase & inputTransform )
{
m_Error = inputTransform.m_Error;
m_TimeStamp = inputTransform.m_TimeStamp;
}
TransformBase
::~TransformBase()
{
}
TransformBase::TimePeriodType
TransformBase
::GetStartTime() const
{
return m_TimeStamp.GetStartTime();
}
TransformBase::TimePeriodType
TransformBase
::GetExpirationTime() const
{
return m_TimeStamp.GetExpirationTime();
}
bool
TransformBase
::IsValidAtTime( TimePeriodType timeToCheckInMilliseconds ) const
{
return m_TimeStamp.IsValidAtTime( timeToCheckInMilliseconds );
}
bool
TransformBase
::IsValidNow() const
{
return m_TimeStamp.IsValidNow();
}
/**
* This operator allows all subclasses of LightObject to be printed via <<.
* It in turn invokes the Print method, which in turn will invoke the
* PrintSelf method that all objects should define, if they have anything
* interesting to print out.
*/
std::ostream& operator<<( std::ostream& os, const TransformBase& o )
{
o.Print(os, 0);
return os;
}
} // end namespace igstk
|