We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e477b3 commit 584ca7dCopy full SHA for 584ca7d
src/_macosx.m
@@ -1199,8 +1199,8 @@ static int _transformation_converter(PyObject* object, void* pointer)
1199
return 0;
1200
}
1201
const double a = *(double*)PyArray_GETPTR2(object, 0, 0);
1202
- const double b = *(double*)PyArray_GETPTR2(object, 0, 1);
1203
- const double c = *(double*)PyArray_GETPTR2(object, 1, 0);
+ const double b = *(double*)PyArray_GETPTR2(object, 1, 0);
+ const double c = *(double*)PyArray_GETPTR2(object, 0, 1);
1204
const double d = *(double*)PyArray_GETPTR2(object, 1, 1);
1205
const double tx = *(double*)PyArray_GETPTR2(object, 0, 2);
1206
const double ty = *(double*)PyArray_GETPTR2(object, 1, 2);
0 commit comments