Skip to content

Commit

Permalink
Switching b and c in _transformation_converter to fix issue matplotli…
Browse files Browse the repository at this point in the history
  • Loading branch information
Michiel de Hoon authored and Michiel de Hoon committed Apr 14, 2013
1 parent 9e477b3 commit 584ca7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/_macosx.m
Expand Up @@ -1199,8 +1199,8 @@ static int _transformation_converter(PyObject* object, void* pointer)
return 0;
}
const double a = *(double*)PyArray_GETPTR2(object, 0, 0);
const double b = *(double*)PyArray_GETPTR2(object, 0, 1);
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);
const double d = *(double*)PyArray_GETPTR2(object, 1, 1);
const double tx = *(double*)PyArray_GETPTR2(object, 0, 2);
const double ty = *(double*)PyArray_GETPTR2(object, 1, 2);
Expand Down

0 comments on commit 584ca7d

Please sign in to comment.