上一页 1 ··· 3 4 5 6 7
摘要: 1.UnQuaEqu.py import turtle turtle.speed(0) turtle.delay(0) turtle.tracer(False) i=-70 while(i<=110): i=i+0.1 turtle.penup() y = 0.02*(i-20)*(i-20)+50 阅读全文
posted @ 2021-11-23 13:10 TDTX 阅读(676) 评论(0) 推荐(0) 编辑
摘要: 1.CardioidLine.py import math import turtle i=0 turtle.speed(0) turtle.delay(0) #turtle.tracer(False) while(i<=2*3.1415926): p=80*(1-math.cos(i)) x=p* 阅读全文
posted @ 2021-11-23 11:03 TDTX 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 博客园-首篇留念 1.第一次来到博客园发布博客,留念! 2.分享与交流自己的感悟和思维。 阅读全文
posted @ 2021-11-23 10:31 TDTX 阅读(32) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7