Function: draw_trampoline
Inputs: This function takes in four parameters:
t - an active Turtle variable
x - an integer representing the start x Coordinate
y - an integer representing the starting Y Coordinate
radius - an integer representing the radius of a circle
Actions: Navigate the turtle, t, to the location (x, Y) and draw a circle using turtle graphics with the specified radius to represent the gym's new fitness trampoline
Outputs: No values are returned.
Function: draw_weight_machine
Inputs: This function takes in four parameters:
t - an active Turtle variable
x - an integer representing the start x Coordinate
y - an integer representing the starting Y Coordinate
length - an integer representing the length of the long side of the rectangle
width - an integer representing the length of the short side of the rectangle
Actions: Navigate the turtle, t, to the location (x, Y) and draw a rectangle using turtle graphics with the specified length and width to represent the gym's new weight machine
Outputs: No values are returned.
Function: draw_pull_rack
Inputs: This function takes in four parameters:
t - an active Turtle variable
x - an integer representing the start x Coordinate
y - an integer representing the starting Y Coordinate
length - an integer representing the length of each side of the pentagon
Actions: Navigate the turtle, t, to the location (x, Y) and draw a pentagon using turtle graphics with the specified length to represent the gym's new pull-up rack.