(l, n)
| 44 | rt(144) |
| 45 | |
| 46 | def inflatekite(l, n): |
| 47 | if n == 0: |
| 48 | px, py = pos() |
| 49 | h, x, y = int(heading()), round(px,3), round(py,3) |
| 50 | tiledict[(h,x,y)] = True |
| 51 | return |
| 52 | fl = f * l |
| 53 | lt(36) |
| 54 | inflatedart(fl, n-1) |
| 55 | fd(l) |
| 56 | rt(144) |
| 57 | inflatekite(fl, n-1) |
| 58 | lt(18) |
| 59 | fd(l*d) |
| 60 | rt(162) |
| 61 | inflatekite(fl, n-1) |
| 62 | lt(36) |
| 63 | fd(l) |
| 64 | rt(180) |
| 65 | inflatedart(fl, n-1) |
| 66 | lt(36) |
| 67 | |
| 68 | def inflatedart(l, n): |
| 69 | if n == 0: |
no test coverage detected
searching dependent graphs…