1 #ifndef MEASURE_HPP
2 
3 #include "moab/CN.hpp"
4 
5 double edge_length( const double* start_vtx_coords,
6                     const double* end_vtx_coords );
7 
8 double measure( moab::EntityType type,
9                 int num_vertices,
10                 const double* vertex_coordinatee );
11 
12 #endif
13 
14 
15