1 #ifndef DUNE_FEM_COMMON_COORDINATE_HH
2 #define DUNE_FEM_COMMON_COORDINATE_HH
3 
4 #include <dune/grid/common/entity.hh>
5 #include <dune/grid/common/geometry.hh>
6 
7 namespace Dune
8 {
9 
10   namespace Fem
11   {
12 
13     template< class Point >
coordinate(const Point & x)14     static inline const Point &coordinate ( const Point &x )
15     {
16       return x;
17     }
18 
19   } // namespace Fem
20 
21 } // namespace Dune
22 
23 #endif // #ifndef DUNE_FEM_COMMON_COORDINATE_HH
24