The figure above shows, we can draw a simple heart shape with 4 segments: 2 lines and 2 arcs. We can continuously draw these 4 segments without lifting up the
The figure above shows, we can draw a simple heart shape with 4 segments: 2 lines and 2 arcs. We can continuously draw these 4 segments without lifting up the
Draw the following overlapping circles. Please note that each circle passes through the center of the other two circles. Solution We observe that the centers of the three circles form
Use recursion to draw the following snowflake shape generated from 6 sub-fractals of splitting lines. The following figures show recursion depths ranging from 0 to 4. Solution: To solve this
In this tutorial we are going show you how to draw a basic football shape with Python’s Turtle graphics library. As seen in the next figure, football shape has two
In a previous tutorial we explained how to round a rectangle with Python Turtle. In this tutorial, we are going to show you how to make any corner round. Knowledge
In this tutorial we are going to show how to draw rectangles or squares with round corners. We will start by drawing the bottom straight-line with blue color. The following
In this tutorial, we are you going show how to implement Conway’s Game of Life simulation with Python Turtle. Step 1. Drawing The Grid This step should be straightforward. We
In this tutorial we are going to show how to draw random islands with Python Turtle. The idea is similar to the Koch Snowflake project with added randomness. Instead of
Let’s take a look at the the following unfilled cloud picture. As you can see, we drew the cloud just by drawing many arcs of different sizes and extent. The
In this tutorial we are show you how to draw random mountain curves: The general idea is to define a recursive function that draw mountain curve given two end points.