首页 > 后端开发 > Python教程 > python如何绘制iPhone手机图案?(代码示例)

python如何绘制iPhone手机图案?(代码示例)

青灯夜游
发布: 2018-10-27 16:30:29
转载
7093 人浏览过

本篇文章给大家带来的内容是介绍python如何绘制iPhone手机图案?(代码示例)。有一定的参考价值,有需要的朋友可以参考一下,希望对你们有所帮助。

虽然我用不起苹果手机,但我可以用python画出来!

python如何绘制iPhone手机图案?(代码示例)

环境准备

运行平台: Windows

Python版本: Python 3.6.4

IDE: Pycharm或自带的IDLE

绘制代码

import turtle
def round_rectangle(length,high,cor_angle,cor_rad): 

 for i in range(2): 
 turtle.fd(high) 
 turtle.circle(cor_rad,cor_angle) 
 turtle.fd(length) 
 turtle.circle(cor_rad,cor_angle)

def main(): 
 turtle.setup(1300,800,0,0)#启动窗口的大小,左上角右上角坐标 
 pythonsize=2 
 turtle.pensize(pythonsize)#运行宽度 
 turtle.speed(10) 
 turtle.seth(90)#启动时运行的方向(角度) 

 #最外边框 
 turtle.pencolor("#8E8e8e") 
 turtle.penup() 
 turtle.goto(202,-202) 
 turtle.pendown() 
 round_rectangle(244,484,90,30) 
 #填充 
 turtle.penup() 
 turtle.goto(200,-200) 
 turtle.pendown() 
 turtle.begin_fill() 
 turtle.color("#F0F0F0") 
 round_rectangle(240,480,90,30) 
 turtle.end_fill() 

 #手机屏 
 turtle.pencolor("black")#(#3000440) 
 turtle.penup() 
 turtle.goto(185,-150) 
 turtle.pendown() 
 turtle.begin_fill() 
 turtle.color("black") 
 round_rectangle(270,380,90,0) 
 turtle.end_fill() 

 #听筒 
 turtle.penup() 
 turtle.goto(80,265) 
 turtle.pendown() 
 turtle.begin_fill() 
 turtle.color("#9d9d9d") 
 round_rectangle(60,4,90,1) 
 turtle.end_fill() 

 #听筒上面的小黑 
 turtle.penup() 
 turtle.goto(55,290) 
 turtle.pendown() 
 turtle.begin_fill() 
 turtle.color("#3c3c3c") 
 turtle.circle(4,360) 
 turtle.end_fill() 

 #摄像头 
 turtle.penup() 
 turtle.goto(0,265) 
 turtle.pendown() 
 turtle.begin_fill() 
 turtle.color("#3c3c3c") 
 turtle.circle(6,360) 
 turtle.end_fill() 


 #home健 
 turtle.pencolor("#9d9d9d")#(#3000440) 
 turtle.penup() 
 turtle.goto(75,-185) 
 turtle.pendown() 
 turtle.circle(25,360) 


 #home健图案 
 turtle.pencolor("#9d9d9d")#(#3000440) 
 turtle.penup() 
 turtle.goto(60,-190) 
 turtle.pendown() 
 turtle.hideturtle()

main()
登录后复制

运行结果:

python如何绘制iPhone手机图案?(代码示例)

缩略图:

python如何绘制iPhone手机图案?(代码示例)

以上是python如何绘制iPhone手机图案?(代码示例)的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:cnblogs.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板