Metadata-Version: 2.1
Name: drawzero
Version: 0.1.10
Summary: Простое рисование на холсте без бойлерплейта
Home-page: https://github.com/ShashkovS/drawzero
Author: Sergey Shashkov
Author-email: sh57@yandex.ru
License: MIT
Description: 
        Draw Zero
        =========
        
        A zero-boilerplate canvas drawing framework for Python 3, based on Pygame.
        
        
        Some examples
        -------------
        
        Here's some of the neat stuff you can do::
        
            # import all
            from drawzero import *
        
            # simple shapes
            fill('#12bbae')
            line('red', (400, 400), (800, 800))
            circle('yellow', (500, 560), 200)
            filled_circle('brown', (500, 500), 20)
            text('red', 'Hello, world!', (300, 200), 72)
            rect('blue', (200, 600), 100, 100)
            filled_rect('orange', (400, 600), 100, 100)
            polygon('white', [(20, 200), (100, 240), (40, 160)])
            filled_polygon('burlywood', 200, 400, 130, 304, 20, 342, 20, 458, 130, 496, )
            # animation
            for i in range(60 * 5):
                tick()
                circle((i % 255, (19 * i) % 255, (91 * i) % 255), (100 + 2*i, 100 + i // 5), 20 + 4 * (i % 5))
        
        Installation
        ------------
        
        In a Terminal window, type::
        
            pip install drawzero
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: End Users/Desktop
Classifier: Environment :: Win32 (MS Windows)
Classifier: Environment :: X11 Applications
Classifier: Environment :: MacOS X
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Russian
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Multimedia :: Graphics
Description-Content-Type: text/x-rst
