From 07f2a0ee9fa63014e302f416e89a04148e8321ce Mon Sep 17 00:00:00 2001 From: nutti Date: Thu, 25 Apr 2024 21:37:05 +0900 Subject: [PATCH] Python API: Fix invalid Python syntax in Python API docstrings Ref: !121074 --- source/blender/python/mathutils/mathutils_geometry.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/python/mathutils/mathutils_geometry.cc b/source/blender/python/mathutils/mathutils_geometry.cc index 9de5d1c0cf7..10a78570fb7 100644 --- a/source/blender/python/mathutils/mathutils_geometry.cc +++ b/source/blender/python/mathutils/mathutils_geometry.cc @@ -1146,7 +1146,7 @@ static void points_in_planes_fn(const float co[3], int i, int j, int k, void *us PyDoc_STRVAR( /* Wrap. */ M_Geometry_points_in_planes_doc, - ".. function:: points_in_planes(planes, epsilon_coplanar=1e-4f, epsilon_isect=1e-6f)\n" + ".. function:: points_in_planes(planes, epsilon_coplanar=1e-4, epsilon_isect=1e-6)\n" "\n" " Returns a list of points inside all planes given and a list of index values for " "the planes used.\n"