Add new demos to cmake: SerializeDemo and InternalEdgeDemo

Fix in btShapeHull for previous commit
Add support to serialize name for objects
Updated serialization structures.
This commit is contained in:
erwin.coumans
2010-02-04 01:07:07 +00:00
parent 43d82fc20c
commit 58c5630d7f
13 changed files with 481 additions and 420 deletions

View File

@@ -93,13 +93,13 @@ class btHashPtr
union
{
void* m_pointer;
const void* m_pointer;
int m_hashValues[2];
};
public:
btHashPtr(void* ptr)
btHashPtr(const void* ptr)
:m_pointer(ptr)
{
}