This python package is intended for people who don't know C++ and just want to build a console program using python's simple syntax
Python ConGL containcs basically everything you need to create something cool using its API
Everything is same as C++ version, except few things:
- Static
eng2D::Layout
methodscollides
andonCollision
were renamed tocollides_S
andonCollision_S
Python ConGL is using precompiled binaries which means lack of any serious performance hits. Actually Python ConGL is just a wrapper for the C++ version.
from ConGL import *
screen = Screen()
screen.toggleAutosize(True)
main = eng2D.Layout(screen)
rect = eng2D.shapes.Rectangle((30, 30))
main.addFigure(rect)
while True:
# terminate when escape is pressed
if keys.released(chr(0x1b)):
break
main.draw(True)