From 96b4e43e8dcdf3c051be2b52bb453c55d6afcd08 Mon Sep 17 00:00:00 2001 From: Philipp Oeser Date: Mon, 16 Jul 2018 09:37:24 +0200 Subject: Fix T55527: creating a Quaternion without args should result in identity quaternion Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D3487 --- source/blender/python/mathutils/mathutils_Quaternion.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/python/mathutils/mathutils_Quaternion.c b/source/blender/python/mathutils/mathutils_Quaternion.c index 1a6fd0ee86f..48c18dd20c1 100644 --- a/source/blender/python/mathutils/mathutils_Quaternion.c +++ b/source/blender/python/mathutils/mathutils_Quaternion.c @@ -1100,7 +1100,8 @@ static PyObject *Quaternion_new(PyTypeObject *type, PyObject *args, PyObject *kw { PyObject *seq = NULL; double angle = 0.0f; - float quat[QUAT_SIZE] = {0.0f, 0.0f, 0.0f, 0.0f}; + float quat[QUAT_SIZE]; + unit_qt(quat); if (kwds && PyDict_Size(kwds)) { PyErr_SetString(PyExc_TypeError, -- cgit v1.2.3