Commit: 1829c049be5e127230dac37a09584090f5ecdc7c
Author: Campbell Barton
Date:   Tue Jan 6 18:32:54 2015 +1100
Branches: master
https://developer.blender.org/rB1829c049be5e127230dac37a09584090f5ecdc7c

Correct args from recent mathutils refactor

===================================================================

M       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 da46af8..b496ee1 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;
        }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to