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:
authorPhilipp Oeser <info@graphics-engineer.com>2018-07-16 10:37:24 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2018-07-16 16:03:21 +0300
commit96b4e43e8dcdf3c051be2b52bb453c55d6afcd08 (patch)
treea140e7a1f952577e5dceb23baacb4b36a0f56367 /source/blender/python/mathutils/mathutils_Quaternion.c
parent80795ff8976fabb210ef139f94d60a9e1080c8ce (diff)
Fix T55527: creating a Quaternion without args should result in identity
quaternion Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D3487
Diffstat (limited to 'source/blender/python/mathutils/mathutils_Quaternion.c')
-rw-r--r--source/blender/python/mathutils/mathutils_Quaternion.c3
1 files changed, 2 insertions, 1 deletions
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,