Go to the documentation of this file.00001 #ifndef OPENTISSUE_DYNAMICS_FEM_FEM_UPDATE_ORIGINAL_COORD_H
00002 #define OPENTISSUE_DYNAMICS_FEM_FEM_UPDATE_ORIGINAL_COORD_H
00003
00004
00005
00006
00007
00008
00009
00010 #include <OpenTissue/configuration.h>
00011
00012 namespace OpenTissue
00013 {
00014 namespace fem
00015 {
00016
00028 template < typename node_iterator >
00029 inline void update_original_coord(node_iterator const & begin,node_iterator const & end)
00030 {
00031 for (node_iterator N = begin;N!=end;++N)
00032 N->m_model_coord = N->m_coord;
00033 }
00034
00035 }
00036 }
00037
00038
00039 #endif