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

绘制玫瑰花

时间:2017-10-31 14:16:07      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:begin   玫瑰花   技术   blog   com   src   set   div   ima   

技术分享

import turtle as t
t.begin_fill()
t.fillcolor("red")

t.setup(800,600,0,0)
t.speed(5)
t.penup()
t.goto(-70,180)
t.pendown()
t.circle(20,45)
t.circle(20,90)
t.circle(20,100)
t.circle(40,100)
t.circle(30,100)
t.circle(60,180)
t.circle(60,60)
t.right(180)
t.fd(60)
t.left(120)
t.circle(150,100)
t.left(30)
t.circle(150,100)
t.left(100)
t.fd(70)
t.penup()
t.goto(-70,180)
t.pendown()
t.end_fill()
t.penup()
t.goto(-38,0)
t.pendown()
t.left(90)


t.pensize(5)
t.circle(-120,75)
t.circle(120,75)
t.pensize(1)

t.begin_fill()
t.fillcolor("green")

t.penup()
t.goto(-2,-90)
t.pendown()
t.left(180)
t.circle(50,75)
t.circle(-50,75)
t.left(160)
t.circle(100,76)
t.penup()
t.goto(-2,-90)
t.pendown()
t.end_fill()
t.begin_fill()
t.fillcolor("green")


t.speed(5)
t.right(250)
t.penup()
t.goto(-35,-180)
t.pendown()
t.left(180)
t.circle(50,75)
t.circle(-50,75)
t.left(160)
t.circle(100,76)
t.penup()
t.goto(-35,-180)
t.pendown()
t.end_fill()

 

绘制玫瑰花

标签:begin   玫瑰花   技术   blog   com   src   set   div   ima   

原文地址:http://www.cnblogs.com/bjhh/p/7760963.html

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