码迷,mamicode.com
首页 > 其他好文 > 详细

五角星 六角形 叠加等边三角形绘制

时间:2020-03-15 19:12:22      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:turtle   forward   fill   nbsp   tle   hid   abs   color   begin   

五角星

from turtle import *

fillcolor(‘red‘)

hideturtle()

begin_fill()

while True:

    forward(200) 

    right(144)

    if abs(pos())<1:

        break

end_fill()

六角形

import turtle

turtle.left(30)
turtle.forward(144)

turtle.right(60)
turtle.forward(144)

turtle.right(60)
turtle.forward(144)

turtle.right(60)
turtle.forward(144)

turtle.right(60)
turtle.forward(144)

turtle.right(60)
turtle.forward(144)

turtle.forward(144)
turtle.right(120)
turtle.forward(144)

turtle.left(60)
turtle.forward(144)
turtle.right(120)
turtle.forward(144)

turtle.left(60)
turtle.forward(144)
turtle.right(120)
turtle.forward(144)

turtle.left(60)
turtle.forward(144)
turtle.right(120)
turtle.forward(144)

turtle.left(60)
turtle.forward(144)
turtle.right(120)
turtle.forward(144)

turtle.left(60)
turtle.forward(144)
turtle.right(120)
turtle.forward(144)

 

等边三角形

import turtle as t

t.setup(600, 600, None,None)

t.pu()

t.fd(-120)

t.pensize(5)

t.width(5)

t.pd()

t.fd(250)

t.seth(120)

t.fd(250)

t.seth(-120)

t.fd(250)

t.fd(250)

t.seth(0)

t.fd(250)

t.fd(250)

t.seth(120)

t.fd(250)

t.seth(-120)

t.fd(250)

t.seth(120)

t.fd(250)

 

 

五角星 六角形 叠加等边三角形绘制

标签:turtle   forward   fill   nbsp   tle   hid   abs   color   begin   

原文地址:https://www.cnblogs.com/gzzfh/p/12499046.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!