Merge branch 'master' into blender2.8
This commit is contained in:
@@ -1083,12 +1083,12 @@ PyDoc_STRVAR(Quaternion_axis_doc,
|
||||
);
|
||||
static PyObject *Quaternion_axis_get(QuaternionObject *self, void *type)
|
||||
{
|
||||
return Quaternion_item(self, GET_INT_FROM_POINTER(type));
|
||||
return Quaternion_item(self, POINTER_AS_INT(type));
|
||||
}
|
||||
|
||||
static int Quaternion_axis_set(QuaternionObject *self, PyObject *value, void *type)
|
||||
{
|
||||
return Quaternion_ass_item(self, GET_INT_FROM_POINTER(type), value);
|
||||
return Quaternion_ass_item(self, POINTER_AS_INT(type), value);
|
||||
}
|
||||
|
||||
PyDoc_STRVAR(Quaternion_magnitude_doc,
|
||||
|
Reference in New Issue
Block a user