mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-06 02:30:55 -08:00
Merge pull request #999 from seltzered/wrap_tolerance_patch
Some checks are pending
benchmarks / benchmarks (macos-13, 3.12) (push) Waiting to run
benchmarks / benchmarks (macos-14, 3.12) (push) Waiting to run
benchmarks / benchmarks (ubuntu-latest, 3.12) (push) Waiting to run
benchmarks / benchmarks (windows-latest, 3.12) (push) Waiting to run
Upload coverage reports to Codecov / run (push) Waiting to run
pylint / lint (3.10) (push) Waiting to run
Run type checker / typecheck (3.10) (push) Waiting to run
Run type checker / typecheck (3.13) (push) Waiting to run
Wheel building and publishing / Build wheel on ubuntu-latest (push) Waiting to run
Wheel building and publishing / upload_pypi (push) Blocked by required conditions
tests / tests (macos-13, 3.10) (push) Waiting to run
tests / tests (macos-13, 3.13) (push) Waiting to run
tests / tests (macos-14, 3.10) (push) Waiting to run
tests / tests (macos-14, 3.13) (push) Waiting to run
tests / tests (ubuntu-latest, 3.10) (push) Waiting to run
tests / tests (ubuntu-latest, 3.13) (push) Waiting to run
tests / tests (windows-latest, 3.10) (push) Waiting to run
tests / tests (windows-latest, 3.13) (push) Waiting to run
Some checks are pending
benchmarks / benchmarks (macos-13, 3.12) (push) Waiting to run
benchmarks / benchmarks (macos-14, 3.12) (push) Waiting to run
benchmarks / benchmarks (ubuntu-latest, 3.12) (push) Waiting to run
benchmarks / benchmarks (windows-latest, 3.12) (push) Waiting to run
Upload coverage reports to Codecov / run (push) Waiting to run
pylint / lint (3.10) (push) Waiting to run
Run type checker / typecheck (3.10) (push) Waiting to run
Run type checker / typecheck (3.13) (push) Waiting to run
Wheel building and publishing / Build wheel on ubuntu-latest (push) Waiting to run
Wheel building and publishing / upload_pypi (push) Blocked by required conditions
tests / tests (macos-13, 3.10) (push) Waiting to run
tests / tests (macos-13, 3.13) (push) Waiting to run
tests / tests (macos-14, 3.10) (push) Waiting to run
tests / tests (macos-14, 3.13) (push) Waiting to run
tests / tests (ubuntu-latest, 3.10) (push) Waiting to run
tests / tests (ubuntu-latest, 3.13) (push) Waiting to run
tests / tests (windows-latest, 3.10) (push) Waiting to run
tests / tests (windows-latest, 3.13) (push) Waiting to run
Ensure tolerance is passed to wrap_edge function...
This commit is contained in:
commit
878a737516
1 changed files with 1 additions and 1 deletions
|
|
@ -343,7 +343,7 @@ class Mixin2D(Shape):
|
||||||
# The start point isn't at the surface_loc so wrap a line to find it
|
# The start point isn't at the surface_loc so wrap a line to find it
|
||||||
to_start_edge = Edge.make_line((0, 0), planar_edge @ 0)
|
to_start_edge = Edge.make_line((0, 0), planar_edge @ 0)
|
||||||
wrapped_to_start_edge = self._wrap_edge(
|
wrapped_to_start_edge = self._wrap_edge(
|
||||||
to_start_edge, surface_loc, snap_to_face=True
|
to_start_edge, surface_loc, snap_to_face=True, tolerance=tolerance
|
||||||
)
|
)
|
||||||
start_pnt = wrapped_to_start_edge @ 1
|
start_pnt = wrapped_to_start_edge @ 1
|
||||||
_, start_normal = _intersect_surface_normal(
|
_, start_normal = _intersect_surface_normal(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue