Add files via upload

This commit is contained in:
themixray 2021-11-07 21:46:33 +03:00 committed by GitHub
parent abef24e1aa
commit 815a7bea90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 1380 additions and 91 deletions

31
build/lib/pygwin/rect.py Normal file
View file

@ -0,0 +1,31 @@
from pygwin._pg import pg
class rect:
def __init__(self,x,y,w,h):
self.x = x
self.y = y
self.w = w
self.h = h
self._rect = pg.Rect(x,y,w,h)
def width():
def fget(self):
return self.w
def fset(self, value):
self.w = value
def fdel(self):
pass
return locals()
width = property(**width())
def height():
def fget(self):
return self.h
def fset(self, value):
self.h = value
def fdel(self):
pass
return locals()
height = property(**height())
def collide(self, x):
return self._rect.colliderect(x._rect_rect)
def contains(self, x, y):
return self._rect.collidepoint(x,y)