PYGLET——形状高度/半径
在本文中,我们将看到如何在Python中访问 PYGLET 模块中形状的高度。 Pyglet 是一个易于使用但功能强大的库,用于开发视觉丰富的 GUI 应用程序,如游戏、多媒体等。窗口是占用操作系统资源的“重量级”对象。 Windows 可能显示为浮动区域,也可以设置为填充整个屏幕(全屏)。形状是对象或其外部边界、轮廓或外表面的形式,与其他属性(例如颜色、纹理或材料类型)相反。许多形状是在 pyglet 的形状模块的帮助下绘制的。高度是垂直距离的度量,可以是垂直范围(某物或某人有多“高”)或垂直位置(一个点有多“高”)。对于像圆高度这样的形状将是 2*radius 圆将没有属性高度
我们可以在下面给出的命令的帮助下创建一个窗口
# creating a window
window = pyglet.window.Window(width, height, title)
In order to create window we use height or radiusattribute with the shape
Syntax : shape.height or shape.radius
Argument : It takes no argument
Return : It returns integer
下面是实现
Python3
# importing pyglet module
import pyglet
# importing shapes from the pyglet
from pyglet import shapes
# width of window
width = 500
# height of window
height = 500
# caption i.e title of the window
title = "Geeksforgeeks"
# creating a window
window = pyglet.window.Window(width, height, title)
# creating a batch object
batch = pyglet.graphics.Batch()
# properties of rectangle
# co-ordinates of rectangle
co_x = 150
co_y = 150
# width of rectangle
width = 250
# height of rectangle
height = 150
# color = green
color = (50, 225, 30)
# creating a rectangle
rec = shapes.Rectangle(co_x, co_y, width, height, color = color, batch = batch)
# changing opacity of the rect1
# opacity is visibility (0 = invisible, 255 means visible)
rec.opacity = 180
# creating another rectangle with properties
# x, y co ordinate : 50, 250
# width, height of rectangle : 300, 200
# color = red
color = (255, 25, 25)
# properties of circle
# co-ordinates of circle
circle_x = 200
circle_y = 300
# size of circle
# color = green
size_circle = 100
# creating a circle
circle = shapes.Circle(circle_x, circle_y, size_circle, color =(250, 22, 30), batch = batch)
# changing opacity of the circle1
# opacity is visibility (0 = invisible, 255 means visible)
circle.opacity = 170
# window draw event
@window.event
def on_draw():
# clear the window
window.clear()
# draw the batch
batch.draw()
# accessing height of rectangle
value_rec = rec.height
# printing value
print("Rectangle : ", end = "")
print(value_rec)
# accessing radius of circle
value_cir = circle.radius
# printing value
print("Circle : ", end = "")
print(value_cir)
# run the pyglet application
pyglet.app.run()
输出 :
Rectangle : 150
Circle : 100