Question: Python Circles Implement a sub-class called circ which draws circles. Your class should be defined with the line below. class circ(shape): A sub-class for circle
Python
Circles Implement a sub-class called circ which draws circles. Your class should be defined with the line below. class circ(shape): """A sub-class for circle shapes""" Your circ class should have a new variable: extent - for the portion of the circle to draw. Your new class should have the following methods: get_extent() set_extent(theta) You should write code to produce an image which draws circles which are not all full 360 degrees.
Notes:
You should be careful when testing this because the partial circles change the turtles heading. after each draw, it may be useful to use turtle.heading(0) to have the turtle face east again.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
