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
Currently the frontend checks if a path segment is constrained by checking that:
The end point is an array of length 2
Both X and Y components of that array are constrained
e.g. line(endAbsolute = [myX(), myY()] is fully constrained.
But this fails to recognize some kinds of fully-constrained lines. For example it wouldn't recognize that line(endAbsolute = myXY()) is fully constrained. Even though it's basically equivalent -- it's assigning the endpoint to a function's output.
Currently the frontend checks if a path segment is constrained by checking that:
e.g.
line(endAbsolute = [myX(), myY()]
is fully constrained.But this fails to recognize some kinds of fully-constrained lines. For example it wouldn't recognize that
line(endAbsolute = myXY())
is fully constrained. Even though it's basically equivalent -- it's assigning the endpoint to a function's output.This unblocks #5096
The text was updated successfully, but these errors were encountered: