20.17. Exercises¶
-
Add a method
reflect_xto Point which returns a new Point, one which is the reflection of the point about the x-axis. For example,Point(3, 5).reflect_x()is (3, -5)
-
Add a method called
movethat will take two parameters, call themdxanddy. The method will cause the point to move in the x and y direction the number of units given. (Hint: you will change the values of the state of the point)