Category: PYTHON
-
2019.06.04(am): How to draw star images with python turtle
code From: http://www.mrcolson.com/2015/12/09/Python-Art.html
-
2019.05.31(am): How to draw a spiral out of squares with python turtle
Today I used a Python Turtle to draw a square spiral. Below is a picture of the drawing. Yesterday I used Python for the base, because I forgot to develop Python in a virtual environment. So today I did not forget to activate the virtual environment. code
-
2019.05.30(am): What is turtle? How to make python turtle works in jupyter notebook
Turtle Graphics Turtle graphics is a popular way for introducing programming to kids. It was part of the original Logo programming language developed by Wally Feurzig and Seymour Papert in 1966. The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses tkinter for the underlying graphics, it needs a version of Python installed with Tk…
-
2019.03.06(pm) Voronoi sketch with python on Rhino
The Voronoi diagram is a picture in which the plane is divided into a set of closest points to a certain point. It is a pair relationship with the trine triangulation. It comes from the name of Georgy Feodosevich Voronoy. To draw a Voronoi diagram, first connect all the closest points of the points in…