import turtle r=eval(input("半径:")) x=eval(input("个数:")) c=input("颜色:") turtle.pencolor(c) turtle.pensize(3) for i in range(x): turtle.circle(r) turtle ...
分类:
其他好文 时间:
2020-10-06 21:13:03
阅读次数:
43
#绘制大耳朵兔 from turtle import * speed(10) #小兔的面部 color('pink') pensize(5) circle(radius=100)#脸 #眼睛 pencolor('black') #左眼 pu() goto(-45,92) pd() begin_fil ...
分类:
其他好文 时间:
2020-09-23 23:55:28
阅读次数:
39
from turtle import * screensize(500,500) #【头部轮廓】 pensize(5) home() seth(0) pd() color('black') circle(20,80)#0 circle(200,30)#1 circle(30,60)#2 circle ...
分类:
其他好文 时间:
2020-09-23 23:00:13
阅读次数:
33
#如果通过from trutle import*的方式下面可以直接使用turtle的函数 import turtle #设置画布的大小和位置(相对左上角屏幕) turtle.setup(650,350,200,200) turtle.penup() #penuo&pendown turtle.pen ...
分类:
其他好文 时间:
2020-09-21 11:37:48
阅读次数:
47
目录 引子 Line/Point Line/Circle Line/Line Line/Rectangle 参考资料 引子 在 Collision Detection :Rectangle 中主要介绍了矩形相关的碰撞检测,接着来看看直线的情况。 以下示例未做兼容性检查,建议在最新的 Chrome 浏 ...
分类:
其他好文 时间:
2020-09-18 00:52:10
阅读次数:
31
自定义组件 navbarvue (胶囊底部高度 - 状态栏的高度) + (胶囊顶部高度 - 状态栏内的高度) = 导航栏的高度 <template> <view class="navbar"> <view class="navbar-fixed"> <!-- 状态栏小程序撑起高度 --> <view ...
分类:
微信 时间:
2020-09-18 00:23:26
阅读次数:
73
一.发送效果 HTML <div id="send-btn"> <button> // 这里是一个svg的占位 Send </button> </div> CSS #send-btn{ display: flex; align-items: center; justify-content: cent ...
分类:
Web程序 时间:
2020-09-09 18:51:19
阅读次数:
50
知识点一:渐变 线性渐变 background: linear-gradient(red,blue); background: linear-gradient(red 10%,blue 90%); background: linear-gradient(to right, red 10%,blue ...
分类:
Web程序 时间:
2020-08-26 18:31:25
阅读次数:
62
Flutter之Decoration(边框、圆角、阴影、形状、渐变、背景图像等) 1 继续关系: BoxDecoration:实现边框、圆角、阴影、形状、渐变、背景图像 ShapeDecoration:实现四个边分别指定颜色和宽度、底部线、矩形边色、圆形边色、体育场(竖向椭圆)、 角形(八边角)边色 ...
分类:
其他好文 时间:
2020-08-25 18:45:45
阅读次数:
66
需求: 某项目中,我们的代码使用了三个不同库中的图形类,Circle,Triangle,Rectangle 他们都有一个获取图形面积的接口(方法)但是接口名字不同,我们实现一个统一获取面积的函数,使用每种方法名进行尝试,调用相应类的接口 思路: 1、使用内置函数getattr,通过名称在实例上获取方 ...
分类:
其他好文 时间:
2020-07-29 09:58:13
阅读次数:
83