Adafruit_CircuitPython_turtle/examples/turtle_koch.py
2023-04-19 10:55:38 -07:00

42 lines
815 B
Python

# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
# SPDX-License-Identifier: MIT
# pylint: disable=unnecessary-lambda-assignment
import board
from adafruit_turtle import turtle
def f(side_length, depth, generation):
if depth == 0:
turtle.forward(side_length)
return
side = lambda: f(side_length / 3, depth - 1, generation + 1)
side()
turtle.left(60)
side()
turtle.right(120)
side()
turtle.left(60)
side()
turtle = turtle(board.DISPLAY)
unit = min(board.DISPLAY.width / 3, board.DISPLAY.height / 4)
top_len = unit * 3
turtle.penup()
turtle.goto(-1.5 * unit, unit)
turtle.pendown()
num_generations = 3
top_side = lambda: f(top_len, num_generations, 0)
top_side()
turtle.right(120)
top_side()
turtle.right(120)
top_side()
while True:
pass