c语言sscanf函数的用法是什么
266
2022-09-04
使用turtle画按钮
#import turtle as t# 获取当前屏幕src=t.getscreen()# src.setup(480,360)# src.delay(0)def goto_s(ct,x,y): ct.penup() ct.goto(x,y) ct.pendown()# 获取当前鼠标位置def cursor_x_y(event): # 判断鼠标范围是不是在按钮上就要将按钮进行和原来的坐标进行转换 # 获得当前屏幕大小计算自己的位置 # src=t.getscreen() # print(src.screensize()) print(src.canvheight) print(event.x) print(event.y)# 参数height=20width=40width-=heightr=height//2if height%2!=0: print("不可")if width==0: print("按钮是个圆")out_line_color="red"button_color="yellow"x=10y=10# 自定义形状goto_s(t,x,y)t.hideturtle()t.speed(100)t.color(out_line_color,button_color)t.begin_fill()t.circle(r,180)t.forward(width)t.circle(r,180)t.forward(width)t.end_fill()src.cv.bind("
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~