Metadata-Version: 2.1
Name: ProcessingQt
Version: 1.0.0
Summary: Python library for Processing software. Built on top of Qt5
Home-page: https://github.com/parsoyaarihant/ProcessingQt
Author: Arihant Parsoya
Author-email: parsoyaarihant@gmail.com
License: UNKNOWN
Description: # ProcessingQt
        
        A python library for Processing software. 
        
        ## Installation Steps
        
        * Install Qt: https://www.qt.io/download-qt-installer
        * Install ProcessingQt using pip: `pip install ProcessingQt`
        
        ## APIs
        
        ### Structure
        * setup()
        * draw()
        * [TODO]noLoop()
        * [TODO]redraw()
        * fullScreen()
        * push()
        * pop()
        
        
        ### Setting
        * background()
        * fill()
        * noFill()
        * stroke()
        * noStroke()
        
        ### 2D Primitives
        * arc(x, y, w, h, start, stop)
        * ellipse(x, y, width, height)
        * circle(x, y, radius)
        * line(x1, y1, x2, y2)
        * point(x, y)
        * quad(x1, y1, x2, y2, x3, y3, x4, y4)
        * rect(x, y, width, height)
        * square(x, y, size)
        * triangle(x1, y1, x2, y2, x3, y3)
        
        ### Attributes
        * strokeCap()
        * strokeWeight(weight)
        * strokeJoin()
        
        ### Curves
        * bezier()
        * curve()
        
        ### Vertex
        * beginContour()
        * beginShape()
        * bezierVertex()
        * curveVertex()
        * endContour()
        * endShape()
        * quadraticVertex()
        * vertex()
        
        ### Transform
        * [TODO]applyMatrix()
        * [TODO]resetMatrix()
        * rotate()
        * rotateX()
        * rotateY()
        * rotateZ()
        * scale()
        * shearX()
        * shearY()
        * translate()
        
        ### Constants
        * CLOSE
        * POINTS
        * LINES
        * TRIANGLES
        * TRIANGLE_FAN
        * TRIANGLE_STRIP
        * QUADS
        * QUAD_STRIP
        
        ### Events
        
        ### Missing APIs
        * Font
        * Image
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Topic :: Artistic Software
Classifier: Topic :: Education
Classifier: Topic :: Multimedia
Classifier: Topic :: Multimedia :: Graphics
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
