BulletCSharp.Link.getCPtr C# (CSharp) Method

getCPtr() static private method

static private getCPtr ( Link obj ) : HandleRef
obj Link
return System.Runtime.InteropServices.HandleRef
        internal static HandleRef getCPtr(Link obj)
        {
            return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
        }

Usage Example

 public void remove(Link key)
 {
     BulletSoftBodyPINVOKE.btAlignedObjectArrayLink_remove(swigCPtr, Link.getCPtr(key));
     if (BulletSoftBodyPINVOKE.SWIGPendingException.Pending)
     {
         throw BulletSoftBodyPINVOKE.SWIGPendingException.Retrieve();
     }
 }
All Usage Examples Of BulletCSharp.Link::getCPtr