From b5a6587ef9533d56965abdab1a1e954e1c99f507 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Mon, 29 Sep 2025 17:15:04 +0200 Subject: [PATCH] Cleanup: Make format --- source/blender/blenkernel/intern/curve_poly.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/curve_poly.cc b/source/blender/blenkernel/intern/curve_poly.cc index 8282e9c1f96..100c45666aa 100644 --- a/source/blender/blenkernel/intern/curve_poly.cc +++ b/source/blender/blenkernel/intern/curve_poly.cc @@ -61,7 +61,7 @@ static float3 direction_bisect(const float3 &pos, if (norm < 2e-7) { /* Approximately < sin(1e-5) */ return other_dir; } - /* Compute using the cross product, as catastrophic cancellation occurs in `tangent` + /* Compute using the cross product, as catastrophic cancellation occurs in `tangent` * when the sum approaches 0, leading to significant numerical errors (see #146332). */ const float3 binormal = math::cross(other_dir, prev_dir);