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
I propose adding the following new methods to the Line class:
flip_x() -> flips the line along the x-axis
flip_y() -> flips the line along the y-axis
_ip versions
This proposal should follow issue #182, where we rename the following methods:
Line.flip() -> flip_endpoints()
Line.flip_ip() -> flip_endpoints_ip()
This should be done to avoid confusion with line flipping along the x and y axis.
Alternatively, we could consider adding a general flip()/flip_ip() method that takes an axis as an argument. This would allow users to flip the line along any arbitrary axis.
The text was updated successfully, but these errors were encountered:
I propose adding the following new methods to the
Line
class:flip_x()
-> flips the line along the x-axisflip_y()
-> flips the line along the y-axisThis proposal should follow issue #182, where we rename the following methods:
Line.flip()
->flip_endpoints()
Line.flip_ip()
->flip_endpoints_ip()
This should be done to avoid confusion with line flipping along the x and y axis.
Alternatively, we could consider adding a general
flip()
/flip_ip()
method that takes an axis as an argument. This would allow users to flip the line along any arbitrary axis.The text was updated successfully, but these errors were encountered: