From 344c5afa56ec3e93d53121c9d9944d13923a5e2e Mon Sep 17 00:00:00 2001 From: jdegenstein Date: Tue, 15 Oct 2024 12:58:51 -0500 Subject: [PATCH] tea_cup.py -> find_intersection to find_intersection_points --- examples/tea_cup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tea_cup.py b/examples/tea_cup.py index 1a6a08fc..833ec5df 100644 --- a/examples/tea_cup.py +++ b/examples/tea_cup.py @@ -69,7 +69,7 @@ # Determine where the handle contacts the bowl handle_intersections = [ - tea_cup.part.find_intersection( + tea_cup.part.find_intersection_points( Axis(origin=(0, 0, vertical_offset), direction=(1, 0, 0)) )[-1][0] for vertical_offset in [35 * MM, 80 * MM]