Question: Please answer in Python and please do NOT use turtle. Using Turtle will NOT gain full credits to the problem!! Answer ASAP if you can!!
Please answer in Python and please do NOT use turtle. Using Turtle will NOT gain full credits to the problem!! Answer ASAP if you can!!



Kinking polygons To kink a polygon, we simply kink every one of its segments. It looks like this. If the basic polygon is: [14] poly1 = [(0, 0), (1, 2), (2, 0)] draw_polygon(*polyi) 2.00 175 150 125 1.00 0.75 0.50 0.25 0.00 0.0 0.5 10 1.5 20 Then its kinked version has to look like this: 2.0 15 10 0.5 0.0 -0.5 0.0 0.5 10 15 2.0 9 [15] def kink_polygon(poly): # YOUR CODE HERE Os File "zipython-input-15-04f63d0230df>", line 2 # YOUR CODE HERE A SyntaxError: unexpected EOF while parsing SEARCH STACK OVERFLOW O [ ] # You can use this space to debug your code. Os # YOUR CODE HERE Let us check that the solution works as intended. Os O [] poly1 = [(0, 0), (1, 2), (2, 0)] poly2 = kink_polygon (polyi) draw_polygon(*poly2)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
