美文网首页
turtle.seth函数

turtle.seth函数

作者: 看远方的星 | 来源:发表于2021-08-03 09:59 被阅读0次
    seth函数角度的方向

    画笔停止后,默认回到0度方向也就是向东

    绘制上图的代码:

    t.seth(0)
    t.fd(100)
    t.write("0-东")
    t.home()
    
    t.seth(90)
    t.fd(100)
    t.write("90-北")
    t.home()
    
    t.seth(180)
    t.fd(100)
    t.write("180-西")
    t.home()
    
    t.seth(270)
    t.fd(100)
    t.write("270-南")
    t.home()
    

    例:画出一个等边三角形,使用seth函数:

    import turtle as t
    for i in range(1,4):
        t.fd(100)
        t.seth(i*120)
    
    等边三角形

    相关文章

      网友评论

          本文标题:turtle.seth函数

          本文链接:https://www.haomeiwen.com/subject/ulghvltx.html