renderer-agnostic.
In addition to the standard BulletML XML format, this module supports
-an equivalent YAML format.
+an equivalent YAML format. See bulletml.bulletyaml for more details.
+
+Finally, two simple collision routines are provided, bulletml.overlaps
+for stationary circles and bulletml.collides for moving circles.
A sample renderer for Pygame is included.
from bulletml.impl import Bullet
from bulletml.collision import overlaps, collides
-VERSION = (0, 1)
+VERSION = (1,)
VERSION_STRING = ".".join(map(str, VERSION))
__all__ = ["VERSION", "VERSION_STRING", "Bullet", "BulletML",
if __name__ == "__main__":
setup(cmdclass=dict(
clean=clean, test=test_cmd, coverage=coverage_cmd, sdist=sdist),
- name="python-bulletml", version="0.1",
+ name="python-bulletml", version="1",
url="http://code.google.com/p/python-bulletml/",
description="parse and run BulletML scripts",
author="Joe Wreschnig",
In addition to the standard BulletML XML format, this module supports
an equivalent YAML format.
+Finally, two simple collision routines are provided, bulletml.overlaps
+for stationary circles and bulletml.collides for moving circles.
+
A sample renderer for Pygame is included.
More information is available at the BulletML homepage,