玫瑰花

Posted 小小白-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了玫瑰花相关的知识,希望对你有一定的参考价值。

import turtle
import sys

turtle.down()
turtle.pencolor(1,0,0)


def leaf(startx ,starty , direction):
    turtle.up();
    turtle.goto(startx,starty)
    turtle.down()
    for i in range(125):
        if direction ==1:
            turtle.forward(2)
            turtle.right(1)
        else:
            turtle.forward(-2)
            turtle.right(-1)
    turtle.up();
    turtle.goto(startx,starty)
    turtle.down();
    for i in range(130):
        if direction ==1:
            turtle.forward(2)
            turtle.right(-1)
        else:
            turtle.forward(-2)
            turtle.right(1)

leaf(50,0,1)
leaf(0,50,1)
leaf(-50,0,1)
leaf(0,-50,1)

turtle.right(70)
turtle.forward(100)
turtle.done()

  

 

以上是关于玫瑰花的主要内容,如果未能解决你的问题,请参考以下文章

MATLAB 3D玫瑰花绘制(内附旋转版本)

MATLAB 3D玫瑰花绘制(内附旋转版本)

玫瑰庄园模式系统开发怎么样的?源代码

前端 玫瑰花小样式

玫瑰花的绘制

用python画一朵玫瑰花