Spelling correction (#8927)

Spelling correction
This commit is contained in:
Sebastien Loriot 2025-06-06 18:51:40 +02:00 committed by GitHub
commit 0fb70f5cd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ closer than a distance bound to a query curve.
In the example below, we can see a query where: In the example below, we can see a query where:
- the query polyline is in bold green - the query polyline is in bold green
- the query distance is 16 - the query distance is 16
- the colorfull polylines are in distance at most 16 from the query and are therefore returned - the colorful polylines are in distance at most 16 from the query and are therefore returned
- the light gray polylines are filtered out early on and no significant computation is performed on them - the light gray polylines are filtered out early on and no significant computation is performed on them
- the dark gray polyline is not filtered out early on but only later by our exact decision algorithm - the dark gray polyline is not filtered out early on but only later by our exact decision algorithm

View File

@ -1338,7 +1338,7 @@ std::pair<double,double> FrechetLight<C>::calcDistance(Curve const& curve1, Curv
} }
// This doesn't have to be called but is handy to make time measurements more // This doesn't have to be called but is handy to make time measurements more
// consistent such that the clears in the lessThan call doen't have to do // consistent such that the clears in the lessThan call don't have to do
// anything. // anything.
template <typename C> template <typename C>