Question: In the class lecture exercises, we wrote a function to determine whether or not a given point is inside of a rectangle. For this question,

In the class lecture exercises, we wrote a function to determine whether or not a given point is inside of a rectangle. For this question, you will write a function that determines whether or not a given point is inside of a circle instead. Your program here will not be an interactive program. You will just need to write a single function definition and a few lines of code that test that function. Your main goal is to write a function called inside_circle) according to the following specification: the function should have five separate numeric parameters: - x and y the coordinates of an arbitrary point - circle_x and circle-y the coordinates of the center of a circle - radius: the radius of the circle the function should return a Boolean value: - True if the point (x, y) is inside the circle False if the point (x y) is outside the circle Once you have completed your function, include four function calls in your code to test your function and display the results to the console using print ). Each function call must use a different set of arguments. Select the numerical values for these tests such that you have two tests for when the point is inside the circle and two tests for when the point is outside the circle. Make sure to clearly indicate which tests are which, using either more print O statements or just comments in your code. Hint Processing has a built-in function called dist) that returns the distance between two points (it is just an implementation of the distance formula that you may recall from math class). Think carefully about how such a function could be useful for solving this
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
