BulletSim: add implementation of 'physSetLinksetType' and 'physGetLinksetType'

and processing routines in BulletSim.
Add linkset rebuild/conversion routine in BSLinkset.
This commit is contained in:
Robert Adams
2013-08-01 17:43:06 -07:00
parent 5bcccfc305
commit 24df15dab7
9 changed files with 159 additions and 7 deletions

View File

@@ -317,7 +317,8 @@ namespace OpenSim.Region.Physics.Manager
// Extendable interface for new, physics engine specific operations
public virtual object Extension(string pFunct, params object[] pParams)
{
throw new NotImplementedException();
// A NOP of the physics engine does not implement this feature
return null;
}
}

View File

@@ -338,7 +338,8 @@ namespace OpenSim.Region.Physics.Manager
// Extendable interface for new, physics engine specific operations
public virtual object Extension(string pFunct, params object[] pParams)
{
throw new NotImplementedException();
// A NOP if the extension thing is not implemented by the physics engine
return null;
}
}
}