]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/OrthoNormalBase.hxx
...
[cpPlugins.git] / lib / cpPlugins / OrthoNormalBase.hxx
index e21a3c8d11418c1f5e9ee62d8711219bdd34f713..193ff7215ddec51246de654acb756fb1e60d6145 100644 (file)
@@ -16,6 +16,7 @@ SetITK( const _TMatrix& m )
         if( j < _TMatrix::ColumnDimensions )
           matrix->SetElement( i, j, m[ i ][ j ] );
   this->m_VTKObject = matrix;
+  this->_CreateVTKActor( );
 }
 
 // -------------------------------------------------------------------------
@@ -34,6 +35,7 @@ SetITK( const _TMatrix& m, const _TVector& v )
     if( i < _TVector::Dimension )
       matrix->SetElement( i, 3, v[ i ] );
   this->m_VTKObject = matrix;
+  this->_CreateVTKActor( );
 }
 
 #endif // __CPPLUGINS__ORTHONORMALBASE__HXX__