Skip to content

Commit

Permalink
Fixed last-minute bug before release in CDT_2d::create_enclosing_rect…
Browse files Browse the repository at this point in the history
…angle()

(thank you @nervous_jesse for having detected it just in time !
 and this function is not tested in the test suite, that calls
 create_enclosing_quad() directly ...)
  • Loading branch information
BrunoLevy committed Mar 3, 2023
1 parent 0cddd65 commit 4372190
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ It also has lower-level algorithm:
- [Exact numbers / exact predicates](https://brunolevy.github.io/geogram/multi__precision_8h.html)
- [Delaunay triangulations in 2D](https://github.com/BrunoLevy/geogram/wiki/Delaunay2D)
and highly efficient parallel [Delaunay triangulations in 3D](https://github.com/BrunoLevy/geogram/wiki/Delaunay3D)
- Memory efficient surfacic/volumetric/hybdir [mesh data structure](https://github.com/BrunoLevy/geogram/wiki/Mesh)
- Memory efficient surfacic/volumetric/hybrid [mesh data structure](https://github.com/BrunoLevy/geogram/wiki/Mesh)
- Efficient [geometric search data structures](https://github.com/BrunoLevy/geogram/wiki/Raytrace) for
intersection and raytracing (AABBs, KdTrees, ...)
- [Spectral mesh processing](https://github.com/BrunoLevy/geogram/wiki/ManifoldHarmonics)
Expand Down
2 changes: 1 addition & 1 deletion src/lib/geogram/delaunay/CDT_2d.h
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ namespace GEO {
vec2(x1,y1),
vec2(x2,y1),
vec2(x2,y2),
vec2(x1,y1)
vec2(x1,y2)
);
}

Expand Down

0 comments on commit 4372190

Please sign in to comment.