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
BrainFrame client will check if the polygon is valid after each point is drawn. This makes it hard to draw a complicated polygon, for example, a 凹 shape polygon, because some lines will be crossing in the middle of the drawing. So maybe check the polygon is valid after the user clicks the Confirm button will be more ideal.
The text was updated successfully, but these errors were encountered:
We have the screen draw the would-be polygon while the user is hovering before adding a point by clicking.
We could only draw the complete polygon (i.e. with the first and last points connected) if the polygon is valid. If the click would create a (temporarily) invalid polygon, it would just be adding a single line segment.
Then, if the user clicks to add the point, the drawn polygon (now without hovering) would also be incomplete and the button to confirm would be disabled.
BrainFrame client will check if the polygon is valid after each point is drawn. This makes it hard to draw a complicated polygon, for example, a
凹
shape polygon, because some lines will be crossing in the middle of the drawing. So maybe check the polygon is valid after the user clicks theConfirm
button will be more ideal.The text was updated successfully, but these errors were encountered: