dune-fem 2.8.0
Loading...
Searching...
No Matches
coordinate.hh
Go to the documentation of this file.
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
7namespace Dune
8{
9
10 namespace Fem
11 {
12
13 template< class Point >
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
Definition: bindguard.hh:11
static const Point & coordinate(const Point &x)
Definition: coordinate.hh:14