00001
00002 #ifndef _GEOM_SIMILARITY_HPP_
00003 #define _GEOM_SIMILARITY_HPP_
00004
00005 #include "geom/Atom.hpp"
00006
00007 namespace jafar {
00008 namespace geom {
00009 template<int dimension>
00010 double similarity( const Facet<dimension>&, const Facet<dimension>& );
00011 template<int dimension>
00012 double similarity( const PolyLine<dimension>&, const PolyLine<dimension>& );
00013 template<int dimension>
00014 double similarity( const Segment<dimension>&, const Segment<dimension>& );
00015 }
00016 }
00017
00018 #include "geom/SimilarityImpl.hpp"
00019
00020 #endif