Delete .venv directory
This commit is contained in:
committed by
GitHub
parent
7795984d81
commit
5a2693bd9f
@@ -1 +0,0 @@
|
||||
pip
|
@@ -1,127 +0,0 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: PyRect
|
||||
Version: 0.1.4
|
||||
Summary: PyRect is a simple module with a Rect class for Pygame-like rectangular areas.
|
||||
Home-page: https://github.com/asweigart/pyrect
|
||||
Author: Al Sweigart
|
||||
Author-email: al@inventwithpython.com
|
||||
License: BSD
|
||||
Keywords: pygame rect rectangular rectangle area
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 4 - Beta
|
||||
Classifier: Environment :: Win32 (MS Windows)
|
||||
Classifier: Environment :: MacOS X
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Operating System :: OS Independent
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 2
|
||||
Classifier: Programming Language :: Python :: 2.5
|
||||
Classifier: Programming Language :: Python :: 2.6
|
||||
Classifier: Programming Language :: Python :: 2.7
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.1
|
||||
Classifier: Programming Language :: Python :: 3.2
|
||||
Classifier: Programming Language :: Python :: 3.3
|
||||
Classifier: Programming Language :: Python :: 3.4
|
||||
Classifier: Programming Language :: Python :: 3.5
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
|
||||
======
|
||||
PyRect
|
||||
======
|
||||
PyRect is a simple module with a Rect class for Pygame-like rectangular areas.
|
||||
|
||||
This module is like a stand-alone version of Pygame's Rect class. It is similar to the Rect module by Simon Wittber, but compatible with both Python 2 and 3.
|
||||
|
||||
Currently under development, though the basic features work.
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
``pip install rect``
|
||||
|
||||
Quickstart Guide
|
||||
================
|
||||
|
||||
First, create a Rect object by providing the XY coordinates of its top-left corner, and then the width and height:
|
||||
|
||||
>>> import pyrect
|
||||
>>> r = pyrect.Rect(0, 0, 10, 20)
|
||||
|
||||
There are several attributes that are automatically calculated (they have the same names as Pygame's Rect objects):
|
||||
|
||||
>>> r.width, r.height, r.size
|
||||
(10, 20, (10, 20))
|
||||
>>> r. left
|
||||
0
|
||||
>>> r.right
|
||||
10
|
||||
>>> r.top
|
||||
0
|
||||
>>> r.bottom
|
||||
20
|
||||
>>> r.center
|
||||
(5, 10)
|
||||
>>> r.topleft
|
||||
(0, 0)
|
||||
>>> r.topright
|
||||
(10, 0)
|
||||
>>> r.midleft
|
||||
(0, 10)
|
||||
|
||||
Changing these attributes re-calculates the others. The top-left corner is anchored for any growing or shrinking that takes place.
|
||||
|
||||
>>> r.topleft
|
||||
(0, 0)
|
||||
>>> r.left = 100
|
||||
>>> r.topleft
|
||||
(100, 0)
|
||||
>>> r.topright
|
||||
(110, 0)
|
||||
>>> r.width = 30
|
||||
>>> r.topright
|
||||
(130, 0)
|
||||
|
||||
Rect objects are locked to integers, unless you set `enableFloat` to `True`:
|
||||
|
||||
>>> r = pyrect.Rect(0, 0, 10, 20)
|
||||
>>> r.width = 10.5
|
||||
>>> r.width
|
||||
10
|
||||
>>> r.enableFloat = True
|
||||
>>> r.width = 10.5
|
||||
>>> r.width
|
||||
10.5
|
||||
>>> r2 = pyrect.Rect(0, 0, 10.5, 20.5, enableFloat=True)
|
||||
>>> r2.size
|
||||
(10.5, 20.5)
|
||||
|
||||
Rect Attributes
|
||||
===============
|
||||
|
||||
Rect objects have several attributes that can be read or modified. They are identical to Pygame's Rect objects:
|
||||
|
||||
``x, y``
|
||||
|
||||
``top, left, bottom, right``
|
||||
|
||||
``topleft, bottomleft, topright, bottomright``
|
||||
|
||||
``midtop, midleft, midbottom, midright``
|
||||
|
||||
``center, centerx, centery``
|
||||
|
||||
``size, width, height``
|
||||
|
||||
``w, h``
|
||||
|
||||
There are a couple other attributes as well:
|
||||
|
||||
``box (a tuple (left, top, width, height))``
|
||||
|
||||
``area (read-only)``
|
||||
|
||||
|
||||
|
@@ -1,7 +0,0 @@
|
||||
PyRect-0.1.4.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
PyRect-0.1.4.dist-info/METADATA,sha256=qviGiMu-arb3aBayzBqGbFt3OUPfnLnWtLgWbr6IP3k,3325
|
||||
PyRect-0.1.4.dist-info/RECORD,,
|
||||
PyRect-0.1.4.dist-info/WHEEL,sha256=WzZ8cwjh8l0jtULNjYq1Hpr-WCqCRgPr--TX4P5I1Wo,110
|
||||
PyRect-0.1.4.dist-info/top_level.txt,sha256=zRKhS2KGlJmow_PYupJ21SKCmAyorrFofAC7QGsXt5g,7
|
||||
pyrect/__init__.py,sha256=pRHUn6NZRI8NJtM7J5vjuBN3RpfnQcp7547xybl17mI,47934
|
||||
pyrect/__pycache__/__init__.cpython-39.pyc,,
|
@@ -1,6 +0,0 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.37.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py2-none-any
|
||||
Tag: py3-none-any
|
||||
|
@@ -1 +0,0 @@
|
||||
pyrect
|
Reference in New Issue
Block a user