找回密码
 快速注册
搜索
查看: 47|回复: 3

绘图海龟

[复制链接]

3149

主题

8386

回帖

6万

积分

$\style{scale:11;fill:#eff}꩜$

积分
65391
QQ

显示全部楼层

hbghlyj 发表于 2022-7-29 05:21 |阅读模式
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

3149

主题

8386

回帖

6万

积分

$\style{scale:11;fill:#eff}꩜$

积分
65391
QQ

显示全部楼层

 楼主| hbghlyj 发表于 2022-7-29 05:22
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, 下载次数: 0)
  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()
复制代码

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

3149

主题

8386

回帖

6万

积分

$\style{scale:11;fill:#eff}꩜$

积分
65391
QQ

显示全部楼层

 楼主| hbghlyj 发表于 2022-7-29 06:26
  1. python -m turtledemo
复制代码

bytedesign
7-Figure4-1.png

730

主题

1万

回帖

9万

积分

积分
93613
QQ

显示全部楼层

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

手机版|悠闲数学娱乐论坛(第3版)

GMT+8, 2025-3-4 15:32

Powered by Discuz!

× 快速回复 返回顶部 返回列表