On Mon, Jun 11, 2012 at 12:23 PM, Gustavo Goretkin <
gus...@gm...> wrote:
> The problem is that the function in _path.cpp expects a path radius
> argument, r.
>
> Here is the signature:
> point_in_path(double x, double y, double r, PathIterator& path,
> const agg::trans_affine& trans)
>
> but the invocation in python looks like this:
>
> point_in_path(point[0], point[1], self, transform)
>
>
Unless someone undid the fix, this was already fixed in master, I believe.
The current python invocation is:
result = point_in_path(point[0], point[1], radius, self, transform)
Ben Root
|