叠加等边三角形绘制
Posted cute-pig
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了叠加等边三角形绘制相关的知识,希望对你有一定的参考价值。
import turtle as t t.setup(650,500,250,250) t.penup() t.fd(150) t.pendown() t.pensize(15) t.color("purple") t.fd(100) t.seth(-120) t.fd(100) t.seth(120) t.fd(100) t.seth(-120) t.fd(100) t.seth(0) t.fd(200) t.seth(120) t.fd(200) t.seth(-120) t.fd(100) t.done()
以上是关于叠加等边三角形绘制的主要内容,如果未能解决你的问题,请参考以下文章