You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,12 @@
1
1
# Changelog
2
2
3
+
## v1.1.4
4
+
5
+
- Fixed a bug with curve-bounded refinement with custom edge(s) structs. See [#175](https://github.com/JuliaGeometry/DelaunayTriangulation.jl/pull/175).
6
+
3
7
## v1.1.3
4
8
5
-
-`sort_triangle` is now public.
9
+
-`sort_triangle` is now public. See [#174](https://github.com/JuliaGeometry/DelaunayTriangulation.jl/pull/174).
Copy file name to clipboardExpand all lines: src/data_structures/mesh_refinement/boundary_enricher.jl
+14-9Lines changed: 14 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -337,7 +337,7 @@ function get_minimum_edge_length(complex::SmallAngleComplex, points)
337
337
end
338
338
339
339
"""
340
-
BoundaryEnricher{P,B,C,I,BM,S}
340
+
BoundaryEnricher{P,B,C,I,BM,S,E}
341
341
342
342
Struct used for performing boundary enrichment on a curve-bounded boundary.
343
343
@@ -367,34 +367,39 @@ field will no longer aliased with the input `boundary_nodes`, although `points`
367
367
The argument `n` is used in [`polygonise`](@ref) for filling out the boundary temporarily in order to construct the [`PolygonHierarchy`](@ref). The argument `coarse_n` defines the initial coarse discretisation
368
368
through [`coarse_discretisation!`](@ref); the default `n=0` means that the coarse discretisation will be performed until the maximum total variation of a subcurve is less than π/2.
return_construct_boundary_enricher(points, new_boundary_nodes, boundary_curves, polygon_hierarchy, segments, n, coarse_n, IntegerType)
391
+
return_construct_boundary_enricher(points, new_boundary_nodes, boundary_curves, polygon_hierarchy, segments, n, coarse_n, I, E, Es)
387
392
end
388
-
function_construct_boundary_enricher(points, boundary_nodes, boundary_curves, polygon_hierarchy, segments, n, coarse_n, ::Type{I}) where {I}
393
+
function_construct_boundary_enricher(points, boundary_nodes, boundary_curves, polygon_hierarchy, segments, n, coarse_n, ::Type{I}, ::Type{E}, ::Type{Es}) where {I, E, Es}
0 commit comments