Skip to content

Commit

Permalink
fix: using semantic versioning msg to trigger build
Browse files Browse the repository at this point in the history
  • Loading branch information
chanind committed Apr 21, 2019
1 parent 9d275c8 commit e5fde13
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/frechetDistance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import { Curve, pointDistance } from './geometry';
* Discrete Frechet distance between 2 curves
* based on http://www.kr.tuwien.ac.at/staff/eiter/et-archive/cdtr9464.pdf
* modified to be iterative and have better memory usage
* @param curve1
* @param curve2
*/
const frechetDist = (curve1: Curve, curve2: Curve) => {
const longCurve = curve1.length >= curve2.length ? curve1 : curve2;
Expand Down

0 comments on commit e5fde13

Please # to comment.