From 1829c049be5e127230dac37a09584090f5ecdc7c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 6 Jan 2015 18:32:54 +1100 Subject: Correct args from recent mathutils refactor --- source/blender/python/mathutils/mathutils_geometry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python/mathutils/mathutils_geometry.c') 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; } -- cgit v1.2.3