Forgot password?
 Create new account
View 205|Reply 3

绘图海龟

[Copy link]

3146

Threads

8493

Posts

610K

Credits

Credits
66158
QQ

Show all posts

hbghlyj Posted at 2022-7-29 05:21:04 |Read mode
Logo (programming language)
语言家族   Lisp
設計者      Wally Feurzeig, Seymour Papert, Cynthia Solomon
发行时间   1967年
Wikipedia
Online LOGO
Logo Programming
Turtle Academy

GeoGebra turtle graphics
wiki.geogebra.org/en/Tutorial:GeoGebra_Turtle
geogebra.org/m/RSaep6ne
geogebra.org/m/qarxbs9f
geogebra.org/m/P66VNY3n
help.geogebra.org/topic/turtle-graphics-and-scratch
Inviluppenephroid1[1].gif

3146

Threads

8493

Posts

610K

Credits

Credits
66158
QQ

Show all posts

 Author| hbghlyj Posted at 2022-7-29 05:22:21
Python turtle module
turtle — Turtle graphics
The Beginner's Guide to Python Turtle
Turtle Programming in Python
PythonTurtle

Example
$type Recursive Koch.py (411 Bytes, Downloads: 32)
  1. import turtle
  2. def Recursive_Koch(length, depth):
  3.      if depth == 0:
  4.           turtle.forward(length)
  5.      else:
  6.           Recursive_Koch(length, depth-1)
  7.           turtle.right(60)
  8.           Recursive_Koch(length, depth-1)
  9.           turtle.left(120)
  10.           Recursive_Koch(length, depth-1)
  11.           turtle.right(60)
  12.           Recursive_Koch(length, depth-1)
  13. Recursive_Koch(5, 4)
  14. turtle.done()
Copy the Code

5a0b36dda144ad345af6402adda20cf430ad85ff(1).jpg
5a0b36dda144ad345af6402adda20cf430ad85ff(1).jpg
KochTurtleAnim[1].gif

3146

Threads

8493

Posts

610K

Credits

Credits
66158
QQ

Show all posts

 Author| hbghlyj Posted at 2022-7-29 06:26:30
  1. python -m turtledemo
Copy the Code

bytedesign
7-Figure4-1.png

701

Threads

110K

Posts

910K

Credits

Credits
94172
QQ

Show all posts

kuing Posted at 2022-7-29 13:27:55
哈,小海龟画图,我记得我小学的时候就在电脑课上学过😄

手机版Mobile version|Leisure Math Forum

2025-4-20 22:09 GMT+8

Powered by Discuz!

× Quick Reply To Top Return to the list