BulletCSharp.Node.getCPtr C# (CSharp) Method

getCPtr() static private method

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

Usage Example

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