usingMaths.com
Demonstrating and showing pupils and students one application of Mathematics.







<< PreviousNext >>

Graphs like Python's "Turtle" Canvas



Cartesian Plane

The Cartesian Plane is the usual graph surface we are taught in school.
It consists of the x and y axes.

In Python, drawing can be done using a number of frameworks.

We will be using the Turtle framework as it is well documented in the Python Documentations.



Drawing on the Python Canvas

In Turtle, the canvas is set out like a graph book; and this graph book is plotted or drawn on using code.

Create a new python file; call it Dymetric.py.
Create a second python file; call it CanvasFeel.py.

Type out the adjoining Python / Turtle code to see what the canvas component looks like.









<< PreviousNext >>