#include // ------------------------------------------------------------------------- void cpPlugins::DataObjects::OrthoNormalBase:: SetITK( itk::LightObject* o ) { // WARNING: Do nothing since itk::Matrix does not belong to the // itk::LightObject hierarchy. } // ------------------------------------------------------------------------- void cpPlugins::DataObjects::OrthoNormalBase:: SetVTK( vtkObjectBase* o ) { auto matrix = dynamic_cast< vtkMatrix4x4* >( o ); if( matrix != NULL ) this->Superclass::SetVTK( matrix ); } // ------------------------------------------------------------------------- cpPlugins::DataObjects::OrthoNormalBase:: OrthoNormalBase( ) : Superclass( ) { } // ------------------------------------------------------------------------- cpPlugins::DataObjects::OrthoNormalBase:: ~OrthoNormalBase( ) { } // eof - $RCSfile$