You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Digging into the Circle object, I think the problem is that grids are (unintuitively) defined where index [0] is y and index [1] is x, however the Circle object defines them the other way round.
Thus, the use of Circle in certain calculation is likely incorrect.
The text was updated successfully, but these errors were encountered:
I was trying to use the
ShapeSolver
to compute points within aCircle
.When I used this API:
I did not compute solutions which matched the
PointSolver
, but instead were quite different.When I use this API (swapping
y
andx
I get a good solution:Digging into the
Circle
object, I think the problem is that grids are (unintuitively) defined where index [0] is y and index [1] is x, however theCircle
object defines them the other way round.Thus, the use of
Circle
in certain calculation is likely incorrect.The text was updated successfully, but these errors were encountered: