BulletSim: remove unused unmanaged memory reference functions from BSAPITemplate.

0.7.5-pf-bulletsim
Robert Adams 2012-12-31 19:56:32 -08:00
parent 6988b5ceaf
commit db3b6e8921
2 changed files with 4 additions and 2 deletions

View File

@ -524,6 +524,7 @@ public override void SetTranslation(BulletBody obj, Vector3 position, Quaternion
BSAPICPP.SetTranslation2(obj.ptr, position, rotation);
}
/*
public override IntPtr GetBroadphaseHandle(BulletBody obj)
{
return BSAPICPP.GetBroadphaseHandle2(obj.ptr);
@ -533,6 +534,7 @@ public override void SetBroadphaseHandle(BulletBody obj, IntPtr handle)
{
BSAPICPP.SetUserPointer2(obj.ptr, handle);
}
*/
public override void SetInterpolationLinearVelocity(BulletBody obj, Vector3 vel)
{

View File

@ -475,9 +475,9 @@ public abstract Quaternion GetOrientation(BulletBody obj);
public abstract void SetTranslation(BulletBody obj, Vector3 position, Quaternion rotation);
public abstract IntPtr GetBroadphaseHandle(BulletBody obj);
// public abstract IntPtr GetBroadphaseHandle(BulletBody obj);
public abstract void SetBroadphaseHandle(BulletBody obj, IntPtr handle);
// public abstract void SetBroadphaseHandle(BulletBody obj, IntPtr handle);
public abstract void SetInterpolationLinearVelocity(BulletBody obj, Vector3 vel);