If statements, any help is appreciated.
Create the draw method:
a. Write an if statement with a test of mousePressed:
i. Create a variable d of type float with a value of dist(mouseX, mousey, x, y).
ii. Write an if statement with a test of mouseButton equal to LEFT
1. Set the fill to a level of the variable leftInside.
2. Set the stroke to a level of the variable leftInside.
iii. Write an else statement:
1. Set the fill to a level of the variable rightInside.
2. Set the stroke to a level of the variable rightInside.
b. Write an else statement:
i. Write an if statement with a test of mouseButton equal to LEFT
1. Set the fill to a level of the variable leftOutside.
2. Set the stroke to a level of the variable leftOutside.
ii. Write an else statement:
1. Set the fill to a level of the variable rightOutside.
2. Set the stroke to a level of the variable rightOutside.
c. Draw an ellipse center on point (x, y) with a height and width of the variable radius.