From d3437adcf7d38236260b8fe56407bfbe73e5f483 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 11 Jan 2025 04:08:52 +0700 Subject: [PATCH] Reduce typo count --- .../mesh_intersection/triangle_triangle_intersection.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/transformation/mesh_intersection/triangle_triangle_intersection.rs b/src/transformation/mesh_intersection/triangle_triangle_intersection.rs index 7e3d6d01..263260ef 100644 --- a/src/transformation/mesh_intersection/triangle_triangle_intersection.rs +++ b/src/transformation/mesh_intersection/triangle_triangle_intersection.rs @@ -214,10 +214,10 @@ fn segment_plane_intersection( } } -/// Prints debug information if the calulated intersection of two triangles is detected to be +/// Prints debug information if the calculated intersection of two triangles is detected to be /// invalid. /// -/// If the intersection is valid, this prints nothing. If it isn’t valid, this will print a few +/// If the intersection is valid, this prints nothing. If it isn't valid, this will print a few /// lines to copy/paste into the Desmos online graphing tool (for visual debugging), as well as /// some rust code to add to the `tris` array in the `intersect_triangle_common_vertex` test for /// regression checking. @@ -273,7 +273,7 @@ fn debug_check_intersections( } println!(")"); - println!("~~~~~~~ (copy/paste the folliwing input in the `intersect_triangle_common_vertex` test)"); + println!("~~~~~~~ (copy/paste the following input in the `intersect_triangle_common_vertex` test)"); println!("(Triangle::new("); for pt1 in poly1 { println!(" Point2::new({},{}),", pt1.x, pt1.y);