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-06 10:32:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-01-06 11:09:55 +0300
commit1829c049be5e127230dac37a09584090f5ecdc7c (patch)
tree54fa0e29e3d5c69d952aa4d9c9dcc0800ce8af63 /source/blender/python/mathutils/mathutils_geometry.c
parentbf0c8e116db49379900020b5a20ba15d91b3fb9a (diff)
Correct args from recent mathutils refactor
Diffstat (limited to 'source/blender/python/mathutils/mathutils_geometry.c')
-rw-r--r--source/blender/python/mathutils/mathutils_geometry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/mathutils/mathutils_geometry.c b/source/blender/python/mathutils/mathutils_geometry.c
index da46af8a847..b496ee1fbf6 100644
--- a/source/blender/python/mathutils/mathutils_geometry.c
+++ b/source/blender/python/mathutils/mathutils_geometry.c
@@ -536,7 +536,7 @@ static PyObject *M_Geometry_intersect_plane_plane(PyObject *UNUSED(self), PyObje
if (!PyArg_ParseTuple(
args, "OOOO:intersect_plane_plane",
- &plane_a_co, &plane_a_no, &plane_b_co, &plane_b_no))
+ &py_plane_a_co, &py_plane_a_no, &py_plane_b_co, &py_plane_b_no))
{
return NULL;
}