-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgraphics.py
85 lines (68 loc) · 2.49 KB
/
graphics.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# This code is made by MRayan Asim
import turtle as tu
# Create a turtle object
fractal_turtle = tu.Turtle()
# Set up the screen
screen = tu.Screen()
screen.bgcolor("black") # Screen Bg color
screen.title("Fractal Tree Pattern")
fractal_turtle.left(90) # moving the turtle 90 degrees towards the left
fractal_turtle.speed(20) # setting the speed of the turtle
# Recursive function to draw the fractal tree
def draw_fractal_tree(length):
if length < 10:
return
else:
fractal_turtle.pensize(2) # Setting Pensize
fractal_turtle.pencolor("yellow") # Setting Pencolor as yellow
fractal_turtle.forward(length) # moving the turtle forward by 'length'
fractal_turtle.left(30) # moving the turtle 30 degrees towards the left
draw_fractal_tree(
3 * length / 4
) # drawing a fractal on the left with 3/4th of its length
fractal_turtle.right(60) # moving the turtle 60 degrees towards the right
draw_fractal_tree(
3 * length / 4
) # drawing a fractal on the right with 3/4th of its length
fractal_turtle.left(30) # moving the turtle 30 degrees towards the left
fractal_turtle.pensize(2)
fractal_turtle.backward(
length
) # returning the turtle back to its original position
draw_fractal_tree(20) # drawing the fractal tree 20 times
fractal_turtle.right(90)
fractal_turtle.speed(2000)
# Recursive function to draw the fractal tree
def draw_fractal_tree(length):
if length < 10:
return
else:
fractal_turtle.pensize(2)
fractal_turtle.pencolor("magenta") # magenta
fractal_turtle.forward(length)
fractal_turtle.left(30)
draw_fractal_tree(3 * length / 4)
fractal_turtle.right(60)
draw_fractal_tree(3 * length / 4)
fractal_turtle.left(30)
fractal_turtle.pensize(2)
fractal_turtle.backward(length)
draw_fractal_tree(20)
fractal_turtle.left(270)
fractal_turtle.speed(2000)
# Recursive function to draw the fractal tree
def draw_fractal_tree(length):
if length < 10:
return
else:
fractal_turtle.pensize(2)
fractal_turtle.pencolor("red") # red
fractal_turtle.forward(length)
fractal_turtle.left(30)
draw_fractal_tree(3 * length / 4)
fractal_turtle.right(60)
draw_fractal_tree(3 * length / 4)
fractal_turtle.left(30)
fractal_turtle.pensize(2)
fractal_turtle.backward(length)
draw_fractal_tree(20)