예제 #1
0
 public bool ValidContactDistance(ManifoldPointAlloc pt)
 {
     return(btPersistentManifold_validContactDistance(Native, pt.Native));
 }
예제 #2
0
 public void ReplaceContactPoint(ManifoldPointAlloc newPointAlloc, int insertIndex)
 {
     btPersistentManifold_replaceContactPoint(Native, newPointAlloc.Native, insertIndex);
 }
예제 #3
0
 public void ClearUserCache(ManifoldPointAlloc pt)
 {
     btPersistentManifold_clearUserCache(Native, pt.Native);
 }
예제 #4
0
 public int GetCacheEntry(ManifoldPointAlloc newPointAlloc)
 {
     return(btPersistentManifold_getCacheEntry(Native, newPointAlloc.Native));
 }
예제 #5
0
 public int AddManifoldPoint(ManifoldPointAlloc newPointAlloc, bool isPredictive = false)
 {
     return(btPersistentManifold_addManifoldPoint(Native, newPointAlloc.Native,
                                                  isPredictive));
 }