Revision 76f9e2e4fb3f changed the pieSliceIndexAtAngle method (CPTPieChart.m)
in an incompatible way. Namely, this call:
[self pieSliceValueForRadians:angle];
became this:
[self normalizedPosition:( angle / CPTFloat(2.0 * M_PI) )];
These statements are not equivalent. The correct call should be:
[self normalizedPosition:angle];
Original issue reported on code.google.com by tre...@vocaro.com on 16 Dec 2012 at 1:35
Original issue reported on code.google.com by
tre...@vocaro.com
on 16 Dec 2012 at 1:35