Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/python/mathutils')
-rw-r--r--source/blender/python/mathutils/mathutils_geometry.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/mathutils/mathutils_geometry.c b/source/blender/python/mathutils/mathutils_geometry.c
index 49f1253af95..67e48253726 100644
--- a/source/blender/python/mathutils/mathutils_geometry.c
+++ b/source/blender/python/mathutils/mathutils_geometry.c
@@ -787,7 +787,7 @@ static PyObject *M_Geometry_intersect_point_tri(PyObject *UNUSED(self), PyObject
if (!PyArg_ParseTuple(
args, "OOOO:intersect_point_tri",
- &py_pt, UNPACK3_EX(&, py_tri,)))
+ &py_pt, UNPACK3_EX(&, py_tri, )))
{
return NULL;
}
@@ -833,7 +833,7 @@ static PyObject *M_Geometry_intersect_point_tri_2d(PyObject *UNUSED(self), PyObj
if (!PyArg_ParseTuple(
args, "OOOO:intersect_point_tri_2d",
- &py_pt, UNPACK3_EX(&, py_tri,)))
+ &py_pt, UNPACK3_EX(&, py_tri, )))
{
return NULL;
}
@@ -878,7 +878,7 @@ static PyObject *M_Geometry_intersect_point_quad_2d(PyObject *UNUSED(self), PyOb
if (!PyArg_ParseTuple(
args, "OOOOO:intersect_point_quad_2d",
- &py_pt, UNPACK4_EX(&, py_quad,)))
+ &py_pt, UNPACK4_EX(&, py_quad, )))
{
return NULL;
}