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:
authorCampbell Barton <ideasman42@gmail.com>2015-01-02 11:18:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-01-02 11:29:00 +0300
commit4abe5485273894302d575251e72a1fa7d43f4231 (patch)
tree5d6627b9f5d9bb536fb2fa700ad084d31e8dd3a8 /source/blender/python/mathutils
parentbf169d6ca606bfb99ffa9cc831c73d2c4bdeda05 (diff)
cleanup: style
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;
}