Select Git revision
discreteFrechetDistance.h
-
Christophe Geuzaine authoredChristophe Geuzaine authored
discreteFrechetDistance.h 436 B
// Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
#ifndef DISCRETE_FRECHET_DISTANCE
#define DISCRETE_FRECHET_DISTANCE
#include <vector>
#include "SPoint3.h"
double discreteFrechetDistance(const std::vector<SPoint3> &P,
const std::vector<SPoint3> &Q);
#endif