Return true/false to indicate if point is balanced (we define balanced for this problem that as when x is equal to y)
isAtOrigin
Return true if both x and y are zero
reset
Receives two params both booleans with names "resetX" and "resetY". If "resetX" is true, set "x" to zero. Likewise for "resetY" with "y". Return true if both x and y are zero
print
Same method header as the Rectangle "print" method. If option is false, just print x and y. If true, use your imagination for what to print about the point. Include programming logic.
isRightOf
Receives param otherPoint. Return true/false to indicate if this point is right of otherPoint.
isRightAndAbove
Receives param otherPoint. Return true/false to indicate if this point is right and above otherPoint.
isInside
return true if point is inside the rectangle defined by the params. If the point is on the edge of the rectangle, call it "inside". The params are all type "int" and are named "leftX", "topY", "width", "height". They define the rectangle. See sketches below for more information.