public bool BoxCast(PxVec3 center, PxVec3 halfExtents, PxVec3 direction, out PxRaycastHit hitInfo, PxVec4 orientation, float maxDistance, int layerMask)
 {
     return(PhysXDll.BoxCast(this.scenePtr, center, direction, halfExtents, orientation, maxDistance, layerMask, out hitInfo));
 }
 public bool BoxCast(PxVec3 center, PxVec3 halfExtents, PxVec3 direction, PxVec4 orientation, float maxDistance)
 {
     return(PhysXDll.BoxCast(this.scenePtr, center, direction, halfExtents, orientation, maxDistance));
 }