Binary serialization in the .bullet file format (work-in-progress)

This commit is contained in:
erwin.coumans
2009-12-08 18:02:37 +00:00
parent 385c16e309
commit 3edd806b88
14 changed files with 1057 additions and 522 deletions

View File

@@ -138,6 +138,16 @@ class btAlignedObjectArray
return m_size;
}
SIMD_FORCE_INLINE const T& at(int n) const
{
return m_data[n];
}
SIMD_FORCE_INLINE T& at(int n)
{
return m_data[n];
}
SIMD_FORCE_INLINE const T& operator[](int n) const
{
return m_data[n];