Skip to content

Commit

Permalink
Solve issue meshpro#208 of main pygalmesh
Browse files Browse the repository at this point in the history
  • Loading branch information
oarcelus committed Nov 16, 2023
1 parent 90eb14a commit 24db699
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pygalmesh/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,8 @@ def generate_from_inr(
max_radius_surface_delaunay_ball=max_radius_surface_delaunay_ball,
max_facet_distance=max_facet_distance,
max_circumradius_edge_ratio=max_circumradius_edge_ratio,
exude_time_limit=exude_time_limit,
exude_sliver_bound=exude_sliver_bound,
verbose=verbose,
seed=seed,
)
Expand Down Expand Up @@ -480,6 +482,8 @@ def generate_from_array(
max_cell_circumradius: float | dict[int | str, float] = 0.0,
max_facet_distance: float = 0.0,
max_circumradius_edge_ratio: float = 0.0,
exude_time_limit: float = 0.0,
exude_sliver_bound: float = 0.0,
verbose: bool = True,
seed: int = 0,
):
Expand All @@ -500,6 +504,8 @@ def generate_from_array(
max_facet_distance,
max_circumradius_edge_ratio,
max_cell_circumradius,
exude_time_limit,
exude_sliver_bound,
verbose,
seed,
)
Expand Down

0 comments on commit 24db699

Please sign in to comment.