A first attempt at overhauling collision. New everything.

--HG--
branch : box2d-update
This commit is contained in:
Bill Meltsner
2011-09-23 21:25:41 -04:00
parent 71abae06c7
commit 0678eac453
6 changed files with 203 additions and 79 deletions
+8 -3
View File
@@ -32,12 +32,17 @@ namespace physics
namespace box2d
{
Contact * luax_checkcontact(lua_State * L, int idx);
int w_Contact_getPosition(lua_State * L);
int w_Contact_getVelocity(lua_State * L);
int w_Contact_getPositions(lua_State * L);
int w_Contact_getNormal(lua_State * L);
int w_Contact_getSeparation(lua_State * L);
int w_Contact_getFriction(lua_State * L);
int w_Contact_getRestitution(lua_State * L);
int w_Contact_isEnabled(lua_State * L);
int w_Contact_isTouching(lua_State * L);
int w_Contact_setFriction(lua_State * L);
int w_Contact_setRestitution(lua_State * L);
int w_Contact_setEnabled(lua_State * L);
int w_Contact_resetFriction(lua_State * L);
int w_Contact_resetRestitution(lua_State * L);
int luaopen_contact(lua_State * L);
} // box2d