codetorex

Results 2 issues of codetorex

Hello, In PShape class there is methods for change matrix of the shape; like translate, rotate etc. But there is no function to retrieve this matrix. Which is important for...

base.py has ``` def map_pluggable_classes(config): pluggable_classes = dict() for m in config.get("modules"): try: exec("import %s" % m) classes = inspect.getmembers(sys.modules[m], inspect.isclass) for c in classes: if not issubclass(c[1], Pluggable): continue...