Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make sort_triangle public #174

Merged
merged 2 commits into from
Aug 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.1.3

- `sort_triangle` is now public.

## v1.1.2

- Clarified type stability of `triangulate` in docstring, and notes about field access and public API. See [#171](https://github.com/JuliaGeometry/DelaunayTriangulation.jl/pull/171).
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DelaunayTriangulation"
uuid = "927a84f5-c5f4-47a5-9785-b46e178433df"
authors = ["Daniel VandenHeuvel <[email protected]>"]
version = "1.1.2"
version = "1.1.3"

[deps]
AdaptivePredicates = "35492f91-a3bd-45ad-95db-fcad7dcfedb7"
Expand Down
1 change: 1 addition & 0 deletions docs/src/api/primitives.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ getk
triangle_vertices
triangle_type
triangle_edges
sort_triangle
compare_triangles
add_to_triangles!
delete_from_triangles!
Expand Down
3 changes: 2 additions & 1 deletion src/public.jl
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@
parallelorder_predicate,
angle_is_acute_predicate,
sameside_predicate,
meet_predicate
meet_predicate,
sort_triangle
""",
),
)
Expand Down
Loading