Thanks to visit codestin.com Credit goes to github.com
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.
2 parents b0b5ec7 + 584ca7d commit c1d18f1Copy full SHA for c1d18f1
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