六角形
Posted r-jiushu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了六角形相关的知识,希望对你有一定的参考价值。
import turtle
L=50
N=6
jiaodu=180-360/(N)
tl=turtle.Turtle()
#tl.speed(0)
tl.screen.delay(0)
def f1():
tl.fillcolor("yellow")
tl.begin_fill()
for i in range(3):
tl.fillcolor()
tl.forward(L)
tl.right(120)
tl.end_fill()
for i in range(N):
tl.left(jiaodu)
tl.penup()
tl.forward(L)
tl.pendown()
tl.right(180)
f1()
以上是关于六角形的主要内容,如果未能解决你的问题,请参考以下文章
R语言使用hexSticker包将lattice包可视化的结果转换为六角图(六角贴六角形贴纸lattice plot to hex sticker)