diff options
Diffstat (limited to 'PhysX_3.4/Source')
41 files changed, 16821 insertions, 16694 deletions
diff --git a/PhysX_3.4/Source/Common/src/CmTask.h b/PhysX_3.4/Source/Common/src/CmTask.h index fdc85986..11088a13 100644 --- a/PhysX_3.4/Source/Common/src/CmTask.h +++ b/PhysX_3.4/Source/Common/src/CmTask.h @@ -54,7 +54,11 @@ namespace Cm virtual void run() { +#if PX_NX // special case because default rounding mode is not nearest + PX_FPU_GUARD; +#else PX_SIMD_GUARD; +#endif runInternal(); } @@ -69,7 +73,11 @@ namespace Cm virtual void run() { +#if PX_NX // special case because default rounding mode is not nearest + PX_FPU_GUARD; +#else PX_SIMD_GUARD; +#endif runInternal(); } diff --git a/PhysX_3.4/Source/GeomUtils/headers/GuSIMDHelpers.h b/PhysX_3.4/Source/GeomUtils/headers/GuSIMDHelpers.h index db79a7bc..f8f7d3e9 100644 --- a/PhysX_3.4/Source/GeomUtils/headers/GuSIMDHelpers.h +++ b/PhysX_3.4/Source/GeomUtils/headers/GuSIMDHelpers.h @@ -72,7 +72,7 @@ namespace Gu const QuatV qV = V4LoadU(&q.x); Vec3V column0V, column1V, column2V; QuatGetMat33V(qV, column0V, column1V, column2V); -#if PX_ANDROID || (PX_LINUX && PX_ARM) +#if defined(PX_SIMD_DISABLED) || PX_ANDROID || (PX_LINUX && (PX_ARM || PX_A64)) V3StoreU(column0V, column0); V3StoreU(column1V, column1); V3StoreU(column2V, column2); diff --git a/PhysX_3.4/Source/GeomUtils/src/GuMeshFactory.cpp b/PhysX_3.4/Source/GeomUtils/src/GuMeshFactory.cpp index 0ce25e11..838aeb2d 100644 --- a/PhysX_3.4/Source/GeomUtils/src/GuMeshFactory.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/GuMeshFactory.cpp @@ -138,10 +138,12 @@ PxTriangleMesh* GuMeshFactory::createTriangleMesh(TriangleMeshData& data) { PX_NEW_SERIALIZED(np, RTreeTriangleMesh)(*this, data); } +#if !defined(PX_SIMD_DISABLED) else if(data.mType==PxMeshMidPhase::eBVH34) { PX_NEW_SERIALIZED(np, BV4TriangleMesh)(*this, data); } +#endif else return NULL; if(np) @@ -192,8 +194,10 @@ static TriangleMeshData* loadMeshData(PxInputStream& stream) TriangleMeshData* data; if(midphaseID==PxMeshMidPhase::eBVH33) data = PX_NEW(RTreeTriangleData); +#if !defined(PX_SIMD_DISABLED) else if(midphaseID==PxMeshMidPhase::eBVH34) data = PX_NEW(BV4TriangleData); +#endif else return NULL; // Import mesh @@ -329,6 +333,7 @@ static TriangleMeshData* loadMeshData(PxInputStream& stream) return NULL; } } +#if !defined(PX_SIMD_DISABLED) else if(midphaseID==PxMeshMidPhase::eBVH34) { BV4TriangleData* bv4data = static_cast<BV4TriangleData*>(data); @@ -347,6 +352,7 @@ static TriangleMeshData* loadMeshData(PxInputStream& stream) bv4data->mMeshInterface.setPointers(reinterpret_cast<IndTri32*>(tris), NULL, verts); bv4data->mBV4Tree.mMeshInterface = &bv4data->mMeshInterface; } +#endif else PX_ASSERT(0); // Import local bounds diff --git a/PhysX_3.4/Source/GeomUtils/src/GuRaycastTests.cpp b/PhysX_3.4/Source/GeomUtils/src/GuRaycastTests.cpp index e232288d..3cb1ad92 100644 --- a/PhysX_3.4/Source/GeomUtils/src/GuRaycastTests.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/GuRaycastTests.cpp @@ -172,7 +172,7 @@ PxU32 raycast_capsule(GU_RAY_FUNC_PARAMS) if(!intersectRayCapsule(rayOrigin, rayDir, capsule, t)) return 0; - if(t>maxDist) + if(t<0.0f || t>maxDist) return 0; // PT: we can't avoid computing the position here since it's needed to compute the normal anyway diff --git a/PhysX_3.4/Source/GeomUtils/src/mesh/GuMidphaseInterface.h b/PhysX_3.4/Source/GeomUtils/src/mesh/GuMidphaseInterface.h index cb7ae145..515bab3a 100644 --- a/PhysX_3.4/Source/GeomUtils/src/mesh/GuMidphaseInterface.h +++ b/PhysX_3.4/Source/GeomUtils/src/mesh/GuMidphaseInterface.h @@ -181,7 +181,7 @@ namespace Midphase } } - #if PX_INTEL_FAMILY + #if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) #else static PxU32 unsupportedMidphase( const TriangleMesh*, const PxTriangleMeshGeometry&, const PxTransform&, const PxVec3&, const PxVec3&, PxReal, @@ -222,7 +222,7 @@ namespace Midphase static const MidphaseRaycastFunction gMidphaseRaycastTable[PxMeshMidPhase::eLAST] = { raycast_triangleMesh_RTREE, - #if PX_INTEL_FAMILY + #if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) raycast_triangleMesh_BV4, #else unsupportedMidphase, @@ -232,7 +232,7 @@ namespace Midphase static const MidphaseSphereOverlapFunction gMidphaseSphereOverlapTable[PxMeshMidPhase::eLAST] = { intersectSphereVsMesh_RTREE, - #if PX_INTEL_FAMILY + #if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) intersectSphereVsMesh_BV4, #else unsupportedSphereOverlapMidphase, @@ -242,7 +242,7 @@ namespace Midphase static const MidphaseBoxOverlapFunction gMidphaseBoxOverlapTable[PxMeshMidPhase::eLAST] = { intersectBoxVsMesh_RTREE, - #if PX_INTEL_FAMILY + #if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) intersectBoxVsMesh_BV4, #else unsupportedBoxOverlapMidphase, @@ -252,7 +252,7 @@ namespace Midphase static const MidphaseCapsuleOverlapFunction gMidphaseCapsuleOverlapTable[PxMeshMidPhase::eLAST] = { intersectCapsuleVsMesh_RTREE, - #if PX_INTEL_FAMILY + #if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) intersectCapsuleVsMesh_BV4, #else unsupportedCapsuleOverlapMidphase, @@ -262,7 +262,7 @@ namespace Midphase static const MidphaseBoxCBOverlapFunction gMidphaseBoxCBOverlapTable[PxMeshMidPhase::eLAST] = { intersectOBB_RTREE, - #if PX_INTEL_FAMILY + #if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) intersectOBB_BV4, #else unsupportedBoxCBOverlapMidphase, @@ -272,7 +272,7 @@ namespace Midphase static const MidphaseBoxSweepFunction gMidphaseBoxSweepTable[PxMeshMidPhase::eLAST] = { sweepBox_MeshGeom_RTREE, - #if PX_INTEL_FAMILY + #if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) sweepBox_MeshGeom_BV4, #else unsupportedBoxSweepMidphase, @@ -282,7 +282,7 @@ namespace Midphase static const MidphaseCapsuleSweepFunction gMidphaseCapsuleSweepTable[PxMeshMidPhase::eLAST] = { sweepCapsule_MeshGeom_RTREE, - #if PX_INTEL_FAMILY + #if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) sweepCapsule_MeshGeom_BV4, #else unsupportedCapsuleSweepMidphase, @@ -292,7 +292,7 @@ namespace Midphase static const MidphaseConvexSweepFunction gMidphaseConvexSweepTable[PxMeshMidPhase::eLAST] = { sweepConvex_MeshGeom_RTREE, - #if PX_INTEL_FAMILY + #if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) sweepConvex_MeshGeom_BV4, #else unsupportedConvexSweepMidphase, diff --git a/PhysX_3.4/Source/GeomUtils/src/mesh/GuSweepsMesh.cpp b/PhysX_3.4/Source/GeomUtils/src/mesh/GuSweepsMesh.cpp index 9f9f0543..131567d8 100644 --- a/PhysX_3.4/Source/GeomUtils/src/mesh/GuSweepsMesh.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/mesh/GuSweepsMesh.cpp @@ -157,7 +157,8 @@ PxAgain SweepCapsuleMeshHitCallback::processHit( // all reported coords are in m } const PxReal alignmentValue = computeAlignmentValue(triNormal, mUnitDir); - if(keepTriangle(localHit.distance, alignmentValue, mBestDist, mBestAlignmentValue, mTrueSweepDistance, distEpsilon)) +// if(keepTriangle(localHit.distance, alignmentValue, mBestDist, mBestAlignmentValue, mTrueSweepDistance, distEpsilon)) + if(keepTriangle(localHit.distance, alignmentValue, mBestDist, mBestAlignmentValue, mTrueSweepDistance, GU_EPSILON_SAME_DISTANCE)) { mBestAlignmentValue = alignmentValue; diff --git a/PhysX_3.4/Source/ImmediateMode/src/NpImmediateMode.cpp b/PhysX_3.4/Source/ImmediateMode/src/NpImmediateMode.cpp index c2d1b2f8..ad976d12 100644 --- a/PhysX_3.4/Source/ImmediateMode/src/NpImmediateMode.cpp +++ b/PhysX_3.4/Source/ImmediateMode/src/NpImmediateMode.cpp @@ -413,31 +413,43 @@ namespace physx for (PxU32 i = 0; i < nbHeaders; ++i) { PxConstraintBatchHeader& batchHeader = batchHeaders[i]; + + PxU8 type = DY_SC_TYPE_BLOCK_1D; if (batchHeader.mStride == 4) { PxU32 totalRows = 0; PxU32 maxRows = 0; + bool batchable = true; for (PxU32 a = 0; a < batchHeader.mStride; ++a) { + if (jointDescs[currentDescIdx + a].numRows == 0) + { + batchable = false; + break; + } totalRows += jointDescs[currentDescIdx + a].numRows; maxRows = PxMax(maxRows, jointDescs[currentDescIdx + a].numRows); } - state = Dy::setupSolverConstraint4 - (jointDescs + currentDescIdx, - dt, invDt, totalRows, - allocator, maxRows); + if (batchable) + { + state = Dy::setupSolverConstraint4 + (jointDescs + currentDescIdx, + dt, invDt, totalRows, + allocator, maxRows); + } } if (state == Dy::SolverConstraintPrepState::eUNBATCHABLE) { + type = DY_SC_TYPE_RB_1D; for (PxU32 a = 0; a < batchHeader.mStride; ++a) { Dy::ConstraintHelper::setupSolverConstraint(jointDescs[currentDescIdx + a], allocator, dt, invDt); } } - batchHeader.mConstraintType = *jointDescs[currentDescIdx].desc->constraint; + batchHeader.mConstraintType = type; currentDescIdx += batchHeader.mStride; } @@ -678,8 +690,12 @@ namespace physx if (cache.isMultiManifold()) { multiManifold.fromBuffer(reinterpret_cast<PxU8*>(&cache.getMultipleManifold())); - cache.setManifold(&multiManifold); } + else + { + multiManifold.initialize(); + } + cache.setMultiManifold(&multiManifold); //Do collision detection, then write manifold out... g_PCMContactMethodTable[type0][type1](geomUnion0, geomUnion1, transform0, transform1, params, cache, contactBuffer, NULL); diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBPCommon.h b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBPCommon.h index 4f38b045..0001b1dc 100644 --- a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBPCommon.h +++ b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBPCommon.h @@ -43,7 +43,7 @@ namespace Bp #define MBP_USE_SENTINELS // Probably doesn't work with 16bits boxes #define MBP_USE_NO_CMP_OVERLAP //#define MBP_USE_NO_CMP_OVERLAP_3D // Seems slower -#if PX_INTEL_FAMILY +#if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) #define MBP_SIMD_OVERLAP #endif diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp b/PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp index 5c9cdbdd..1e3cb164 100644 --- a/PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp +++ b/PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp @@ -91,7 +91,7 @@ static const bool gUseBruteForce = false; //#define EXPERIMENT #define USE_MBP_PAIR_MANAGER #define STORE_SORTED_BOUNDS -#if PX_INTEL_FAMILY +#if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) #define USE_SIMD_BOUNDS #endif @@ -1354,7 +1354,7 @@ void Aggregate::sortBounds() }*/ } -#if PX_INTEL_FAMILY +#if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) #define SSE_CONST4(name, val) static const PX_ALIGN(16, PxU32 name[4]) = { (val), (val), (val), (val) } #define SSE_CONST(name) *(const __m128i *)&name #define SSE_CONSTF(name) *(const __m128 *)&name diff --git a/PhysX_3.4/Source/LowLevelCloth/src/sse2/SwCollisionHelpers.h b/PhysX_3.4/Source/LowLevelCloth/src/sse2/SwCollisionHelpers.h index 6ec553a2..a509bf96 100644 --- a/PhysX_3.4/Source/LowLevelCloth/src/sse2/SwCollisionHelpers.h +++ b/PhysX_3.4/Source/LowLevelCloth/src/sse2/SwCollisionHelpers.h @@ -30,6 +30,9 @@ #pragma once #if PX_GCC_FAMILY +#if PX_EMSCRIPTEN +#include <emmintrin.h> +#endif #include <xmmintrin.h> // _BitScanForward #else #pragma warning(push) diff --git a/PhysX_3.4/Source/LowLevelDynamics/src/DyConstraintSetup.cpp b/PhysX_3.4/Source/LowLevelDynamics/src/DyConstraintSetup.cpp index c71bb3c2..c3606d4b 100644 --- a/PhysX_3.4/Source/LowLevelDynamics/src/DyConstraintSetup.cpp +++ b/PhysX_3.4/Source/LowLevelDynamics/src/DyConstraintSetup.cpp @@ -397,8 +397,14 @@ PxSolverConstraintPrepDesc& prepDesc, PxConstraintAllocator& allocator, PxReal dt, PxReal invdt) { - if (prepDesc .numRows== 0) + if (prepDesc.numRows == 0) + { + prepDesc.desc->constraint = NULL; + prepDesc.desc->writeBack = NULL; + prepDesc.desc->constraintLengthOver16 = 0; + prepDesc.desc->writeBackLengthOver4 = 0; return 0; + } PxSolverConstraintDesc& desc = *prepDesc.desc; diff --git a/PhysX_3.4/Source/LowLevelDynamics/src/DyContactPrep4.cpp b/PhysX_3.4/Source/LowLevelDynamics/src/DyContactPrep4.cpp index 91b9e638..569e6996 100644 --- a/PhysX_3.4/Source/LowLevelDynamics/src/DyContactPrep4.cpp +++ b/PhysX_3.4/Source/LowLevelDynamics/src/DyContactPrep4.cpp @@ -990,7 +990,8 @@ static void setupFinalizeSolverConstraints4(PxSolverContactDesc* PX_RESTRICT des const Vec4V rbXnY = V4NegMulSub(rbX, t1Z, V4Mul(rbZ, t1X)); const Vec4V rbXnZ = V4NegMulSub(rbY, t1X, V4Mul(rbX, t1Y)); - const Vec4V dotRbXnAngVel1 = V4MulAdd(rbXnZ, angVelT21, V4MulAdd(rbXnY, angVelT11, V4Mul(rbXnX, angVelT01))); + const Vec4V tVel1 = V4MulAdd(t1Z, linVelT21, V4MulAdd(t1Y, linVelT11, V4Mul(t1X, linVelT01))); + const Vec4V dotRbXnAngVel1 = V4MulAdd(rbXnZ, angVelT21, V4MulAdd(rbXnY, angVelT11, V4MulAdd(rbXnX, angVelT01, tVel1))); vrel = V4Sub(vrel, dotRbXnAngVel1); } diff --git a/PhysX_3.4/Source/LowLevelDynamics/src/DyDynamics.cpp b/PhysX_3.4/Source/LowLevelDynamics/src/DyDynamics.cpp index fabb1016..b7988989 100644 --- a/PhysX_3.4/Source/LowLevelDynamics/src/DyDynamics.cpp +++ b/PhysX_3.4/Source/LowLevelDynamics/src/DyDynamics.cpp @@ -2626,7 +2626,7 @@ static PxU32 createFinalizeContacts_Parallel(PxSolverBodyData* solverBodyData, T if(contactDescPtr[header.mStartIndex].constraintLengthOver16 == DY_SC_TYPE_RB_CONTACT) { - SolverConstraintPrepState::Enum state = SolverConstraintPrepState::eUNBATCHABLE; + PxSolverContactDesc blockDescs[4]; PxsContactManagerOutput* cmOutputs[4]; @@ -2679,6 +2679,8 @@ static PxU32 createFinalizeContacts_Parallel(PxSolverBodyData* solverBodyData, T } +#if DY_BATCH_CONSTRAINTS + SolverConstraintPrepState::Enum state = SolverConstraintPrepState::eUNBATCHABLE; if(header.mStride == 4) { //KS - todo - plumb in axisConstraintCount into this method to keep track of the number of axes @@ -2692,6 +2694,7 @@ static PxU32 createFinalizeContacts_Parallel(PxSolverBodyData* solverBodyData, T } if(SolverConstraintPrepState::eSUCCESS != state) +#endif { for(PxU32 i = 0; i < header.mStride; ++i) { @@ -2766,7 +2769,7 @@ static PxU32 createFinalizeContacts_Parallel(PxSolverBodyData* solverBodyData, T prepDesc.minResponseThreshold = constraint->minResponseThreshold; } -#if DY_BATCH_1D +#if DY_BATCH_CONSTRAINTS && DY_BATCH_1D SolverConstraintPrepState::Enum state = SolverConstraintPrepState::eUNBATCHABLE; if(header.mStride == 4) { diff --git a/PhysX_3.4/Source/LowLevelDynamics/src/DyFrictionCorrelation.cpp b/PhysX_3.4/Source/LowLevelDynamics/src/DyFrictionCorrelation.cpp index f087c629..2d0af683 100644 --- a/PhysX_3.4/Source/LowLevelDynamics/src/DyFrictionCorrelation.cpp +++ b/PhysX_3.4/Source/LowLevelDynamics/src/DyFrictionCorrelation.cpp @@ -179,7 +179,7 @@ void growPatches(CorrelationBuffer& fb, const ContactPoint* cb, const PxTransform& bodyFrame0, const PxTransform& bodyFrame1, - PxReal , //unused correlationDistance + PxReal correlationDistance, PxU32 frictionPatchStartIndex, PxReal frictionOffsetThreshold) { @@ -221,7 +221,7 @@ void growPatches(CorrelationBuffer& fb, break; case 1: pointDistSq = (worldPoint-worldAnchors[0]).magnitudeSquared(); - if (pointDistSq > (0.025f * 0.025f)) + if (pointDistSq > (correlationDistance * correlationDistance)) { fb.contactID[i][1] = PxU16(cp.start+j); worldAnchors[1] = worldPoint; diff --git a/PhysX_3.4/Source/LowLevelDynamics/src/DySolverConstraints.cpp b/PhysX_3.4/Source/LowLevelDynamics/src/DySolverConstraints.cpp index 3eadf91e..0a33c778 100644 --- a/PhysX_3.4/Source/LowLevelDynamics/src/DySolverConstraints.cpp +++ b/PhysX_3.4/Source/LowLevelDynamics/src/DySolverConstraints.cpp @@ -59,6 +59,8 @@ void solve1D(const PxSolverConstraintDesc& desc, SolverContext& cache) PxSolverBody& b1 = *desc.bodyB; PxU8* PX_RESTRICT bPtr = desc.constraint; + if (bPtr == NULL) + return; //PxU32 length = desc.constraintLength; const SolverConstraint1DHeader* PX_RESTRICT header = reinterpret_cast<const SolverConstraint1DHeader*>(bPtr); @@ -125,6 +127,8 @@ void solve1D(const PxSolverConstraintDesc& desc, SolverContext& cache) void conclude1D(const PxSolverConstraintDesc& desc, SolverContext& /*cache*/) { SolverConstraint1DHeader* header = reinterpret_cast<SolverConstraint1DHeader*>(desc.constraint); + if (header == NULL) + return; PxU8* base = desc.constraint + sizeof(SolverConstraint1DHeader); PxU32 stride = header->type == DY_SC_TYPE_EXT_1D ? sizeof(SolverConstraint1DExt) : sizeof(SolverConstraint1D); diff --git a/PhysX_3.4/Source/PhysX/src/NpBatchQuery.cpp b/PhysX_3.4/Source/PhysX/src/NpBatchQuery.cpp index 97fdaa0a..0ca62673 100644 --- a/PhysX_3.4/Source/PhysX/src/NpBatchQuery.cpp +++ b/PhysX_3.4/Source/PhysX/src/NpBatchQuery.cpp @@ -36,6 +36,7 @@ #include "PsFoundation.h" #include "PsUtilities.h" #include "NpScene.h" +#include "PxGeometryQuery.h" using namespace physx; using namespace Sq; @@ -523,6 +524,14 @@ void NpBatchQuery::sweep( PX_CHECK_AND_RETURN(distance != 0.0f || !(hitFlags & PxHitFlag::eASSUME_NO_INITIAL_OVERLAP), "Batch sweep input check: zero-length sweep only valid without the PxHitFlag::eASSUME_NO_INITIAL_OVERLAP flag"); +#if PX_CHECKED + if(!PxGeometryQuery::isValid(geometry)) + { + Ps::getFoundation().error(PxErrorCode::eINVALID_PARAMETER, __FILE__, __LINE__, "Provided geometry is not valid"); + return; + } +#endif // PX_CHECKED + if (mNbSweeps >= mDesc.queryMemory.getMaxSweepsPerExecute()) { PX_CHECK_AND_RETURN(mNbSweeps < mDesc.queryMemory.getMaxSweepsPerExecute(), diff --git a/PhysX_3.4/Source/PhysX/src/NpPhysics.cpp b/PhysX_3.4/Source/PhysX/src/NpPhysics.cpp index 01fe883d..57f7feeb 100644 --- a/PhysX_3.4/Source/PhysX/src/NpPhysics.cpp +++ b/PhysX_3.4/Source/PhysX/src/NpPhysics.cpp @@ -73,6 +73,10 @@ #include "NpCloth.h" #endif +#if PX_NX +#include "nx/NpMiddlewareInfo.h" +#endif + using namespace physx; using namespace Cm; @@ -228,6 +232,10 @@ NpPhysics* NpPhysics::createInstance(PxU32 version, PxFoundation& foundation, co physx::pvdsdk::PsPvd* pvd) { PX_UNUSED(foundation); + +#if PX_NX + NpSetMiddlewareInfo(); // register middleware info such that PhysX usage can be tracked +#endif if (version!=PX_PHYSICS_VERSION) { diff --git a/PhysX_3.4/Source/PhysXCooking/src/Cooking.cpp b/PhysX_3.4/Source/PhysXCooking/src/Cooking.cpp index cb3208ed..8dbdec16 100644 --- a/PhysX_3.4/Source/PhysXCooking/src/Cooking.cpp +++ b/PhysX_3.4/Source/PhysXCooking/src/Cooking.cpp @@ -201,7 +201,13 @@ bool Cooking::cookConvexMeshInternal(const PxConvexMeshDesc& desc_, ConvexMeshBu if (mParams.areaTestEpsilon <= 0.0f) { - Ps::getFoundation().error(PxErrorCode::eINVALID_PARAMETER, __FILE__, __LINE__, "Cooking::cookConvexMesh: user-provided convex mesh areaTestEpsilon is invalid!"); + Ps::getFoundation().error(PxErrorCode::eINVALID_PARAMETER, __FILE__, __LINE__, "Cooking::cookConvexMesh: provided cooking parameter areaTestEpsilon is invalid!"); + return false; + } + + if(mParams.planeTolerance < 0.0f) + { + Ps::getFoundation().error(PxErrorCode::eINVALID_PARAMETER, __FILE__, __LINE__, "Cooking::cookConvexMesh: provided cooking parameter planeTolerance is invalid!"); return false; } @@ -262,12 +268,12 @@ bool Cooking::cookConvexMesh(const PxConvexMeshDesc& desc_, PxOutputStream& stre if(desc_.flags & PxConvexFlag::eCOMPUTE_CONVEX) { - const PxU32 gpuMaxVertsLimit = 64; + const PxU16 gpuMaxVertsLimit = 64; // GRB supports 64 verts max if(desc_.flags & PxConvexFlag::eGPU_COMPATIBLE) { - desc.vertexLimit = gpuMaxVertsLimit; + desc.vertexLimit = PxMin(desc.vertexLimit, gpuMaxVertsLimit); } if(mParams.convexMeshCookingType == PxConvexMeshCookingType::eINFLATION_INCREMENTAL_HULL) @@ -308,13 +314,23 @@ bool Cooking::cookConvexMesh(const PxConvexMeshDesc& desc_, PxOutputStream& stre ////////////////////////////////////////////////////////////////////////// // cook convex mesh from given desc, copy the results into internal convex mesh // and insert the mesh into PxPhysics -PxConvexMesh* Cooking::createConvexMesh(const PxConvexMeshDesc& desc, PxPhysicsInsertionCallback& insertionCallback) +PxConvexMesh* Cooking::createConvexMesh(const PxConvexMeshDesc& desc_, PxPhysicsInsertionCallback& insertionCallback) { PX_FPU_GUARD; // choose cooking library if needed ConvexHullLib* hullLib = NULL; + PxConvexMeshDesc desc = desc_; + if(desc.flags & PxConvexFlag::eCOMPUTE_CONVEX) { + const PxU16 gpuMaxVertsLimit = 64; + + // GRB supports 64 verts max + if(desc_.flags & PxConvexFlag::eGPU_COMPATIBLE) + { + desc.vertexLimit = PxMin(desc.vertexLimit, gpuMaxVertsLimit); + } + if (mParams.convexMeshCookingType == PxConvexMeshCookingType::eINFLATION_INCREMENTAL_HULL) { hullLib = PX_NEW(InflationConvexHullLib) (desc, mParams); diff --git a/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullBuilder.cpp b/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullBuilder.cpp index cc9d8b12..a28c404e 100644 --- a/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullBuilder.cpp +++ b/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullBuilder.cpp @@ -289,7 +289,7 @@ bool ConvexHullBuilder::checkHullPolygons() const // Test hull vertices against polygon plane // compute the test epsilon the same way we construct the hull, verts are considered coplanar within this epsilon - const float planeTolerance = 0.002f; + const float planeTolerance = 0.02f; const float testEpsilon = PxMax(planeTolerance * (PxMax(PxAbs(hullMax.x), PxAbs(hullMin.x)) + PxMax(PxAbs(hullMax.y), PxAbs(hullMin.y)) + PxMax(PxAbs(hullMax.z), PxAbs(hullMin.z))), planeTolerance); diff --git a/PhysX_3.4/Source/PhysXCooking/src/convex/QuickHullConvexHullLib.cpp b/PhysX_3.4/Source/PhysXCooking/src/convex/QuickHullConvexHullLib.cpp index 15d34b6e..c69724aa 100644 --- a/PhysX_3.4/Source/PhysXCooking/src/convex/QuickHullConvexHullLib.cpp +++ b/PhysX_3.4/Source/PhysXCooking/src/convex/QuickHullConvexHullLib.cpp @@ -49,9 +49,7 @@ namespace local { ////////////////////////////////////////////////////////////////////////// static const float MIN_ADJACENT_ANGLE = 3.0f; // in degrees - result wont have two adjacent facets within this angle of each other. - static const float PLANE_THICKNES = 3.0f * PX_EPS_F32; // points within this distance are considered on a plane - static const float ACCEPTANCE_EPSILON_MULTIPLY = 2000.0f; // used to scale up plane tolerance to accept new points into convex, plane thickness tolerance is too high for point acceptance - static const float PLANE_TOLERANCE = 0.001f; // points within this distance are considered on a plane for post adjacent merging and eye vertex acceptance + static const float PLANE_THICKNES = 3.0f * PX_EPS_F32; // points within this distance are considered on a plane static const float MAXDOT_MINANG = cosf(Ps::degToRad(MIN_ADJACENT_ANGLE)); // adjacent angle for dot product tests ////////////////////////////////////////////////////////////////////////// @@ -290,13 +288,13 @@ namespace local QuickHullHalfEdge* testEdge = edge; QuickHullHalfEdge* startEdge = NULL; - float minDist = FLT_MAX; + float maxDist = 0.0f; for (PxU32 i = 0; i < 3; i++) { const float d = (testEdge->tail.point - testEdge->next->tail.point).magnitudeSquared(); - if (d < minDist) + if (d > maxDist) { - minDist = d; + maxDist = d; startEdge = testEdge; } testEdge = testEdge->next; @@ -430,7 +428,7 @@ namespace local void postMergeHull(); // check if 2 faces can be merged - bool canMergeFaces(const QuickHullHalfEdge& he, float planeTolerance); + bool canMergeFaces(const QuickHullHalfEdge& he); // get next free face PX_FORCE_INLINE QuickHullFace* getFreeHullFace() @@ -444,6 +442,8 @@ namespace local return mFreeHalfEdges.getFreeItem(); } + PX_FORCE_INLINE PxU32 getNbHullVerts() { return mOutputNumVertices; } + protected: friend class physx::QuickHullConvexHullLib; @@ -453,7 +453,8 @@ namespace local PxVec3 mInteriorPoint; // interior point for int/ext tests PxU32 mMaxVertices; // maximum number of vertices (can be different as we may add vertices during the cleanup - PxU32 mNumVertices; // actual number of vertices + PxU32 mNumVertices; // actual number of input vertices + PxU32 mOutputNumVertices; // num vertices of the computed hull QuickHullVertex* mVerticesList; // vertices list preallocated MemBlock<QuickHullHalfEdge, false> mFreeHalfEdges; // free half edges @@ -660,7 +661,7 @@ namespace local ////////////////////////////////////////////////////////////////////////// QuickHull::QuickHull(const PxCookingParams& params, const PxConvexMeshDesc& desc) - : mCookingParams(params), mConvexDesc(desc), mVerticesList(NULL), mNumHullFaces(0), mPrecomputedMinMax(false), + : mCookingParams(params), mConvexDesc(desc), mOutputNumVertices(0), mVerticesList(NULL), mNumHullFaces(0), mPrecomputedMinMax(false), mTolerance(-1.0f), mPlaneTolerance(-1.0f) { } @@ -813,7 +814,9 @@ namespace local mTolerance = PxMax(local::PLANE_THICKNES * (PxMax(PxAbs(max.x), PxAbs(min.x)) + PxMax(PxAbs(max.y), PxAbs(min.y)) + PxMax(PxAbs(max.z), PxAbs(min.z))), local::PLANE_THICKNES); - mPlaneTolerance = local::PLANE_TOLERANCE; + mPlaneTolerance = PxMax(mCookingParams.planeTolerance * (PxMax(PxAbs(max.x), PxAbs(min.x)) + + PxMax(PxAbs(max.y), PxAbs(min.y)) + + PxMax(PxAbs(max.z), PxAbs(min.z))), mCookingParams.planeTolerance); } ////////////////////////////////////////////////////////////////////////// @@ -1131,11 +1134,13 @@ namespace local PX_ASSERT(eyeFace); if (!addPointToHull(eyeVtx, *eyeFace)) { + mOutputNumVertices = numVerts; // we hit the polygons hard limit return QuickHullResult::ePOLYGONS_LIMIT_REACHED; } numVerts++; } + mOutputNumVertices = numVerts; // vertex limit has been reached. We did not stopped the iteration, since we // will use the produced hull to compute OBB from it and use the planes @@ -1155,7 +1160,7 @@ namespace local { QuickHullVertex* eyeVtx = NULL; QuickHullFace* eyeF = NULL; - float maxDist = PxMax(mTolerance*ACCEPTANCE_EPSILON_MULTIPLY, mPlaneTolerance); + float maxDist = mPlaneTolerance; for (PxU32 i = 0; i < mHullFaces.size(); i++) { if (mHullFaces[i]->state == QuickHullFace::eVISIBLE && mHullFaces[i]->conflictList) @@ -1310,8 +1315,7 @@ namespace local ////////////////////////////////////////////////////////////////////////// // merge adjacent faces doing normal test - // we try to merge more aggressively 2 faces with the same normal. - // We use bigger tolerance for the plane thickness in the end - mPlaneTolerance. + // we try to merge more aggressively 2 faces with the same normal. bool QuickHull::doPostAdjacentMerge(QuickHullFace& face, const float maxdot_minang) { QuickHullHalfEdge* hedge = face.edge; @@ -1329,7 +1333,7 @@ namespace local if (face.area > oppFace.area) { // check if we can merge the 2 faces - merge = canMergeFaces(*hedge, mPlaneTolerance); + merge = canMergeFaces(*hedge); } } @@ -1359,7 +1363,7 @@ namespace local // 4. checks that the new polygon is still convex // 5. checks if we are about to merge only 2 neighbor faces, we dont // want to merge additional faces, that might corrupt the convexity - bool QuickHull::canMergeFaces(const QuickHullHalfEdge& he, float planeTolerance) + bool QuickHull::canMergeFaces(const QuickHullHalfEdge& he) { const QuickHullFace& face1 = *he.face; const QuickHullFace& face2 = *he.twin->face; @@ -1400,12 +1404,13 @@ namespace local mergedFace.computeNormalAndCentroid(); // test the vertex distance + float maxDist = mPlaneTolerance; QuickHullHalfEdge* qhe = mergedFace.edge; do { const QuickHullVertex& vertex = qhe->tail; const float dist = mergedFace.distanceToPlane(vertex.point); - if (dist > planeTolerance) + if (dist > maxDist) { return false; } @@ -1796,7 +1801,15 @@ PxConvexMeshCookingResult::Enum QuickHullConvexHullLib::createConvexHull() res = PxConvexMeshCookingResult::eSUCCESS; break; case local::QuickHullResult::ePOLYGONS_LIMIT_REACHED: - res = PxConvexMeshCookingResult::ePOLYGONS_LIMIT_REACHED; + if(mQuickHull->getNbHullVerts() > mConvexMeshDesc.vertexLimit) + { + // expand the hull + if(mConvexMeshDesc.flags & PxConvexFlag::ePLANE_SHIFTING) + res = expandHull(); + else + res = expandHullOBB(); + } + res = PxConvexMeshCookingResult::ePOLYGONS_LIMIT_REACHED; break; case local::QuickHullResult::eVERTEX_LIMIT_REACHED: { @@ -1896,7 +1909,9 @@ bool QuickHullConvexHullLib::cleanupForSimplex(PxVec3* vertices, PxU32 vertexCou PxMax(PxAbs(max.y), PxAbs(min.y)) + PxMax(PxAbs(max.z), PxAbs(min.z))), local::PLANE_THICKNES); - planeTolerance = local::PLANE_TOLERANCE; + planeTolerance = PxMax(mCookingParams.planeTolerance * (PxMax(PxAbs(max.x), PxAbs(min.x)) + + PxMax(PxAbs(max.y), PxAbs(min.y)) + + PxMax(PxAbs(max.z), PxAbs(min.z))), mCookingParams.planeTolerance); float fmax = 0; PxU32 imax = 0; @@ -2312,7 +2327,7 @@ void QuickHullConvexHullLib::fillConvexMeshDescFromQuickHull(PxConvexMeshDesc& d polygon.mPlane[0] = face.normal[0]; polygon.mPlane[1] = face.normal[1]; polygon.mPlane[2] = face.normal[2]; - polygon.mPlane[3] = -face.normal.dot(face.centroid); + polygon.mPlane[3] = -face.planeOffset; polygon.mIndexBase = indexOffset; polygon.mNbVerts = face.numEdges; diff --git a/PhysX_3.4/Source/PhysXCooking/src/mesh/TriangleMeshBuilder.cpp b/PhysX_3.4/Source/PhysXCooking/src/mesh/TriangleMeshBuilder.cpp index 7b856d6a..593f69a4 100644 --- a/PhysX_3.4/Source/PhysXCooking/src/mesh/TriangleMeshBuilder.cpp +++ b/PhysX_3.4/Source/PhysXCooking/src/mesh/TriangleMeshBuilder.cpp @@ -1173,6 +1173,8 @@ void TriangleMeshBuilder::checkMeshIndicesSize() grbIndices16[i] = Ps::to16(grbIndices32[i]); } + PX_FREE(grbIndices32); + onMeshIndexFormatChange(); } } diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp index 9a5708f9..d5978518 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp @@ -46,7 +46,7 @@ PxDefaultCpuDispatcher* physx::PxDefaultCpuDispatcherCreate(PxU32 numThreads, Px return PX_NEW(Ext::DefaultCpuDispatcher)(numThreads, affinityMasks); } -#if !PX_PS4 && !PX_XBOXONE +#if !PX_PS4 && !PX_XBOXONE && !PX_NX void Ext::DefaultCpuDispatcher::getAffinityMasks(PxU32* affinityMasks, PxU32 threadCount) { for(PxU32 i=0; i < threadCount; i++) diff --git a/PhysX_3.4/Source/PhysXExtensions/src/serialization/File/SnFile.h b/PhysX_3.4/Source/PhysXExtensions/src/serialization/File/SnFile.h index ccb47851..09929d20 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/serialization/File/SnFile.h +++ b/PhysX_3.4/Source/PhysXExtensions/src/serialization/File/SnFile.h @@ -57,7 +57,7 @@ PX_INLINE PxI32 fopen_s(FILE** file, const char* name, const char* mode) } // namespace sn } // namespace physx -#elif PX_UNIX_FAMILY || PX_PS4 +#elif PX_UNIX_FAMILY || PX_PS4 || PX_NX #include <stdio.h> diff --git a/PhysX_3.4/Source/PhysXExtensions/src/serialization/SnSerialUtils.cpp b/PhysX_3.4/Source/PhysXExtensions/src/serialization/SnSerialUtils.cpp index c958067e..e478a552 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/serialization/SnSerialUtils.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/serialization/SnSerialUtils.cpp @@ -38,7 +38,7 @@ using namespace physx; namespace { -#define SN_NUM_BINARY_PLATFORMS 11 +#define SN_NUM_BINARY_PLATFORMS 13 const PxU32 sBinaryPlatformTags[SN_NUM_BINARY_PLATFORMS] = { PX_MAKE_FOURCC('W','_','3','2'), @@ -51,7 +51,9 @@ const PxU32 sBinaryPlatformTags[SN_NUM_BINARY_PLATFORMS] = PX_MAKE_FOURCC('A','N','D','R'), PX_MAKE_FOURCC('A','I','O','S'), PX_MAKE_FOURCC('A','A','6','4'), - PX_MAKE_FOURCC('X','O','N','E') + PX_MAKE_FOURCC('X','O','N','E'), + PX_MAKE_FOURCC('N','X','3','2'), + PX_MAKE_FOURCC('N','X','6','4') }; const char* sBinaryPlatformNames[SN_NUM_BINARY_PLATFORMS] = @@ -66,7 +68,9 @@ const char* sBinaryPlatformNames[SN_NUM_BINARY_PLATFORMS] = "android", "ios", "ios64", - "xboxone" + "xboxone", + "nx32", + "nx64" }; #define SN_NUM_BINARY_COMPATIBLE_VERSIONS 1 @@ -107,6 +111,10 @@ PxU32 getBinaryPlatformTag() return sBinaryPlatformTags[9]; #elif PX_XBOXONE return sBinaryPlatformTags[10]; +#elif PX_NX && !PX_A64 + return sBinaryPlatformTags[11]; +#elif PX_NX && PX_A64 + return sBinaryPlatformTags[12]; #else #error Unknown binary platform #endif diff --git a/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h b/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h index 19cb00e6..18e2a9e0 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h +++ b/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h @@ -57,6 +57,17 @@ namespace physx { namespace Sn { void deallocate( PxU8* inMem ) { mAllocator->deallocate( inMem ); } }; + inline bool isEmpty(const char *s) + { + while (*s != '\0') + { + if (!isspace(*s)) + return false; + s++; + } + return true; + } + inline void strtoLong( Triangle<PxU32>& ioDatatype,const char*& ioData ) { strto( ioDatatype.mIdx0, ioData ); @@ -144,9 +155,7 @@ namespace physx { namespace Sn { ++theCount; char* theStartData = const_cast< char*>( copyStr( &tempAllocator, theSrcData ) ); const char* theData = theStartData; - PxU32 theLen = strLenght( theData ); - const char* theEndData = theData + theLen; - while( theData < theEndData ) + while( !isEmpty(theData) ) { //These buffers are whitespace delimited. TDataType theType; diff --git a/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h b/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h index 040c42a9..e7286bc5 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h +++ b/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h @@ -219,7 +219,12 @@ namespace physx { namespace Sn { , PxU32 inObjPerLine, PxStrideIterator<const TDataType>& inData, TAccessOperator inAccessOperator , PxU32 inBufSize, const char* inPropName, PxU32 /*inStride*/, TWriteOperator inOperator ) { +#if PX_NX + const auto *dat = &inData[0]; + if (inBufSize && dat != NULL) +#else if ( inBufSize && &inData[0]) +#endif { for ( PxU32 idx = 0; idx < inBufSize; ++idx ) { @@ -239,8 +244,13 @@ namespace physx { namespace Sn { inline void writeStrideFlags( XmlWriter& inWriter, MemoryBuffer& inTempBuffer , PxU32 inObjPerLine, PxStrideIterator<const TDataType>& inData, TAccessOperator /*inAccessOperator*/ , PxU32 inBufSize, const char* inPropName, const PxU32ToName* inTable) - { + { +#if PX_NX + const auto *dat = &inData[0]; + if (inBufSize && dat != NULL) +#else if ( inBufSize && &inData[0]) +#endif { for ( PxU32 idx = 0; idx < inBufSize; ++idx ) { diff --git a/PhysX_3.4/Source/PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp b/PhysX_3.4/Source/PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp index f158f664..a80e525d 100644 --- a/PhysX_3.4/Source/PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp +++ b/PhysX_3.4/Source/PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp @@ -333,7 +333,7 @@ PX_PHYSX_CORE_API PxArticulationJointGeneratedInfo::PxArticulationJointGenerated , Damping( "Damping", setPxArticulationJoint_Damping, getPxArticulationJoint_Damping) , InternalCompliance( "InternalCompliance", setPxArticulationJoint_InternalCompliance, getPxArticulationJoint_InternalCompliance) , ExternalCompliance( "ExternalCompliance", setPxArticulationJoint_ExternalCompliance, getPxArticulationJoint_ExternalCompliance) - , SwingLimit( "SwingLimit", "yLimit", "zLimit", setPxArticulationJoint_SwingLimit, getPxArticulationJoint_SwingLimit) + , SwingLimit( "SwingLimit", "zLimit", "yLimit", setPxArticulationJoint_SwingLimit, getPxArticulationJoint_SwingLimit) , TangentialStiffness( "TangentialStiffness", setPxArticulationJoint_TangentialStiffness, getPxArticulationJoint_TangentialStiffness) , TangentialDamping( "TangentialDamping", setPxArticulationJoint_TangentialDamping, getPxArticulationJoint_TangentialDamping) , SwingLimitContactDistance( "SwingLimitContactDistance", setPxArticulationJoint_SwingLimitContactDistance, getPxArticulationJoint_SwingLimitContactDistance) diff --git a/PhysX_3.4/Source/PhysXVehicle/src/PxVehicleUpdate.cpp b/PhysX_3.4/Source/PhysXVehicle/src/PxVehicleUpdate.cpp index 14de8f00..9603d2bb 100644 --- a/PhysX_3.4/Source/PhysXVehicle/src/PxVehicleUpdate.cpp +++ b/PhysX_3.4/Source/PhysXVehicle/src/PxVehicleUpdate.cpp @@ -2304,7 +2304,7 @@ bool intersectRayPlane const PxVec4& hitPlane, PxF32& jounce, PxVec3& wheelBottomPos) { - + PX_UNUSED(width); //Compute the raycast start pos and direction. PxVec3 v, w; @@ -2325,7 +2325,6 @@ bool intersectRayPlane //const PxVec3 latDir = carChassisTrnsfm.rotate(gRight); //const PxF32 signDot = computeSign(hitNorm.dot(latDir)); //v -= latDir*(signDot*0.5f*width); - PX_UNUSED(width); //Work out the point on the susp line that touches the intersection plane. //n.(v+wt)+d=0 where n,d describe the plane; v,w describe the susp ray; t is the point on the susp line. @@ -7425,9 +7424,9 @@ void PxVehicleWheels4SuspensionSweeps wheelShape->getConvexMeshGeometry(convMeshGeom); convMeshGeom.scale.scale = PxVec3( - gRight.x*sweepWidthScale + (gUp.x + gForward.x)*sweepRadiusScale, - gRight.y*sweepWidthScale + (gUp.y + gForward.y)*sweepRadiusScale, - gRight.z*sweepWidthScale + (gUp.z + gForward.z)*sweepRadiusScale); + PxAbs(gRight.x*sweepWidthScale + (gUp.x + gForward.x)*sweepRadiusScale), + PxAbs(gRight.y*sweepWidthScale + (gUp.y + gForward.y)*sweepRadiusScale), + PxAbs(gRight.z*sweepWidthScale + (gUp.z + gForward.z)*sweepRadiusScale)); suspGeometry.storeAny(convMeshGeom); } else if (PxGeometryType::eCAPSULE == wheelShape->getGeometryType()) diff --git a/PhysX_3.4/Source/SceneQuery/src/SqAABBTree.cpp b/PhysX_3.4/Source/SceneQuery/src/SqAABBTree.cpp index cde34348..46ad64c7 100644 --- a/PhysX_3.4/Source/SceneQuery/src/SqAABBTree.cpp +++ b/PhysX_3.4/Source/SceneQuery/src/SqAABBTree.cpp @@ -631,7 +631,7 @@ static PX_FORCE_INLINE void refitNode(AABBTreeRuntimeNode* PX_RESTRICT current, resultMinV = V4Min(V4LoadU(&posBox.minimum.x), V4LoadU(&negBox.minimum.x)); // resultMaxV = V4Max(V4LoadU(&posBox.maximum.x), V4LoadU(&negBox.maximum.x)); -#if PX_INTEL_FAMILY +#if PX_INTEL_FAMILY && !defined(PX_SIMD_DISABLED) Vec4V posMinV = V4LoadU(&posBox.minimum.z); Vec4V negMinV = V4LoadU(&negBox.minimum.z); posMinV = _mm_shuffle_ps(posMinV, posMinV, _MM_SHUFFLE(0, 3, 2, 1)); diff --git a/PhysX_3.4/Source/SimulationController/src/ScElementSimInteraction.h b/PhysX_3.4/Source/SimulationController/src/ScElementSimInteraction.h index 469a1259..daa95c0f 100644 --- a/PhysX_3.4/Source/SimulationController/src/ScElementSimInteraction.h +++ b/PhysX_3.4/Source/SimulationController/src/ScElementSimInteraction.h @@ -50,6 +50,10 @@ namespace Sc // i.e., if this interaction gets deleted, the pair is considered lost virtual bool isLastFilterInteraction() const { return true; } + PX_INLINE void setFilterPairIndex(PxU32 filterPairIndex) { mFilterPairIndex = filterPairIndex; } + + PX_INLINE PxU32 getFilterPairIndex() const { return mFilterPairIndex; } + protected: PX_INLINE ElementSimInteraction(ElementSim& element0, ElementSim& element1, InteractionType::Enum type, PxU8 flags); virtual ~ElementSimInteraction() {} @@ -58,6 +62,7 @@ namespace Sc private: ElementSim& mElement0; ElementSim& mElement1; + PxU32 mFilterPairIndex; }; } // namespace Sc @@ -67,7 +72,8 @@ namespace Sc PX_INLINE Sc::ElementSimInteraction::ElementSimInteraction(ElementSim& element0, ElementSim& element1, InteractionType::Enum type, PxU8 flags) : Interaction (element0.getActor(), element1.getActor(), type, flags), mElement0 (element0), - mElement1 (element1) + mElement1 (element1), + mFilterPairIndex(INVALID_FILTER_PAIR_INDEX) { } diff --git a/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.cpp b/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.cpp index de300003..a388dee0 100644 --- a/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.cpp +++ b/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.cpp @@ -91,7 +91,6 @@ public: FilterPairManager() : mPairs(PX_DEBUG_EXP("FilterPairManager Array")) , mFree(INVALID_FILTER_PAIR_INDEX) - , mInteractionToIndex(PX_DEBUG_EXP("FilterPairManager Hash")) {} PxU32 acquireIndex() @@ -112,18 +111,14 @@ public: } void releaseIndex(PxU32 index) - { - if(mPairs[index].getType()!=FilterPair::INVALID) - mInteractionToIndex.erase(mPairs[index].getPtr<void*>()); - + { mPairs[index].ptrAndType = mFree; mFree = index; } - void set(PxU32 index, void* ptr, FilterPair::Enum type) + void setPair(PxU32 index, Sc::ElementSimInteraction* ptr, FilterPair::Enum type) { mPairs[index] = FilterPair(ptr, type); - mInteractionToIndex[ptr] = index; } FilterPair& operator[](PxU32 index) @@ -131,10 +126,9 @@ public: return mPairs[index]; } - PxU32 findIndex(void* ptr) + PxU32 findIndex(Sc::ElementSimInteraction* ptr) { - const InteractionToIndex::Entry* pair = mInteractionToIndex.find(ptr); - return pair ? pair->second : INVALID_FILTER_PAIR_INDEX; + return ptr->getFilterPairIndex(); } private: @@ -142,7 +136,6 @@ private: Ps::Array<FilterPair> mPairs; uintptr_t mFree; - InteractionToIndex mInteractionToIndex; }; /* Sc::NPhaseCore methods */ @@ -711,7 +704,8 @@ Sc::ElementSimInteraction* Sc::NPhaseCore::createRbElementInteraction(const PxFi pair->raiseInteractionFlag(InteractionFlag::eIS_FILTER_PAIR); // Filter callback pair: Set the link to the interaction - mFilterPairManager->set(finfo.filterPairIndex, pair, FilterPair::ELEMENT_ELEMENT); + mFilterPairManager->setPair(finfo.filterPairIndex, pair, FilterPair::ELEMENT_ELEMENT); + pair->setFilterPairIndex(finfo.filterPairIndex); } return pair; @@ -790,8 +784,11 @@ Sc::ElementSimInteraction* Sc::NPhaseCore::createParticlePacketBodyInteraction(P actorElementPair->markAsFilterPair(finfo.filterPairIndex != INVALID_FILTER_PAIR_INDEX); - if(finfo.filterPairIndex != INVALID_FILTER_PAIR_INDEX) - mFilterPairManager->set(finfo.filterPairIndex, NULL, FilterPair::ELEMENT_ACTOR); + if (finfo.filterPairIndex != INVALID_FILTER_PAIR_INDEX) + { + mFilterPairManager->setPair(finfo.filterPairIndex, NULL, FilterPair::ELEMENT_ACTOR); + pbi->setFilterPairIndex(INVALID_FILTER_PAIR_INDEX); + } } ElementSimInteraction* pair = insertParticleElementRbElementPair(ps, s, actorElementPair, ccdPass); @@ -1143,7 +1140,7 @@ Sc::ElementSimInteraction* Sc::NPhaseCore::refilterInteraction(ElementSimInterac PxU32 filterPairIndex = INVALID_FILTER_PAIR_INDEX; if (pbi->readInteractionFlag(InteractionFlag::eIS_FILTER_PAIR)) { - filterPairIndex = mFilterPairManager->findIndex(aep); + filterPairIndex = mFilterPairManager->findIndex(pbi); PX_ASSERT(filterPairIndex!=INVALID_FILTER_PAIR_INDEX); callPairLost(pbi->getElement0(), pbi->getElement1(), filterPairIndex, false); @@ -1574,7 +1571,8 @@ Sc::ElementSimInteraction* Sc::NPhaseCore::convert(ElementSimInteraction* pair, // Mark the new interaction as a filter callback pair result->raiseInteractionFlag(InteractionFlag::eIS_FILTER_PAIR); - mFilterPairManager->set(filterInfo.filterPairIndex, result, FilterPair::ELEMENT_ELEMENT); + mFilterPairManager->setPair(filterInfo.filterPairIndex, result, FilterPair::ELEMENT_ELEMENT); + result->setFilterPairIndex(filterInfo.filterPairIndex); } if (pair->readInteractionFlag(InteractionFlag::eIS_FILTER_PAIR)) diff --git a/PhysX_3.4/Source/SimulationController/src/ScScene.cpp b/PhysX_3.4/Source/SimulationController/src/ScScene.cpp index 47869390..1bdeaffe 100644 --- a/PhysX_3.4/Source/SimulationController/src/ScScene.cpp +++ b/PhysX_3.4/Source/SimulationController/src/ScScene.cpp @@ -138,7 +138,7 @@ void PxcDisplayContactCacheStats(); class ScAfterIntegrationTask : public Cm::Task { public: - static const PxU32 MaxTasks = 128; + static const PxU32 MaxTasks = 256; private: const IG::NodeIndex* const mIndices; const PxU32 mNumBodies; @@ -277,7 +277,7 @@ public: virtual const char* getName() const { - return "ScScene.afterIntegration"; + return "ScScene.afterIntegrationTask"; } private: @@ -311,7 +311,7 @@ public: const IG::NodeIndex*const nodeIndices = islandSim.getActiveNodes(IG::Node::eRIGID_BODY_TYPE); - if(0) + if(1) { for(PxU32 i = 0; i < numBodies; i+=MaxBodiesPerTask) { @@ -3901,11 +3901,12 @@ void Sc::Scene::afterIntegration(PxBaseTask* continuation) PxsTransformCache& cache = getLowLevelContext()->getTransformCache(); Bp::BoundsArray& boundArray = getBoundsArray(); - mSimulationController->udpateScBodyAndShapeSim(cache, boundArray, continuation); - { PX_PROFILE_ZONE("AfterIntegration::lockStage", getContextId()); mLLContext->getLock().lock(); + + + mSimulationController->udpateScBodyAndShapeSim(cache, boundArray, continuation); const IG::IslandSim& islandSim = mSimpleIslandManager->getAccurateIslandSim(); @@ -6314,9 +6315,9 @@ void Sc::Scene::preallocateContactManagers(PxBaseTask* continuation) { //We allocate at least 1 element in this array to ensure that the onOverlapCreated functions don't go bang! - mPreallocatedContactManagers.reserve(totalCreatedPairs); - mPreallocatedShapeInteractions.reserve(totalCreatedPairs); - mPreallocatedInteractionMarkers.reserve(totalSuppressPairs); + mPreallocatedContactManagers.reserve(totalCreatedPairs+1); + mPreallocatedShapeInteractions.reserve(totalCreatedPairs+1); + mPreallocatedInteractionMarkers.reserve(totalSuppressPairs+1); mPreallocatedContactManagers.forceSize_Unsafe(totalCreatedPairs); mPreallocatedShapeInteractions.forceSize_Unsafe(totalCreatedPairs); diff --git a/PhysX_3.4/Source/SimulationController/src/ScShapeInteraction.cpp b/PhysX_3.4/Source/SimulationController/src/ScShapeInteraction.cpp index 66d0a4bf..8956983e 100644 --- a/PhysX_3.4/Source/SimulationController/src/ScShapeInteraction.cpp +++ b/PhysX_3.4/Source/SimulationController/src/ScShapeInteraction.cpp @@ -111,8 +111,6 @@ Sc::ShapeInteraction::ShapeInteraction(ShapeSim& s1, ShapeSim& s2, ActorPair* aP onActivate(contactManager); } - PX_ASSERT((&getShape0()) && (&getShape1())); - if(aPair) aPair->incRefCount(); } diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXExtensions.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXExtensions.mk index db528460..e63a0f83 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXExtensions.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXExtensions.mk @@ -114,7 +114,7 @@ PhysXExtensions_debug_hpaths += ./../../PhysX/src PhysXExtensions_debug_lpaths := PhysXExtensions_debug_lpaths += ./../../../../PxShared/lib/linux32 PhysXExtensions_debug_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_debug_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_debug_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_debug_defines += _DEBUG PhysXExtensions_debug_defines += PX_DEBUG=1 @@ -231,7 +231,7 @@ PhysXExtensions_checked_hpaths += ./../../PhysX/src PhysXExtensions_checked_lpaths := PhysXExtensions_checked_lpaths += ./../../../../PxShared/lib/linux32 PhysXExtensions_checked_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_checked_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_checked_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_checked_defines += NDEBUG PhysXExtensions_checked_defines += PX_CHECKED=1 @@ -347,7 +347,7 @@ PhysXExtensions_profile_hpaths += ./../../PhysX/src PhysXExtensions_profile_lpaths := PhysXExtensions_profile_lpaths += ./../../../../PxShared/lib/linux32 PhysXExtensions_profile_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_profile_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_profile_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_profile_defines += NDEBUG PhysXExtensions_profile_defines += PX_PROFILE=1 @@ -463,7 +463,7 @@ PhysXExtensions_release_hpaths += ./../../PhysX/src PhysXExtensions_release_lpaths := PhysXExtensions_release_lpaths += ./../../../../PxShared/lib/linux32 PhysXExtensions_release_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_release_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_release_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_release_defines += NDEBUG PhysXExtensions_release_defines += PX_SUPPORT_PVD=0 diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXExtensions.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXExtensions.mk index b7278007..e525a9bb 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXExtensions.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXExtensions.mk @@ -114,7 +114,7 @@ PhysXExtensions_debug_hpaths += ./../../PhysX/src PhysXExtensions_debug_lpaths := PhysXExtensions_debug_lpaths += ./../../../../PxShared/lib/linux64 PhysXExtensions_debug_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_debug_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_debug_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_debug_defines += _DEBUG PhysXExtensions_debug_defines += PX_DEBUG=1 @@ -231,7 +231,7 @@ PhysXExtensions_checked_hpaths += ./../../PhysX/src PhysXExtensions_checked_lpaths := PhysXExtensions_checked_lpaths += ./../../../../PxShared/lib/linux64 PhysXExtensions_checked_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_checked_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_checked_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_checked_defines += NDEBUG PhysXExtensions_checked_defines += PX_CHECKED=1 @@ -347,7 +347,7 @@ PhysXExtensions_profile_hpaths += ./../../PhysX/src PhysXExtensions_profile_lpaths := PhysXExtensions_profile_lpaths += ./../../../../PxShared/lib/linux64 PhysXExtensions_profile_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_profile_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_profile_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_profile_defines += NDEBUG PhysXExtensions_profile_defines += PX_PROFILE=1 @@ -463,7 +463,7 @@ PhysXExtensions_release_hpaths += ./../../PhysX/src PhysXExtensions_release_lpaths := PhysXExtensions_release_lpaths += ./../../../../PxShared/lib/linux64 PhysXExtensions_release_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_release_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_release_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_release_defines += NDEBUG PhysXExtensions_release_defines += PX_SUPPORT_PVD=0 diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXExtensions.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXExtensions.mk index f031e68b..2d07a6e8 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXExtensions.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXExtensions.mk @@ -116,7 +116,7 @@ PhysXExtensions_debug_hpaths += ./../../PhysX/src PhysXExtensions_debug_lpaths := PhysXExtensions_debug_lpaths += ./../../../../PxShared/lib/osx32 PhysXExtensions_debug_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_debug_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_debug_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_debug_defines += _DEBUG PhysXExtensions_debug_defines += PX_DEBUG=1 @@ -238,7 +238,7 @@ PhysXExtensions_checked_hpaths += ./../../PhysX/src PhysXExtensions_checked_lpaths := PhysXExtensions_checked_lpaths += ./../../../../PxShared/lib/osx32 PhysXExtensions_checked_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_checked_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_checked_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_checked_defines += NDEBUG PhysXExtensions_checked_defines += PX_CHECKED=1 @@ -359,7 +359,7 @@ PhysXExtensions_profile_hpaths += ./../../PhysX/src PhysXExtensions_profile_lpaths := PhysXExtensions_profile_lpaths += ./../../../../PxShared/lib/osx32 PhysXExtensions_profile_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_profile_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_profile_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_profile_defines += NDEBUG PhysXExtensions_profile_defines += PX_PROFILE=1 @@ -480,7 +480,7 @@ PhysXExtensions_release_hpaths += ./../../PhysX/src PhysXExtensions_release_lpaths := PhysXExtensions_release_lpaths += ./../../../../PxShared/lib/osx32 PhysXExtensions_release_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_release_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_release_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_release_defines += NDEBUG PhysXExtensions_release_defines += PX_SUPPORT_PVD=0 diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXExtensions.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXExtensions.mk index b7d1caf0..948415ae 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXExtensions.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXExtensions.mk @@ -116,7 +116,7 @@ PhysXExtensions_debug_hpaths += ./../../PhysX/src PhysXExtensions_debug_lpaths := PhysXExtensions_debug_lpaths += ./../../../../PxShared/lib/osx64 PhysXExtensions_debug_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_debug_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_debug_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_debug_defines += _DEBUG PhysXExtensions_debug_defines += PX_DEBUG=1 @@ -238,7 +238,7 @@ PhysXExtensions_checked_hpaths += ./../../PhysX/src PhysXExtensions_checked_lpaths := PhysXExtensions_checked_lpaths += ./../../../../PxShared/lib/osx64 PhysXExtensions_checked_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_checked_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_checked_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_checked_defines += NDEBUG PhysXExtensions_checked_defines += PX_CHECKED=1 @@ -359,7 +359,7 @@ PhysXExtensions_profile_hpaths += ./../../PhysX/src PhysXExtensions_profile_lpaths := PhysXExtensions_profile_lpaths += ./../../../../PxShared/lib/osx64 PhysXExtensions_profile_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_profile_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_profile_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_profile_defines += NDEBUG PhysXExtensions_profile_defines += PX_PROFILE=1 @@ -480,7 +480,7 @@ PhysXExtensions_release_hpaths += ./../../PhysX/src PhysXExtensions_release_lpaths := PhysXExtensions_release_lpaths += ./../../../../PxShared/lib/osx64 PhysXExtensions_release_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_release_defines += PX_BUILD_NUMBER=0 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=21749494 PhysXExtensions_release_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_release_defines += NDEBUG PhysXExtensions_release_defines += PX_SUPPORT_PVD=0 diff --git a/PhysX_3.4/Source/compiler/xcode_ios/PhysX.xcodeproj/project.pbxproj b/PhysX_3.4/Source/compiler/xcode_ios/PhysX.xcodeproj/project.pbxproj index cbf7eca5..17c698e6 100644 --- a/PhysX_3.4/Source/compiler/xcode_ios/PhysX.xcodeproj/project.pbxproj +++ b/PhysX_3.4/Source/compiler/xcode_ios/PhysX.xcodeproj/project.pbxproj @@ -7,223 +7,223 @@ objects = { /* Begin PBXBuildFile section of PhysX */ - FFFF5b980d107fcd5b980d10 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5bb033e07fcd5bb033e0 /* SceneQuery */; }; - FFFF5b986c607fcd5b986c60 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5bb075b07fcd5bb075b0 /* SimulationController */; }; - FFFF5785d4387fcd5785d438 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d4387fcd5785d438 /* NpActor.cpp */; }; - FFFF5785d4a07fcd5785d4a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d4a07fcd5785d4a0 /* NpAggregate.cpp */; }; - FFFF5785d5087fcd5785d508 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d5087fcd5785d508 /* NpArticulation.cpp */; }; - FFFF5785d5707fcd5785d570 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d5707fcd5785d570 /* NpArticulationJoint.cpp */; }; - FFFF5785d5d87fcd5785d5d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d5d87fcd5785d5d8 /* NpArticulationLink.cpp */; }; - FFFF5785d6407fcd5785d640 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d6407fcd5785d640 /* NpBatchQuery.cpp */; }; - FFFF5785d6a87fcd5785d6a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d6a87fcd5785d6a8 /* NpConstraint.cpp */; }; - FFFF5785d7107fcd5785d710 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d7107fcd5785d710 /* NpFactory.cpp */; }; - FFFF5785d7787fcd5785d778 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d7787fcd5785d778 /* NpMaterial.cpp */; }; - FFFF5785d7e07fcd5785d7e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d7e07fcd5785d7e0 /* NpMetaData.cpp */; }; - FFFF5785d8487fcd5785d848 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d8487fcd5785d848 /* NpPhysics.cpp */; }; - FFFF5785d8b07fcd5785d8b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d8b07fcd5785d8b0 /* NpPvdSceneQueryCollector.cpp */; }; - FFFF5785d9187fcd5785d918 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d9187fcd5785d918 /* NpReadCheck.cpp */; }; - FFFF5785d9807fcd5785d980 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d9807fcd5785d980 /* NpRigidDynamic.cpp */; }; - FFFF5785d9e87fcd5785d9e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785d9e87fcd5785d9e8 /* NpRigidStatic.cpp */; }; - FFFF5785da507fcd5785da50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785da507fcd5785da50 /* NpScene.cpp */; }; - FFFF5785dab87fcd5785dab8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785dab87fcd5785dab8 /* NpSceneQueries.cpp */; }; - FFFF5785db207fcd5785db20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785db207fcd5785db20 /* NpSerializerAdapter.cpp */; }; - FFFF5785db887fcd5785db88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785db887fcd5785db88 /* NpShape.cpp */; }; - FFFF5785dbf07fcd5785dbf0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785dbf07fcd5785dbf0 /* NpShapeManager.cpp */; }; - FFFF5785dc587fcd5785dc58 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785dc587fcd5785dc58 /* NpSpatialIndex.cpp */; }; - FFFF5785dcc07fcd5785dcc0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785dcc07fcd5785dcc0 /* NpVolumeCache.cpp */; }; - FFFF5785dd287fcd5785dd28 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785dd287fcd5785dd28 /* NpWriteCheck.cpp */; }; - FFFF5785dd907fcd5785dd90 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785dd907fcd5785dd90 /* PvdMetaDataPvdBinding.cpp */; }; - FFFF5785ddf87fcd5785ddf8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785ddf87fcd5785ddf8 /* PvdPhysicsClient.cpp */; }; - FFFF5785e0007fcd5785e000 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785e0007fcd5785e000 /* particles/NpParticleFluid.cpp */; }; - FFFF5785e0687fcd5785e068 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785e0687fcd5785e068 /* particles/NpParticleSystem.cpp */; }; - FFFF5785e8207fcd5785e820 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785e8207fcd5785e820 /* buffering/ScbActor.cpp */; }; - FFFF5785e8887fcd5785e888 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785e8887fcd5785e888 /* buffering/ScbAggregate.cpp */; }; - FFFF5785e8f07fcd5785e8f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785e8f07fcd5785e8f0 /* buffering/ScbBase.cpp */; }; - FFFF5785e9587fcd5785e958 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785e9587fcd5785e958 /* buffering/ScbCloth.cpp */; }; - FFFF5785e9c07fcd5785e9c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785e9c07fcd5785e9c0 /* buffering/ScbMetaData.cpp */; }; - FFFF5785ea287fcd5785ea28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785ea287fcd5785ea28 /* buffering/ScbParticleSystem.cpp */; }; - FFFF5785ea907fcd5785ea90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785ea907fcd5785ea90 /* buffering/ScbScene.cpp */; }; - FFFF5785eaf87fcd5785eaf8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785eaf87fcd5785eaf8 /* buffering/ScbScenePvdClient.cpp */; }; - FFFF5785eb607fcd5785eb60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785eb607fcd5785eb60 /* buffering/ScbShape.cpp */; }; - FFFF5785ed007fcd5785ed00 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785ed007fcd5785ed00 /* cloth/NpCloth.cpp */; }; - FFFF5785ed687fcd5785ed68 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785ed687fcd5785ed68 /* cloth/NpClothFabric.cpp */; }; - FFFF5785edd07fcd5785edd0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785edd07fcd5785edd0 /* cloth/NpClothParticleData.cpp */; }; - FFFF5785ee387fcd5785ee38 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5785ee387fcd5785ee38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; - FFFF5785a3a87fcd5785a3a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5785a3a87fcd5785a3a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; - FFFF5785a4107fcd5785a410 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5785a4107fcd5785a410 /* core/src/PxMetaDataObjects.cpp */; }; + FFFF5cb4f8c07fb05cb4f8c0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5cb732c07fb05cb732c0 /* SceneQuery */; }; + FFFF5cb4f9207fb05cb4f920 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5cb778e07fb05cb778e0 /* SimulationController */; }; + FFFF5a9e40387fb05a9e4038 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e40387fb05a9e4038 /* NpActor.cpp */; }; + FFFF5a9e40a07fb05a9e40a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e40a07fb05a9e40a0 /* NpAggregate.cpp */; }; + FFFF5a9e41087fb05a9e4108 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e41087fb05a9e4108 /* NpArticulation.cpp */; }; + FFFF5a9e41707fb05a9e4170 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e41707fb05a9e4170 /* NpArticulationJoint.cpp */; }; + FFFF5a9e41d87fb05a9e41d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e41d87fb05a9e41d8 /* NpArticulationLink.cpp */; }; + FFFF5a9e42407fb05a9e4240 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e42407fb05a9e4240 /* NpBatchQuery.cpp */; }; + FFFF5a9e42a87fb05a9e42a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e42a87fb05a9e42a8 /* NpConstraint.cpp */; }; + FFFF5a9e43107fb05a9e4310 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e43107fb05a9e4310 /* NpFactory.cpp */; }; + FFFF5a9e43787fb05a9e4378 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e43787fb05a9e4378 /* NpMaterial.cpp */; }; + FFFF5a9e43e07fb05a9e43e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e43e07fb05a9e43e0 /* NpMetaData.cpp */; }; + FFFF5a9e44487fb05a9e4448 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e44487fb05a9e4448 /* NpPhysics.cpp */; }; + FFFF5a9e44b07fb05a9e44b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e44b07fb05a9e44b0 /* NpPvdSceneQueryCollector.cpp */; }; + FFFF5a9e45187fb05a9e4518 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e45187fb05a9e4518 /* NpReadCheck.cpp */; }; + FFFF5a9e45807fb05a9e4580 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e45807fb05a9e4580 /* NpRigidDynamic.cpp */; }; + FFFF5a9e45e87fb05a9e45e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e45e87fb05a9e45e8 /* NpRigidStatic.cpp */; }; + FFFF5a9e46507fb05a9e4650 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e46507fb05a9e4650 /* NpScene.cpp */; }; + FFFF5a9e46b87fb05a9e46b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e46b87fb05a9e46b8 /* NpSceneQueries.cpp */; }; + FFFF5a9e47207fb05a9e4720 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e47207fb05a9e4720 /* NpSerializerAdapter.cpp */; }; + FFFF5a9e47887fb05a9e4788 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e47887fb05a9e4788 /* NpShape.cpp */; }; + FFFF5a9e47f07fb05a9e47f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e47f07fb05a9e47f0 /* NpShapeManager.cpp */; }; + FFFF5a9e48587fb05a9e4858 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e48587fb05a9e4858 /* NpSpatialIndex.cpp */; }; + FFFF5a9e48c07fb05a9e48c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e48c07fb05a9e48c0 /* NpVolumeCache.cpp */; }; + FFFF5a9e49287fb05a9e4928 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e49287fb05a9e4928 /* NpWriteCheck.cpp */; }; + FFFF5a9e49907fb05a9e4990 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e49907fb05a9e4990 /* PvdMetaDataPvdBinding.cpp */; }; + FFFF5a9e49f87fb05a9e49f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e49f87fb05a9e49f8 /* PvdPhysicsClient.cpp */; }; + FFFF5a9e4c007fb05a9e4c00 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e4c007fb05a9e4c00 /* particles/NpParticleFluid.cpp */; }; + FFFF5a9e4c687fb05a9e4c68 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e4c687fb05a9e4c68 /* particles/NpParticleSystem.cpp */; }; + FFFF5a9e54207fb05a9e5420 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e54207fb05a9e5420 /* buffering/ScbActor.cpp */; }; + FFFF5a9e54887fb05a9e5488 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e54887fb05a9e5488 /* buffering/ScbAggregate.cpp */; }; + FFFF5a9e54f07fb05a9e54f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e54f07fb05a9e54f0 /* buffering/ScbBase.cpp */; }; + FFFF5a9e55587fb05a9e5558 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e55587fb05a9e5558 /* buffering/ScbCloth.cpp */; }; + FFFF5a9e55c07fb05a9e55c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e55c07fb05a9e55c0 /* buffering/ScbMetaData.cpp */; }; + FFFF5a9e56287fb05a9e5628 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e56287fb05a9e5628 /* buffering/ScbParticleSystem.cpp */; }; + FFFF5a9e56907fb05a9e5690 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e56907fb05a9e5690 /* buffering/ScbScene.cpp */; }; + FFFF5a9e56f87fb05a9e56f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e56f87fb05a9e56f8 /* buffering/ScbScenePvdClient.cpp */; }; + FFFF5a9e57607fb05a9e5760 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e57607fb05a9e5760 /* buffering/ScbShape.cpp */; }; + FFFF5a9e59007fb05a9e5900 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e59007fb05a9e5900 /* cloth/NpCloth.cpp */; }; + FFFF5a9e59687fb05a9e5968 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e59687fb05a9e5968 /* cloth/NpClothFabric.cpp */; }; + FFFF5a9e59d07fb05a9e59d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e59d07fb05a9e59d0 /* cloth/NpClothParticleData.cpp */; }; + FFFF5a9e5a387fb05a9e5a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e5a387fb05a9e5a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; + FFFF5a9e25a87fb05a9e25a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5a9e25a87fb05a9e25a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; + FFFF5a9e26107fb05a9e2610 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5a9e26107fb05a9e2610 /* core/src/PxMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD56fa61a07fcd56fa61a0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5785c6007fcd5785c600 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785c6687fcd5785c668 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785c6d07fcd5785c6d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785c7387fcd5785c738 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785c7a07fcd5785c7a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785c8087fcd5785c808 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785c8707fcd5785c870 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785c8d87fcd5785c8d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785c9407fcd5785c940 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785c9a87fcd5785c9a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ca107fcd5785ca10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ca787fcd5785ca78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785cae07fcd5785cae0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785cb487fcd5785cb48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785cbb07fcd5785cbb0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785cc187fcd5785cc18 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785cc807fcd5785cc80 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785cce87fcd5785cce8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785cd507fcd5785cd50 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785cdb87fcd5785cdb8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ce207fcd5785ce20 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ce887fcd5785ce88 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785cef07fcd5785cef0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785cf587fcd5785cf58 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785cfc07fcd5785cfc0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785d0287fcd5785d028 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785d0907fcd5785d090 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785d0f87fcd5785d0f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785d1607fcd5785d160 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785d1c87fcd5785d1c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785d2307fcd5785d230 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785d2987fcd5785d298 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785d3007fcd5785d300 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785d3687fcd5785d368 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785d3d07fcd5785d3d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785d4387fcd5785d438 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d4a07fcd5785d4a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d5087fcd5785d508 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d5707fcd5785d570 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d5d87fcd5785d5d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d6407fcd5785d640 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d6a87fcd5785d6a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d7107fcd5785d710 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d7787fcd5785d778 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d7e07fcd5785d7e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d8487fcd5785d848 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d8b07fcd5785d8b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d9187fcd5785d918 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d9807fcd5785d980 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785d9e87fcd5785d9e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785da507fcd5785da50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785dab87fcd5785dab8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785db207fcd5785db20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785db887fcd5785db88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785dbf07fcd5785dbf0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785dc587fcd5785dc58 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785dcc07fcd5785dcc0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785dd287fcd5785dd28 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785dd907fcd5785dd90 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785ddf87fcd5785ddf8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785de607fcd5785de60 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785dec87fcd5785dec8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785df307fcd5785df30 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785df987fcd5785df98 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e0007fcd5785e000 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785e0687fcd5785e068 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785e0d07fcd5785e0d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e1387fcd5785e138 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e1a07fcd5785e1a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e2087fcd5785e208 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e2707fcd5785e270 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e2d87fcd5785e2d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e3407fcd5785e340 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e3a87fcd5785e3a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e4107fcd5785e410 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e4787fcd5785e478 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e4e07fcd5785e4e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e5487fcd5785e548 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e5b07fcd5785e5b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e6187fcd5785e618 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e6807fcd5785e680 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e6e87fcd5785e6e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e7507fcd5785e750 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e7b87fcd5785e7b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785e8207fcd5785e820 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785e8887fcd5785e888 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785e8f07fcd5785e8f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785e9587fcd5785e958 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785e9c07fcd5785e9c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785ea287fcd5785ea28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785ea907fcd5785ea90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785eaf87fcd5785eaf8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785eb607fcd5785eb60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785ebc87fcd5785ebc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ec307fcd5785ec30 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ec987fcd5785ec98 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ed007fcd5785ed00 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785ed687fcd5785ed68 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785edd07fcd5785edd0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785ee387fcd5785ee38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57856c007fcd57856c00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD57856c687fcd57856c68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD57856cd07fcd57856cd0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD57856d387fcd57856d38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD57856da07fcd57856da0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD57856e087fcd57856e08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD57856e707fcd57856e70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD57856ed87fcd57856ed8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD57856f407fcd57856f40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD57856fa87fcd57856fa8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD578570107fcd57857010 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD578570787fcd57857078 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD578570e07fcd578570e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD578571487fcd57857148 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; - FFFD578571b07fcd578571b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD578572187fcd57857218 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD578572807fcd57857280 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD578572e87fcd578572e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; - FFFD578573507fcd57857350 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD578573b87fcd578573b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD578574207fcd57857420 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD578574887fcd57857488 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD578574f07fcd578574f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD578575587fcd57857558 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD578575c07fcd578575c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD578576287fcd57857628 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD578576907fcd57857690 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD578576f87fcd578576f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD578577607fcd57857760 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD578577c87fcd578577c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD578578307fcd57857830 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD578578987fcd57857898 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD578579007fcd57857900 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD578579687fcd57857968 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD578579d07fcd578579d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857a387fcd57857a38 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857aa07fcd57857aa0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857b087fcd57857b08 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857b707fcd57857b70 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857bd87fcd57857bd8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857c407fcd57857c40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857ca87fcd57857ca8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857d107fcd57857d10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857d787fcd57857d78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857de07fcd57857de0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857e487fcd57857e48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857eb07fcd57857eb0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857f187fcd57857f18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857f807fcd57857f80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD57857fe87fcd57857fe8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD578580507fcd57858050 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD578580b87fcd578580b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD578581207fcd57858120 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD578581887fcd57858188 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a0007fcd5785a000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a0687fcd5785a068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a0d07fcd5785a0d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a1387fcd5785a138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a1a07fcd5785a1a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a2087fcd5785a208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a2707fcd5785a270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a2d87fcd5785a2d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a3407fcd5785a340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a3a87fcd5785a3a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5785a4107fcd5785a410 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5cb2e4807fb05cb2e480 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a9e32007fb05a9e3200 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e32687fb05a9e3268 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e32d07fb05a9e32d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e33387fb05a9e3338 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e33a07fb05a9e33a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e34087fb05a9e3408 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e34707fb05a9e3470 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e34d87fb05a9e34d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e35407fb05a9e3540 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e35a87fb05a9e35a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e36107fb05a9e3610 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e36787fb05a9e3678 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e36e07fb05a9e36e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e37487fb05a9e3748 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e37b07fb05a9e37b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e38187fb05a9e3818 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e38807fb05a9e3880 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e38e87fb05a9e38e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e39507fb05a9e3950 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e39b87fb05a9e39b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3a207fb05a9e3a20 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3a887fb05a9e3a88 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3af07fb05a9e3af0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3b587fb05a9e3b58 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3bc07fb05a9e3bc0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3c287fb05a9e3c28 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3c907fb05a9e3c90 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3cf87fb05a9e3cf8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3d607fb05a9e3d60 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3dc87fb05a9e3dc8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3e307fb05a9e3e30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3e987fb05a9e3e98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3f007fb05a9e3f00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3f687fb05a9e3f68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e3fd07fb05a9e3fd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e40387fb05a9e4038 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e40a07fb05a9e40a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e41087fb05a9e4108 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e41707fb05a9e4170 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e41d87fb05a9e41d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e42407fb05a9e4240 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e42a87fb05a9e42a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e43107fb05a9e4310 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e43787fb05a9e4378 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e43e07fb05a9e43e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e44487fb05a9e4448 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e44b07fb05a9e44b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e45187fb05a9e4518 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e45807fb05a9e4580 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e45e87fb05a9e45e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e46507fb05a9e4650 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e46b87fb05a9e46b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e47207fb05a9e4720 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e47887fb05a9e4788 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e47f07fb05a9e47f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e48587fb05a9e4858 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e48c07fb05a9e48c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e49287fb05a9e4928 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e49907fb05a9e4990 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e49f87fb05a9e49f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4a607fb05a9e4a60 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4ac87fb05a9e4ac8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4b307fb05a9e4b30 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4b987fb05a9e4b98 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4c007fb05a9e4c00 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4c687fb05a9e4c68 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4cd07fb05a9e4cd0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4d387fb05a9e4d38 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4da07fb05a9e4da0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4e087fb05a9e4e08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4e707fb05a9e4e70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4ed87fb05a9e4ed8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4f407fb05a9e4f40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e4fa87fb05a9e4fa8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e50107fb05a9e5010 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e50787fb05a9e5078 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e50e07fb05a9e50e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e51487fb05a9e5148 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e51b07fb05a9e51b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e52187fb05a9e5218 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e52807fb05a9e5280 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e52e87fb05a9e52e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e53507fb05a9e5350 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e53b87fb05a9e53b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e54207fb05a9e5420 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e54887fb05a9e5488 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e54f07fb05a9e54f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e55587fb05a9e5558 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e55c07fb05a9e55c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e56287fb05a9e5628 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e56907fb05a9e5690 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e56f87fb05a9e56f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e57607fb05a9e5760 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e57c87fb05a9e57c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e58307fb05a9e5830 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e58987fb05a9e5898 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e59007fb05a9e5900 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e59687fb05a9e5968 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e59d07fb05a9e59d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e5a387fb05a9e5a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e0c007fb05a9e0c00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e0c687fb05a9e0c68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e0cd07fb05a9e0cd0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e0d387fb05a9e0d38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e0da07fb05a9e0da0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e0e087fb05a9e0e08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e0e707fb05a9e0e70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e0ed87fb05a9e0ed8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e0f407fb05a9e0f40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e0fa87fb05a9e0fa8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e10107fb05a9e1010 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e10787fb05a9e1078 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e10e07fb05a9e10e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e11487fb05a9e1148 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e11b07fb05a9e11b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e12187fb05a9e1218 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e12807fb05a9e1280 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e12e87fb05a9e12e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e13507fb05a9e1350 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e13b87fb05a9e13b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e14207fb05a9e1420 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e14887fb05a9e1488 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e14f07fb05a9e14f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e15587fb05a9e1558 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e15c07fb05a9e15c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e16287fb05a9e1628 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e16907fb05a9e1690 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e16f87fb05a9e16f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e17607fb05a9e1760 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e17c87fb05a9e17c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e18307fb05a9e1830 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e18987fb05a9e1898 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e19007fb05a9e1900 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e19687fb05a9e1968 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e19d07fb05a9e19d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1a387fb05a9e1a38 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1aa07fb05a9e1aa0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1b087fb05a9e1b08 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1b707fb05a9e1b70 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1bd87fb05a9e1bd8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1c407fb05a9e1c40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1ca87fb05a9e1ca8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1d107fb05a9e1d10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1d787fb05a9e1d78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1de07fb05a9e1de0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1e487fb05a9e1e48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1eb07fb05a9e1eb0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1f187fb05a9e1f18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1f807fb05a9e1f80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e1fe87fb05a9e1fe8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e20507fb05a9e2050 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e20b87fb05a9e20b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e21207fb05a9e2120 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e21887fb05a9e2188 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e22007fb05a9e2200 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e22687fb05a9e2268 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e22d07fb05a9e22d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e23387fb05a9e2338 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e23a07fb05a9e23a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e24087fb05a9e2408 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e24707fb05a9e2470 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e24d87fb05a9e24d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e25407fb05a9e2540 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e25a87fb05a9e25a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e26107fb05a9e2610 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF256fa61a07fcd56fa61a0 /* Resources */ = { + FFF25cb2e4807fb05cb2e480 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -233,7 +233,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC56fa61a07fcd56fa61a0 /* Frameworks */ = { + FFFC5cb2e4807fb05cb2e480 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -243,52 +243,52 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF856fa61a07fcd56fa61a0 /* Sources */ = { + FFF85cb2e4807fb05cb2e480 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5785d4387fcd5785d438, - FFFF5785d4a07fcd5785d4a0, - FFFF5785d5087fcd5785d508, - FFFF5785d5707fcd5785d570, - FFFF5785d5d87fcd5785d5d8, - FFFF5785d6407fcd5785d640, - FFFF5785d6a87fcd5785d6a8, - FFFF5785d7107fcd5785d710, - FFFF5785d7787fcd5785d778, - FFFF5785d7e07fcd5785d7e0, - FFFF5785d8487fcd5785d848, - FFFF5785d8b07fcd5785d8b0, - FFFF5785d9187fcd5785d918, - FFFF5785d9807fcd5785d980, - FFFF5785d9e87fcd5785d9e8, - FFFF5785da507fcd5785da50, - FFFF5785dab87fcd5785dab8, - FFFF5785db207fcd5785db20, - FFFF5785db887fcd5785db88, - FFFF5785dbf07fcd5785dbf0, - FFFF5785dc587fcd5785dc58, - FFFF5785dcc07fcd5785dcc0, - FFFF5785dd287fcd5785dd28, - FFFF5785dd907fcd5785dd90, - FFFF5785ddf87fcd5785ddf8, - FFFF5785e0007fcd5785e000, - FFFF5785e0687fcd5785e068, - FFFF5785e8207fcd5785e820, - FFFF5785e8887fcd5785e888, - FFFF5785e8f07fcd5785e8f0, - FFFF5785e9587fcd5785e958, - FFFF5785e9c07fcd5785e9c0, - FFFF5785ea287fcd5785ea28, - FFFF5785ea907fcd5785ea90, - FFFF5785eaf87fcd5785eaf8, - FFFF5785eb607fcd5785eb60, - FFFF5785ed007fcd5785ed00, - FFFF5785ed687fcd5785ed68, - FFFF5785edd07fcd5785edd0, - FFFF5785ee387fcd5785ee38, - FFFF5785a3a87fcd5785a3a8, - FFFF5785a4107fcd5785a410, + FFFF5a9e40387fb05a9e4038, + FFFF5a9e40a07fb05a9e40a0, + FFFF5a9e41087fb05a9e4108, + FFFF5a9e41707fb05a9e4170, + FFFF5a9e41d87fb05a9e41d8, + FFFF5a9e42407fb05a9e4240, + FFFF5a9e42a87fb05a9e42a8, + FFFF5a9e43107fb05a9e4310, + FFFF5a9e43787fb05a9e4378, + FFFF5a9e43e07fb05a9e43e0, + FFFF5a9e44487fb05a9e4448, + FFFF5a9e44b07fb05a9e44b0, + FFFF5a9e45187fb05a9e4518, + FFFF5a9e45807fb05a9e4580, + FFFF5a9e45e87fb05a9e45e8, + FFFF5a9e46507fb05a9e4650, + FFFF5a9e46b87fb05a9e46b8, + FFFF5a9e47207fb05a9e4720, + FFFF5a9e47887fb05a9e4788, + FFFF5a9e47f07fb05a9e47f0, + FFFF5a9e48587fb05a9e4858, + FFFF5a9e48c07fb05a9e48c0, + FFFF5a9e49287fb05a9e4928, + FFFF5a9e49907fb05a9e4990, + FFFF5a9e49f87fb05a9e49f8, + FFFF5a9e4c007fb05a9e4c00, + FFFF5a9e4c687fb05a9e4c68, + FFFF5a9e54207fb05a9e5420, + FFFF5a9e54887fb05a9e5488, + FFFF5a9e54f07fb05a9e54f0, + FFFF5a9e55587fb05a9e5558, + FFFF5a9e55c07fb05a9e55c0, + FFFF5a9e56287fb05a9e5628, + FFFF5a9e56907fb05a9e5690, + FFFF5a9e56f87fb05a9e56f8, + FFFF5a9e57607fb05a9e5760, + FFFF5a9e59007fb05a9e5900, + FFFF5a9e59687fb05a9e5968, + FFFF5a9e59d07fb05a9e59d0, + FFFF5a9e5a387fb05a9e5a38, + FFFF5a9e25a87fb05a9e25a8, + FFFF5a9e26107fb05a9e2610, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -297,112 +297,112 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF45b980ff07fcd5b980ff0 /* PBXTargetDependency */ = { + FFF45cb4fe207fb05cb4fe20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA56cac0107fcd56cac010 /* LowLevel */; - targetProxy = FFF556cac0107fcd56cac010 /* PBXContainerItemProxy */; + target = FFFA5b308fd07fb05b308fd0 /* LowLevel */; + targetProxy = FFF55b308fd07fb05b308fd0 /* PBXContainerItemProxy */; }; - FFF45b980b907fcd5b980b90 /* PBXTargetDependency */ = { + FFF45cb4fe807fb05cb4fe80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5879adc07fcd5879adc0 /* LowLevelAABB */; - targetProxy = FFF55879adc07fcd5879adc0 /* PBXContainerItemProxy */; + target = FFFA5c8058807fb05c805880 /* LowLevelAABB */; + targetProxy = FFF55c8058807fb05c805880 /* PBXContainerItemProxy */; }; - FFF45b980c507fcd5b980c50 /* PBXTargetDependency */ = { + FFF45cb531707fb05cb53170 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA58692f107fcd58692f10 /* LowLevelCloth */; - targetProxy = FFF558692f107fcd58692f10 /* PBXContainerItemProxy */; + target = FFFA5c8281f07fb05c8281f0 /* LowLevelCloth */; + targetProxy = FFF55c8281f07fb05c8281f0 /* PBXContainerItemProxy */; }; - FFF45b980bf07fcd5b980bf0 /* PBXTargetDependency */ = { + FFF45cb531107fb05cb53110 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA56dc69f07fcd56dc69f0 /* LowLevelDynamics */; - targetProxy = FFF556dc69f07fcd56dc69f0 /* PBXContainerItemProxy */; + target = FFFA5b45afc07fb05b45afc0 /* LowLevelDynamics */; + targetProxy = FFF55b45afc07fb05b45afc0 /* PBXContainerItemProxy */; }; - FFF45b980cb07fcd5b980cb0 /* PBXTargetDependency */ = { + FFF45cb531d07fb05cb531d0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA585295c07fcd585295c0 /* LowLevelParticles */; - targetProxy = FFF5585295c07fcd585295c0 /* PBXContainerItemProxy */; + target = FFFA5b322ac07fb05b322ac0 /* LowLevelParticles */; + targetProxy = FFF55b322ac07fb05b322ac0 /* PBXContainerItemProxy */; }; - FFF456dfa8007fcd56dfa800 /* PBXTargetDependency */ = { + FFF45cb52c107fb05cb52c10 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA56e143207fcd56e14320 /* PhysXCommon */; - targetProxy = FFF556e143207fcd56e14320 /* PBXContainerItemProxy */; + target = FFFA5b2fb4e07fb05b2fb4e0 /* PhysXCommon */; + targetProxy = FFF55b2fb4e07fb05b2fb4e0 /* PBXContainerItemProxy */; }; - FFF456fa66a07fcd56fa66a0 /* PBXTargetDependency */ = { + FFF45cb2e7a07fb05cb2e7a0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA585016d07fcd585016d0 /* PxFoundation */; - targetProxy = FFF5585016d07fcd585016d0 /* PBXContainerItemProxy */; + target = FFFA5b080a507fb05b080a50 /* PxFoundation */; + targetProxy = FFF55b080a507fb05b080a50 /* PBXContainerItemProxy */; }; - FFF456fa66407fcd56fa6640 /* PBXTargetDependency */ = { + FFF45cb2e4507fb05cb2e450 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA582fabb07fcd582fabb0 /* PxPvdSDK */; - targetProxy = FFF5582fabb07fcd582fabb0 /* PBXContainerItemProxy */; + target = FFFA5b4338707fb05b433870 /* PxPvdSDK */; + targetProxy = FFF55b4338707fb05b433870 /* PBXContainerItemProxy */; }; - FFF45b986c907fcd5b986c90 /* PBXTargetDependency */ = { + FFF45cb4f9507fb05cb4f950 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA585c9d007fcd585c9d00 /* PxTask */; - targetProxy = FFF5585c9d007fcd585c9d00 /* PBXContainerItemProxy */; + target = FFFA5c8302207fb05c830220 /* PxTask */; + targetProxy = FFF55c8302207fb05c830220 /* PBXContainerItemProxy */; }; - FFF45b980d107fcd5b980d10 /* PBXTargetDependency */ = { + FFF45cb4f8c07fb05cb4f8c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5bb033e07fcd5bb033e0 /* SceneQuery */; - targetProxy = FFF55bb033e07fcd5bb033e0 /* PBXContainerItemProxy */; + target = FFFA5cb732c07fb05cb732c0 /* SceneQuery */; + targetProxy = FFF55cb732c07fb05cb732c0 /* PBXContainerItemProxy */; }; - FFF45b986c607fcd5b986c60 /* PBXTargetDependency */ = { + FFF45cb4f9207fb05cb4f920 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5bb075b07fcd5bb075b0 /* SimulationController */; - targetProxy = FFF55bb075b07fcd5bb075b0 /* PBXContainerItemProxy */; + target = FFFA5cb778e07fb05cb778e0 /* SimulationController */; + targetProxy = FFF55cb778e07fb05cb778e0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCharacterKinematic */ - FFFF56e39ea07fcd56e39ea0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD586bc1607fcd586bc160 /* PhysXExtensions */; }; - FFFF5980cc787fcd5980cc78 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980cc787fcd5980cc78 /* CctBoxController.cpp */; }; - FFFF5980cce07fcd5980cce0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980cce07fcd5980cce0 /* CctCapsuleController.cpp */; }; - FFFF5980cd487fcd5980cd48 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980cd487fcd5980cd48 /* CctCharacterController.cpp */; }; - FFFF5980cdb07fcd5980cdb0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980cdb07fcd5980cdb0 /* CctCharacterControllerCallbacks.cpp */; }; - FFFF5980ce187fcd5980ce18 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980ce187fcd5980ce18 /* CctCharacterControllerManager.cpp */; }; - FFFF5980ce807fcd5980ce80 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980ce807fcd5980ce80 /* CctController.cpp */; }; - FFFF5980cee87fcd5980cee8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980cee87fcd5980cee8 /* CctObstacleContext.cpp */; }; - FFFF5980cf507fcd5980cf50 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980cf507fcd5980cf50 /* CctSweptBox.cpp */; }; - FFFF5980cfb87fcd5980cfb8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980cfb87fcd5980cfb8 /* CctSweptCapsule.cpp */; }; - FFFF5980d0207fcd5980d020 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980d0207fcd5980d020 /* CctSweptVolume.cpp */; }; + FFFF5cb543d07fb05cb543d0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5cb609d07fb05cb609d0 /* PhysXExtensions */; }; + FFFF5a9ea2787fb05a9ea278 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea2787fb05a9ea278 /* CctBoxController.cpp */; }; + FFFF5a9ea2e07fb05a9ea2e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea2e07fb05a9ea2e0 /* CctCapsuleController.cpp */; }; + FFFF5a9ea3487fb05a9ea348 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea3487fb05a9ea348 /* CctCharacterController.cpp */; }; + FFFF5a9ea3b07fb05a9ea3b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea3b07fb05a9ea3b0 /* CctCharacterControllerCallbacks.cpp */; }; + FFFF5a9ea4187fb05a9ea418 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea4187fb05a9ea418 /* CctCharacterControllerManager.cpp */; }; + FFFF5a9ea4807fb05a9ea480 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea4807fb05a9ea480 /* CctController.cpp */; }; + FFFF5a9ea4e87fb05a9ea4e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea4e87fb05a9ea4e8 /* CctObstacleContext.cpp */; }; + FFFF5a9ea5507fb05a9ea550 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea5507fb05a9ea550 /* CctSweptBox.cpp */; }; + FFFF5a9ea5b87fb05a9ea5b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea5b87fb05a9ea5b8 /* CctSweptCapsule.cpp */; }; + FFFF5a9ea6207fb05a9ea620 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea6207fb05a9ea620 /* CctSweptVolume.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b986ca07fcd5b986ca0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD56e3c1307fcd56e3c130 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD56e3c1987fcd56e3c198 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD56e3c2007fcd56e3c200 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; - FFFD56e3c2687fcd56e3c268 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD56e3c2d07fcd56e3c2d0 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; - FFFD56e3c3387fcd56e3c338 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD56e3c3a07fcd56e3c3a0 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; - FFFD56e3c4087fcd56e3c408 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980c8007fcd5980c800 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980c8687fcd5980c868 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980c8d07fcd5980c8d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980c9387fcd5980c938 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980c9a07fcd5980c9a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980ca087fcd5980ca08 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980ca707fcd5980ca70 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980cad87fcd5980cad8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980cb407fcd5980cb40 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980cba87fcd5980cba8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980cc107fcd5980cc10 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980cc787fcd5980cc78 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980cce07fcd5980cce0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980cd487fcd5980cd48 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980cdb07fcd5980cdb0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980ce187fcd5980ce18 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980ce807fcd5980ce80 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980cee87fcd5980cee8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980cf507fcd5980cf50 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980cfb87fcd5980cfb8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980d0207fcd5980d020 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5cb4fa707fb05cb4fa70 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5cb56b707fb05cb56b70 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb56bd87fb05cb56bd8 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb56c407fb05cb56c40 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb56ca87fb05cb56ca8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb56d107fb05cb56d10 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb56d787fb05cb56d78 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb56de07fb05cb56de0 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb56e487fb05cb56e48 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e9e007fb05a9e9e00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e9e687fb05a9e9e68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e9ed07fb05a9e9ed0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e9f387fb05a9e9f38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9e9fa07fb05a9e9fa0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea0087fb05a9ea008 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea0707fb05a9ea070 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea0d87fb05a9ea0d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea1407fb05a9ea140 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea1a87fb05a9ea1a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea2107fb05a9ea210 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea2787fb05a9ea278 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea2e07fb05a9ea2e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea3487fb05a9ea348 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea3b07fb05a9ea3b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea4187fb05a9ea418 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea4807fb05a9ea480 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea4e87fb05a9ea4e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea5507fb05a9ea550 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea5b87fb05a9ea5b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ea6207fb05a9ea620 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25b986ca07fcd5b986ca0 /* Resources */ = { + FFF25cb4fa707fb05cb4fa70 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -412,7 +412,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b986ca07fcd5b986ca0 /* Frameworks */ = { + FFFC5cb4fa707fb05cb4fa70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -422,20 +422,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b986ca07fcd5b986ca0 /* Sources */ = { + FFF85cb4fa707fb05cb4fa70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5980cc787fcd5980cc78, - FFFF5980cce07fcd5980cce0, - FFFF5980cd487fcd5980cd48, - FFFF5980cdb07fcd5980cdb0, - FFFF5980ce187fcd5980ce18, - FFFF5980ce807fcd5980ce80, - FFFF5980cee87fcd5980cee8, - FFFF5980cf507fcd5980cf50, - FFFF5980cfb87fcd5980cfb8, - FFFF5980d0207fcd5980d020, + FFFF5a9ea2787fb05a9ea278, + FFFF5a9ea2e07fb05a9ea2e0, + FFFF5a9ea3487fb05a9ea348, + FFFF5a9ea3b07fb05a9ea3b0, + FFFF5a9ea4187fb05a9ea418, + FFFF5a9ea4807fb05a9ea480, + FFFF5a9ea4e87fb05a9ea4e8, + FFFF5a9ea5507fb05a9ea550, + FFFF5a9ea5b87fb05a9ea5b8, + FFFF5a9ea6207fb05a9ea620, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -444,91 +444,91 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF456e393907fcd56e39390 /* PBXTargetDependency */ = { + FFF45cb560007fb05cb56000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA56e143207fcd56e14320 /* PhysXCommon */; - targetProxy = FFF556e143207fcd56e14320 /* PBXContainerItemProxy */; + target = FFFA5b2fb4e07fb05b2fb4e0 /* PhysXCommon */; + targetProxy = FFF55b2fb4e07fb05b2fb4e0 /* PBXContainerItemProxy */; }; - FFF456e39ea07fcd56e39ea0 /* PBXTargetDependency */ = { + FFF45cb543d07fb05cb543d0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA586bc1607fcd586bc160 /* PhysXExtensions */; - targetProxy = FFF5586bc1607fcd586bc160 /* PBXContainerItemProxy */; + target = FFFA5cb609d07fb05cb609d0 /* PhysXExtensions */; + targetProxy = FFF55cb609d07fb05cb609d0 /* PBXContainerItemProxy */; }; - FFF456e3aae07fcd56e3aae0 /* PBXTargetDependency */ = { + FFF45cb54f207fb05cb54f20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA585016d07fcd585016d0 /* PxFoundation */; - targetProxy = FFF5585016d07fcd585016d0 /* PBXContainerItemProxy */; + target = FFFA5b080a507fb05b080a50 /* PxFoundation */; + targetProxy = FFF55b080a507fb05b080a50 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXVehicle */ - FFFF5b052a087fcd5b052a08 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052a087fcd5b052a08 /* PxVehicleComponents.cpp */; }; - FFFF5b052a707fcd5b052a70 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052a707fcd5b052a70 /* PxVehicleDrive.cpp */; }; - FFFF5b052ad87fcd5b052ad8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052ad87fcd5b052ad8 /* PxVehicleDrive4W.cpp */; }; - FFFF5b052b407fcd5b052b40 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052b407fcd5b052b40 /* PxVehicleDriveNW.cpp */; }; - FFFF5b052ba87fcd5b052ba8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052ba87fcd5b052ba8 /* PxVehicleDriveTank.cpp */; }; - FFFF5b052c107fcd5b052c10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052c107fcd5b052c10 /* PxVehicleMetaData.cpp */; }; - FFFF5b052c787fcd5b052c78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052c787fcd5b052c78 /* PxVehicleNoDrive.cpp */; }; - FFFF5b052ce07fcd5b052ce0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052ce07fcd5b052ce0 /* PxVehicleSDK.cpp */; }; - FFFF5b052d487fcd5b052d48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052d487fcd5b052d48 /* PxVehicleSerialization.cpp */; }; - FFFF5b052db07fcd5b052db0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052db07fcd5b052db0 /* PxVehicleSuspWheelTire4.cpp */; }; - FFFF5b052e187fcd5b052e18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052e187fcd5b052e18 /* PxVehicleTireFriction.cpp */; }; - FFFF5b052e807fcd5b052e80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052e807fcd5b052e80 /* PxVehicleUpdate.cpp */; }; - FFFF5b052ee87fcd5b052ee8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052ee87fcd5b052ee8 /* PxVehicleWheels.cpp */; }; - FFFF5b052f507fcd5b052f50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052f507fcd5b052f50 /* VehicleUtilControl.cpp */; }; - FFFF5b052fb87fcd5b052fb8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b052fb87fcd5b052fb8 /* VehicleUtilSetup.cpp */; }; - FFFF5b0530207fcd5b053020 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0530207fcd5b053020 /* VehicleUtilTelemetry.cpp */; }; - FFFF586bc6887fcd586bc688 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD586bc6887fcd586bc688 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; - FFFF586bc6f07fcd586bc6f0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD586bc6f07fcd586bc6f0 /* src/PxVehicleMetaDataObjects.cpp */; }; + FFFF5a9ef0087fb05a9ef008 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef0087fb05a9ef008 /* PxVehicleComponents.cpp */; }; + FFFF5a9ef0707fb05a9ef070 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef0707fb05a9ef070 /* PxVehicleDrive.cpp */; }; + FFFF5a9ef0d87fb05a9ef0d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef0d87fb05a9ef0d8 /* PxVehicleDrive4W.cpp */; }; + FFFF5a9ef1407fb05a9ef140 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef1407fb05a9ef140 /* PxVehicleDriveNW.cpp */; }; + FFFF5a9ef1a87fb05a9ef1a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef1a87fb05a9ef1a8 /* PxVehicleDriveTank.cpp */; }; + FFFF5a9ef2107fb05a9ef210 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef2107fb05a9ef210 /* PxVehicleMetaData.cpp */; }; + FFFF5a9ef2787fb05a9ef278 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef2787fb05a9ef278 /* PxVehicleNoDrive.cpp */; }; + FFFF5a9ef2e07fb05a9ef2e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef2e07fb05a9ef2e0 /* PxVehicleSDK.cpp */; }; + FFFF5a9ef3487fb05a9ef348 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef3487fb05a9ef348 /* PxVehicleSerialization.cpp */; }; + FFFF5a9ef3b07fb05a9ef3b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef3b07fb05a9ef3b0 /* PxVehicleSuspWheelTire4.cpp */; }; + FFFF5a9ef4187fb05a9ef418 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef4187fb05a9ef418 /* PxVehicleTireFriction.cpp */; }; + FFFF5a9ef4807fb05a9ef480 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef4807fb05a9ef480 /* PxVehicleUpdate.cpp */; }; + FFFF5a9ef4e87fb05a9ef4e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef4e87fb05a9ef4e8 /* PxVehicleWheels.cpp */; }; + FFFF5a9ef5507fb05a9ef550 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef5507fb05a9ef550 /* VehicleUtilControl.cpp */; }; + FFFF5a9ef5b87fb05a9ef5b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef5b87fb05a9ef5b8 /* VehicleUtilSetup.cpp */; }; + FFFF5a9ef6207fb05a9ef620 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef6207fb05a9ef620 /* VehicleUtilTelemetry.cpp */; }; + FFFF5cb629487fb05cb62948 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5cb629487fb05cb62948 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; + FFFF5cb629b07fb05cb629b0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5cb629b07fb05cb629b0 /* src/PxVehicleMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD56e3cde07fcd56e3cde0 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b0518007fcd5b051800 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0518687fcd5b051868 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0518d07fcd5b0518d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0519387fcd5b051938 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0519a07fcd5b0519a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b051a087fcd5b051a08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b051a707fcd5b051a70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b051ad87fcd5b051ad8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b051b407fcd5b051b40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b051ba87fcd5b051ba8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b051c107fcd5b051c10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b051c787fcd5b051c78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b051ce07fcd5b051ce0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b051d487fcd5b051d48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b051db07fcd5b051db0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0528007fcd5b052800 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0528687fcd5b052868 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0528d07fcd5b0528d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0529387fcd5b052938 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0529a07fcd5b0529a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b052a087fcd5b052a08 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052a707fcd5b052a70 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052ad87fcd5b052ad8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052b407fcd5b052b40 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052ba87fcd5b052ba8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052c107fcd5b052c10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052c787fcd5b052c78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052ce07fcd5b052ce0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052d487fcd5b052d48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052db07fcd5b052db0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052e187fcd5b052e18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052e807fcd5b052e80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052ee87fcd5b052ee8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052f507fcd5b052f50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b052fb87fcd5b052fb8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0530207fcd5b053020 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD586bc5507fcd586bc550 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD586bc5b87fcd586bc5b8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD586bc6207fcd586bc620 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD586bc6887fcd586bc688 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD586bc6f07fcd586bc6f0 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5cb50f307fb05cb50f30 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a9ecc007fb05a9ecc00 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ecc687fb05a9ecc68 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9eccd07fb05a9eccd0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ecd387fb05a9ecd38 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ecda07fb05a9ecda0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ece087fb05a9ece08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ece707fb05a9ece70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9eced87fb05a9eced8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ecf407fb05a9ecf40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ecfa87fb05a9ecfa8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ed0107fb05a9ed010 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ed0787fb05a9ed078 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ed0e07fb05a9ed0e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ed1487fb05a9ed148 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ed1b07fb05a9ed1b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9eee007fb05a9eee00 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9eee687fb05a9eee68 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9eeed07fb05a9eeed0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9eef387fb05a9eef38 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9eefa07fb05a9eefa0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef0087fb05a9ef008 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef0707fb05a9ef070 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef0d87fb05a9ef0d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef1407fb05a9ef140 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef1a87fb05a9ef1a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef2107fb05a9ef210 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef2787fb05a9ef278 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef2e07fb05a9ef2e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef3487fb05a9ef348 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef3b07fb05a9ef3b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef4187fb05a9ef418 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef4807fb05a9ef480 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef4e87fb05a9ef4e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef5507fb05a9ef550 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef5b87fb05a9ef5b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ef6207fb05a9ef620 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5cb628107fb05cb62810 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb628787fb05cb62878 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb628e07fb05cb628e0 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb629487fb05cb62948 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5cb629b07fb05cb629b0 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF256e3cde07fcd56e3cde0 /* Resources */ = { + FFF25cb50f307fb05cb50f30 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -538,7 +538,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC56e3cde07fcd56e3cde0 /* Frameworks */ = { + FFFC5cb50f307fb05cb50f30 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -548,28 +548,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF856e3cde07fcd56e3cde0 /* Sources */ = { + FFF85cb50f307fb05cb50f30 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b052a087fcd5b052a08, - FFFF5b052a707fcd5b052a70, - FFFF5b052ad87fcd5b052ad8, - FFFF5b052b407fcd5b052b40, - FFFF5b052ba87fcd5b052ba8, - FFFF5b052c107fcd5b052c10, - FFFF5b052c787fcd5b052c78, - FFFF5b052ce07fcd5b052ce0, - FFFF5b052d487fcd5b052d48, - FFFF5b052db07fcd5b052db0, - FFFF5b052e187fcd5b052e18, - FFFF5b052e807fcd5b052e80, - FFFF5b052ee87fcd5b052ee8, - FFFF5b052f507fcd5b052f50, - FFFF5b052fb87fcd5b052fb8, - FFFF5b0530207fcd5b053020, - FFFF586bc6887fcd586bc688, - FFFF586bc6f07fcd586bc6f0, + FFFF5a9ef0087fb05a9ef008, + FFFF5a9ef0707fb05a9ef070, + FFFF5a9ef0d87fb05a9ef0d8, + FFFF5a9ef1407fb05a9ef140, + FFFF5a9ef1a87fb05a9ef1a8, + FFFF5a9ef2107fb05a9ef210, + FFFF5a9ef2787fb05a9ef278, + FFFF5a9ef2e07fb05a9ef2e0, + FFFF5a9ef3487fb05a9ef348, + FFFF5a9ef3b07fb05a9ef3b0, + FFFF5a9ef4187fb05a9ef418, + FFFF5a9ef4807fb05a9ef480, + FFFF5a9ef4e87fb05a9ef4e8, + FFFF5a9ef5507fb05a9ef550, + FFFF5a9ef5b87fb05a9ef5b8, + FFFF5a9ef6207fb05a9ef620, + FFFF5cb629487fb05cb62948, + FFFF5cb629b07fb05cb629b0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -581,220 +581,220 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXExtensions */ - FFFF57861ee87fcd57861ee8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57861ee87fcd57861ee8 /* ExtBroadPhase.cpp */; }; - FFFF57861f507fcd57861f50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57861f507fcd57861f50 /* ExtClothFabricCooker.cpp */; }; - FFFF57861fb87fcd57861fb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57861fb87fcd57861fb8 /* ExtClothGeodesicTetherCooker.cpp */; }; - FFFF578620207fcd57862020 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578620207fcd57862020 /* ExtClothMeshQuadifier.cpp */; }; - FFFF578620887fcd57862088 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578620887fcd57862088 /* ExtClothSimpleTetherCooker.cpp */; }; - FFFF578620f07fcd578620f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578620f07fcd578620f0 /* ExtCollection.cpp */; }; - FFFF578621587fcd57862158 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578621587fcd57862158 /* ExtConvexMeshExt.cpp */; }; - FFFF578621c07fcd578621c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578621c07fcd578621c0 /* ExtCpuWorkerThread.cpp */; }; - FFFF578622287fcd57862228 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578622287fcd57862228 /* ExtD6Joint.cpp */; }; - FFFF578622907fcd57862290 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578622907fcd57862290 /* ExtD6JointSolverPrep.cpp */; }; - FFFF578622f87fcd578622f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578622f87fcd578622f8 /* ExtDefaultCpuDispatcher.cpp */; }; - FFFF578623607fcd57862360 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578623607fcd57862360 /* ExtDefaultErrorCallback.cpp */; }; - FFFF578623c87fcd578623c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578623c87fcd578623c8 /* ExtDefaultSimulationFilterShader.cpp */; }; - FFFF578624307fcd57862430 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578624307fcd57862430 /* ExtDefaultStreams.cpp */; }; - FFFF578624987fcd57862498 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578624987fcd57862498 /* ExtDistanceJoint.cpp */; }; - FFFF578625007fcd57862500 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578625007fcd57862500 /* ExtDistanceJointSolverPrep.cpp */; }; - FFFF578625687fcd57862568 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578625687fcd57862568 /* ExtExtensions.cpp */; }; - FFFF578625d07fcd578625d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578625d07fcd578625d0 /* ExtFixedJoint.cpp */; }; - FFFF578626387fcd57862638 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578626387fcd57862638 /* ExtFixedJointSolverPrep.cpp */; }; - FFFF578626a07fcd578626a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578626a07fcd578626a0 /* ExtJoint.cpp */; }; - FFFF578627087fcd57862708 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578627087fcd57862708 /* ExtMetaData.cpp */; }; - FFFF578627707fcd57862770 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578627707fcd57862770 /* ExtParticleExt.cpp */; }; - FFFF578627d87fcd578627d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578627d87fcd578627d8 /* ExtPrismaticJoint.cpp */; }; - FFFF578628407fcd57862840 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578628407fcd57862840 /* ExtPrismaticJointSolverPrep.cpp */; }; - FFFF578628a87fcd578628a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578628a87fcd578628a8 /* ExtPvd.cpp */; }; - FFFF578629107fcd57862910 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578629107fcd57862910 /* ExtPxStringTable.cpp */; }; - FFFF578629787fcd57862978 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578629787fcd57862978 /* ExtRaycastCCD.cpp */; }; - FFFF578629e07fcd578629e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD578629e07fcd578629e0 /* ExtRevoluteJoint.cpp */; }; - FFFF57862a487fcd57862a48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57862a487fcd57862a48 /* ExtRevoluteJointSolverPrep.cpp */; }; - FFFF57862ab07fcd57862ab0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57862ab07fcd57862ab0 /* ExtRigidBodyExt.cpp */; }; - FFFF57862b187fcd57862b18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57862b187fcd57862b18 /* ExtSceneQueryExt.cpp */; }; - FFFF57862b807fcd57862b80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57862b807fcd57862b80 /* ExtSimpleFactory.cpp */; }; - FFFF57862be87fcd57862be8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57862be87fcd57862be8 /* ExtSmoothNormals.cpp */; }; - FFFF57862c507fcd57862c50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57862c507fcd57862c50 /* ExtSphericalJoint.cpp */; }; - FFFF57862cb87fcd57862cb8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57862cb87fcd57862cb8 /* ExtSphericalJointSolverPrep.cpp */; }; - FFFF57862d207fcd57862d20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57862d207fcd57862d20 /* ExtTriangleMeshExt.cpp */; }; - FFFF5a06ccd07fcd5a06ccd0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06ccd07fcd5a06ccd0 /* SnSerialUtils.cpp */; }; - FFFF5a06cd387fcd5a06cd38 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06cd387fcd5a06cd38 /* SnSerialization.cpp */; }; - FFFF5a06cda07fcd5a06cda0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06cda07fcd5a06cda0 /* SnSerializationRegistry.cpp */; }; - FFFF5a06d0e07fcd5a06d0e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06d0e07fcd5a06d0e0 /* Binary/SnBinaryDeserialization.cpp */; }; - FFFF5a06d1487fcd5a06d148 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06d1487fcd5a06d148 /* Binary/SnBinarySerialization.cpp */; }; - FFFF5a06d1b07fcd5a06d1b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06d1b07fcd5a06d1b0 /* Binary/SnConvX.cpp */; }; - FFFF5a06d2187fcd5a06d218 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06d2187fcd5a06d218 /* Binary/SnConvX_Align.cpp */; }; - FFFF5a06d2807fcd5a06d280 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06d2807fcd5a06d280 /* Binary/SnConvX_Convert.cpp */; }; - FFFF5a06d2e87fcd5a06d2e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06d2e87fcd5a06d2e8 /* Binary/SnConvX_Error.cpp */; }; - FFFF5a06d3507fcd5a06d350 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06d3507fcd5a06d350 /* Binary/SnConvX_MetaData.cpp */; }; - FFFF5a06d3b87fcd5a06d3b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06d3b87fcd5a06d3b8 /* Binary/SnConvX_Output.cpp */; }; - FFFF5a06d4207fcd5a06d420 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06d4207fcd5a06d420 /* Binary/SnConvX_Union.cpp */; }; - FFFF5a06d4887fcd5a06d488 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06d4887fcd5a06d488 /* Binary/SnSerializationContext.cpp */; }; - FFFF5a06dd787fcd5a06dd78 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06dd787fcd5a06dd78 /* Xml/SnJointRepXSerializer.cpp */; }; - FFFF5a06dde07fcd5a06dde0 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06dde07fcd5a06dde0 /* Xml/SnRepXCoreSerializer.cpp */; }; - FFFF5a06de487fcd5a06de48 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06de487fcd5a06de48 /* Xml/SnRepXUpgrader.cpp */; }; - FFFF5a06deb07fcd5a06deb0 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a06deb07fcd5a06deb0 /* Xml/SnXmlSerialization.cpp */; }; - FFFF570034e07fcd570034e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD570034e07fcd570034e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; + FFFF5a9f0ee87fb05a9f0ee8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f0ee87fb05a9f0ee8 /* ExtBroadPhase.cpp */; }; + FFFF5a9f0f507fb05a9f0f50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f0f507fb05a9f0f50 /* ExtClothFabricCooker.cpp */; }; + FFFF5a9f0fb87fb05a9f0fb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f0fb87fb05a9f0fb8 /* ExtClothGeodesicTetherCooker.cpp */; }; + FFFF5a9f10207fb05a9f1020 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f10207fb05a9f1020 /* ExtClothMeshQuadifier.cpp */; }; + FFFF5a9f10887fb05a9f1088 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f10887fb05a9f1088 /* ExtClothSimpleTetherCooker.cpp */; }; + FFFF5a9f10f07fb05a9f10f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f10f07fb05a9f10f0 /* ExtCollection.cpp */; }; + FFFF5a9f11587fb05a9f1158 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f11587fb05a9f1158 /* ExtConvexMeshExt.cpp */; }; + FFFF5a9f11c07fb05a9f11c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f11c07fb05a9f11c0 /* ExtCpuWorkerThread.cpp */; }; + FFFF5a9f12287fb05a9f1228 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f12287fb05a9f1228 /* ExtD6Joint.cpp */; }; + FFFF5a9f12907fb05a9f1290 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f12907fb05a9f1290 /* ExtD6JointSolverPrep.cpp */; }; + FFFF5a9f12f87fb05a9f12f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f12f87fb05a9f12f8 /* ExtDefaultCpuDispatcher.cpp */; }; + FFFF5a9f13607fb05a9f1360 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f13607fb05a9f1360 /* ExtDefaultErrorCallback.cpp */; }; + FFFF5a9f13c87fb05a9f13c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f13c87fb05a9f13c8 /* ExtDefaultSimulationFilterShader.cpp */; }; + FFFF5a9f14307fb05a9f1430 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f14307fb05a9f1430 /* ExtDefaultStreams.cpp */; }; + FFFF5a9f14987fb05a9f1498 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f14987fb05a9f1498 /* ExtDistanceJoint.cpp */; }; + FFFF5a9f15007fb05a9f1500 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f15007fb05a9f1500 /* ExtDistanceJointSolverPrep.cpp */; }; + FFFF5a9f15687fb05a9f1568 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f15687fb05a9f1568 /* ExtExtensions.cpp */; }; + FFFF5a9f15d07fb05a9f15d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f15d07fb05a9f15d0 /* ExtFixedJoint.cpp */; }; + FFFF5a9f16387fb05a9f1638 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f16387fb05a9f1638 /* ExtFixedJointSolverPrep.cpp */; }; + FFFF5a9f16a07fb05a9f16a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f16a07fb05a9f16a0 /* ExtJoint.cpp */; }; + FFFF5a9f17087fb05a9f1708 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f17087fb05a9f1708 /* ExtMetaData.cpp */; }; + FFFF5a9f17707fb05a9f1770 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f17707fb05a9f1770 /* ExtParticleExt.cpp */; }; + FFFF5a9f17d87fb05a9f17d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f17d87fb05a9f17d8 /* ExtPrismaticJoint.cpp */; }; + FFFF5a9f18407fb05a9f1840 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f18407fb05a9f1840 /* ExtPrismaticJointSolverPrep.cpp */; }; + FFFF5a9f18a87fb05a9f18a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f18a87fb05a9f18a8 /* ExtPvd.cpp */; }; + FFFF5a9f19107fb05a9f1910 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f19107fb05a9f1910 /* ExtPxStringTable.cpp */; }; + FFFF5a9f19787fb05a9f1978 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f19787fb05a9f1978 /* ExtRaycastCCD.cpp */; }; + FFFF5a9f19e07fb05a9f19e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f19e07fb05a9f19e0 /* ExtRevoluteJoint.cpp */; }; + FFFF5a9f1a487fb05a9f1a48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1a487fb05a9f1a48 /* ExtRevoluteJointSolverPrep.cpp */; }; + FFFF5a9f1ab07fb05a9f1ab0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1ab07fb05a9f1ab0 /* ExtRigidBodyExt.cpp */; }; + FFFF5a9f1b187fb05a9f1b18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1b187fb05a9f1b18 /* ExtSceneQueryExt.cpp */; }; + FFFF5a9f1b807fb05a9f1b80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1b807fb05a9f1b80 /* ExtSimpleFactory.cpp */; }; + FFFF5a9f1be87fb05a9f1be8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1be87fb05a9f1be8 /* ExtSmoothNormals.cpp */; }; + FFFF5a9f1c507fb05a9f1c50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1c507fb05a9f1c50 /* ExtSphericalJoint.cpp */; }; + FFFF5a9f1cb87fb05a9f1cb8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1cb87fb05a9f1cb8 /* ExtSphericalJointSolverPrep.cpp */; }; + FFFF5a9f1d207fb05a9f1d20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1d207fb05a9f1d20 /* ExtTriangleMeshExt.cpp */; }; + FFFF5a9f52d07fb05a9f52d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f52d07fb05a9f52d0 /* SnSerialUtils.cpp */; }; + FFFF5a9f53387fb05a9f5338 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f53387fb05a9f5338 /* SnSerialization.cpp */; }; + FFFF5a9f53a07fb05a9f53a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f53a07fb05a9f53a0 /* SnSerializationRegistry.cpp */; }; + FFFF5a9f56e07fb05a9f56e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f56e07fb05a9f56e0 /* Binary/SnBinaryDeserialization.cpp */; }; + FFFF5a9f57487fb05a9f5748 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f57487fb05a9f5748 /* Binary/SnBinarySerialization.cpp */; }; + FFFF5a9f57b07fb05a9f57b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f57b07fb05a9f57b0 /* Binary/SnConvX.cpp */; }; + FFFF5a9f58187fb05a9f5818 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f58187fb05a9f5818 /* Binary/SnConvX_Align.cpp */; }; + FFFF5a9f58807fb05a9f5880 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f58807fb05a9f5880 /* Binary/SnConvX_Convert.cpp */; }; + FFFF5a9f58e87fb05a9f58e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f58e87fb05a9f58e8 /* Binary/SnConvX_Error.cpp */; }; + FFFF5a9f59507fb05a9f5950 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f59507fb05a9f5950 /* Binary/SnConvX_MetaData.cpp */; }; + FFFF5a9f59b87fb05a9f59b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f59b87fb05a9f59b8 /* Binary/SnConvX_Output.cpp */; }; + FFFF5a9f5a207fb05a9f5a20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f5a207fb05a9f5a20 /* Binary/SnConvX_Union.cpp */; }; + FFFF5a9f5a887fb05a9f5a88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f5a887fb05a9f5a88 /* Binary/SnSerializationContext.cpp */; }; + FFFF5a9f63787fb05a9f6378 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f63787fb05a9f6378 /* Xml/SnJointRepXSerializer.cpp */; }; + FFFF5a9f63e07fb05a9f63e0 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f63e07fb05a9f63e0 /* Xml/SnRepXCoreSerializer.cpp */; }; + FFFF5a9f64487fb05a9f6448 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f64487fb05a9f6448 /* Xml/SnRepXUpgrader.cpp */; }; + FFFF5a9f64b07fb05a9f64b0 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f64b07fb05a9f64b0 /* Xml/SnXmlSerialization.cpp */; }; + FFFF5a9f32e07fb05a9f32e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5a9f32e07fb05a9f32e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD586bc1607fcd586bc160 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5785a8007fcd5785a800 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a8687fcd5785a868 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a8d07fcd5785a8d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a9387fcd5785a938 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785a9a07fcd5785a9a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785aa087fcd5785aa08 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785aa707fcd5785aa70 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785aad87fcd5785aad8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ab407fcd5785ab40 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785aba87fcd5785aba8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ac107fcd5785ac10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ac787fcd5785ac78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ace07fcd5785ace0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ad487fcd5785ad48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785adb07fcd5785adb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ae187fcd5785ae18 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785ae807fcd5785ae80 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785aee87fcd5785aee8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785af507fcd5785af50 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785afb87fcd5785afb8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b0207fcd5785b020 /* PxJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointRepXSerializer.h"; path = "../../../Include/extensions/PxJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b0887fcd5785b088 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b0f07fcd5785b0f0 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b1587fcd5785b158 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b1c07fcd5785b1c0 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b2287fcd5785b228 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b2907fcd5785b290 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b2f87fcd5785b2f8 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b3607fcd5785b360 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b3c87fcd5785b3c8 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b4307fcd5785b430 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b4987fcd5785b498 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b5007fcd5785b500 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b5687fcd5785b568 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b5d07fcd5785b5d0 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b6387fcd5785b638 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b6a07fcd5785b6a0 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5785b7087fcd5785b708 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD578618007fcd57861800 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD578618687fcd57861868 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD578618d07fcd578618d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD578619387fcd57861938 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD578619a07fcd578619a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861a087fcd57861a08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861a707fcd57861a70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861ad87fcd57861ad8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861b407fcd57861b40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861ba87fcd57861ba8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861c107fcd57861c10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861c787fcd57861c78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861ce07fcd57861ce0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861d487fcd57861d48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861db07fcd57861db0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861e187fcd57861e18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861e807fcd57861e80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD57861ee87fcd57861ee8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57861f507fcd57861f50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57861fb87fcd57861fb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578620207fcd57862020 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578620887fcd57862088 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578620f07fcd578620f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578621587fcd57862158 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578621c07fcd578621c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578622287fcd57862228 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578622907fcd57862290 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578622f87fcd578622f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578623607fcd57862360 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578623c87fcd578623c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578624307fcd57862430 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578624987fcd57862498 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578625007fcd57862500 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578625687fcd57862568 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578625d07fcd578625d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578626387fcd57862638 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578626a07fcd578626a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578627087fcd57862708 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578627707fcd57862770 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578627d87fcd578627d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578628407fcd57862840 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578628a87fcd578628a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578629107fcd57862910 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578629787fcd57862978 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD578629e07fcd578629e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57862a487fcd57862a48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57862ab07fcd57862ab0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57862b187fcd57862b18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57862b807fcd57862b80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57862be87fcd57862be8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57862c507fcd57862c50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57862cb87fcd57862cb8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57862d207fcd57862d20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06cc007fcd5a06cc00 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06cc687fcd5a06cc68 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06ccd07fcd5a06ccd0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06cd387fcd5a06cd38 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06cda07fcd5a06cda0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06ce087fcd5a06ce08 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06ce707fcd5a06ce70 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06ced87fcd5a06ced8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06cf407fcd5a06cf40 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06cfa87fcd5a06cfa8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d0107fcd5a06d010 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d0787fcd5a06d078 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d0e07fcd5a06d0e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d1487fcd5a06d148 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d1b07fcd5a06d1b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d2187fcd5a06d218 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d2807fcd5a06d280 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d2e87fcd5a06d2e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d3507fcd5a06d350 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d3b87fcd5a06d3b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d4207fcd5a06d420 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d4887fcd5a06d488 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d4f07fcd5a06d4f0 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d5587fcd5a06d558 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d5c07fcd5a06d5c0 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d6287fcd5a06d628 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d6907fcd5a06d690 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d6f87fcd5a06d6f8 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d7607fcd5a06d760 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d7c87fcd5a06d7c8 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d8307fcd5a06d830 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d8987fcd5a06d898 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d9007fcd5a06d900 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d9687fcd5a06d968 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06d9d07fcd5a06d9d0 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06da387fcd5a06da38 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06daa07fcd5a06daa0 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06db087fcd5a06db08 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06db707fcd5a06db70 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06dbd87fcd5a06dbd8 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06dc407fcd5a06dc40 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06dca87fcd5a06dca8 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06dd107fcd5a06dd10 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a06dd787fcd5a06dd78 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06dde07fcd5a06dde0 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06de487fcd5a06de48 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06deb07fcd5a06deb0 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a06df187fcd5a06df18 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; - FFFD570030007fcd57003000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD570030687fcd57003068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD570030d07fcd570030d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD570031387fcd57003138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD570031a07fcd570031a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD570032087fcd57003208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD570032707fcd57003270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD570032d87fcd570032d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD570033407fcd57003340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD570033a87fcd570033a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD570034107fcd57003410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD570034787fcd57003478 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD570034e07fcd570034e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5cb609d07fb05cb609d0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a9f1e007fb05a9f1e00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f1e687fb05a9f1e68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f1ed07fb05a9f1ed0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f1f387fb05a9f1f38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f1fa07fb05a9f1fa0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f20087fb05a9f2008 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f20707fb05a9f2070 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f20d87fb05a9f20d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f21407fb05a9f2140 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f21a87fb05a9f21a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f22107fb05a9f2210 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f22787fb05a9f2278 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f22e07fb05a9f22e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f23487fb05a9f2348 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f23b07fb05a9f23b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f24187fb05a9f2418 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f24807fb05a9f2480 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f24e87fb05a9f24e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f25507fb05a9f2550 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f25b87fb05a9f25b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f26207fb05a9f2620 /* PxJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointRepXSerializer.h"; path = "../../../Include/extensions/PxJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f26887fb05a9f2688 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f26f07fb05a9f26f0 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f27587fb05a9f2758 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f27c07fb05a9f27c0 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f28287fb05a9f2828 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f28907fb05a9f2890 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f28f87fb05a9f28f8 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f29607fb05a9f2960 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f29c87fb05a9f29c8 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2a307fb05a9f2a30 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2a987fb05a9f2a98 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2b007fb05a9f2b00 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2b687fb05a9f2b68 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2bd07fb05a9f2bd0 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2c387fb05a9f2c38 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2ca07fb05a9f2ca0 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2d087fb05a9f2d08 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f08007fb05a9f0800 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f08687fb05a9f0868 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f08d07fb05a9f08d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f09387fb05a9f0938 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f09a07fb05a9f09a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0a087fb05a9f0a08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0a707fb05a9f0a70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0ad87fb05a9f0ad8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0b407fb05a9f0b40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0ba87fb05a9f0ba8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0c107fb05a9f0c10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0c787fb05a9f0c78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0ce07fb05a9f0ce0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0d487fb05a9f0d48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0db07fb05a9f0db0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0e187fb05a9f0e18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0e807fb05a9f0e80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0ee87fb05a9f0ee8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0f507fb05a9f0f50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f0fb87fb05a9f0fb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f10207fb05a9f1020 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f10887fb05a9f1088 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f10f07fb05a9f10f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f11587fb05a9f1158 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f11c07fb05a9f11c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f12287fb05a9f1228 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f12907fb05a9f1290 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f12f87fb05a9f12f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f13607fb05a9f1360 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f13c87fb05a9f13c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f14307fb05a9f1430 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f14987fb05a9f1498 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f15007fb05a9f1500 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f15687fb05a9f1568 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f15d07fb05a9f15d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f16387fb05a9f1638 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f16a07fb05a9f16a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f17087fb05a9f1708 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f17707fb05a9f1770 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f17d87fb05a9f17d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f18407fb05a9f1840 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f18a87fb05a9f18a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f19107fb05a9f1910 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f19787fb05a9f1978 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f19e07fb05a9f19e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f1a487fb05a9f1a48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f1ab07fb05a9f1ab0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f1b187fb05a9f1b18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f1b807fb05a9f1b80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f1be87fb05a9f1be8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f1c507fb05a9f1c50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f1cb87fb05a9f1cb8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f1d207fb05a9f1d20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f52007fb05a9f5200 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f52687fb05a9f5268 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f52d07fb05a9f52d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f53387fb05a9f5338 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f53a07fb05a9f53a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f54087fb05a9f5408 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f54707fb05a9f5470 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f54d87fb05a9f54d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f55407fb05a9f5540 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f55a87fb05a9f55a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f56107fb05a9f5610 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f56787fb05a9f5678 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f56e07fb05a9f56e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f57487fb05a9f5748 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f57b07fb05a9f57b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f58187fb05a9f5818 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f58807fb05a9f5880 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f58e87fb05a9f58e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f59507fb05a9f5950 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f59b87fb05a9f59b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5a207fb05a9f5a20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5a887fb05a9f5a88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5af07fb05a9f5af0 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5b587fb05a9f5b58 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5bc07fb05a9f5bc0 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5c287fb05a9f5c28 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5c907fb05a9f5c90 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5cf87fb05a9f5cf8 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5d607fb05a9f5d60 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5dc87fb05a9f5dc8 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5e307fb05a9f5e30 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5e987fb05a9f5e98 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5f007fb05a9f5f00 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5f687fb05a9f5f68 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f5fd07fb05a9f5fd0 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f60387fb05a9f6038 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f60a07fb05a9f60a0 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f61087fb05a9f6108 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f61707fb05a9f6170 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f61d87fb05a9f61d8 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f62407fb05a9f6240 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f62a87fb05a9f62a8 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f63107fb05a9f6310 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f63787fb05a9f6378 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f63e07fb05a9f63e0 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f64487fb05a9f6448 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f64b07fb05a9f64b0 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f65187fb05a9f6518 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2e007fb05a9f2e00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2e687fb05a9f2e68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2ed07fb05a9f2ed0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2f387fb05a9f2f38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f2fa07fb05a9f2fa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f30087fb05a9f3008 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f30707fb05a9f3070 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f30d87fb05a9f30d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f31407fb05a9f3140 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f31a87fb05a9f31a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f32107fb05a9f3210 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f32787fb05a9f3278 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f32e07fb05a9f32e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2586bc1607fcd586bc160 /* Resources */ = { + FFF25cb609d07fb05cb609d0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -804,7 +804,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC586bc1607fcd586bc160 /* Frameworks */ = { + FFFC5cb609d07fb05cb609d0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -814,64 +814,64 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8586bc1607fcd586bc160 /* Sources */ = { + FFF85cb609d07fb05cb609d0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF57861ee87fcd57861ee8, - FFFF57861f507fcd57861f50, - FFFF57861fb87fcd57861fb8, - FFFF578620207fcd57862020, - FFFF578620887fcd57862088, - FFFF578620f07fcd578620f0, - FFFF578621587fcd57862158, - FFFF578621c07fcd578621c0, - FFFF578622287fcd57862228, - FFFF578622907fcd57862290, - FFFF578622f87fcd578622f8, - FFFF578623607fcd57862360, - FFFF578623c87fcd578623c8, - FFFF578624307fcd57862430, - FFFF578624987fcd57862498, - FFFF578625007fcd57862500, - FFFF578625687fcd57862568, - FFFF578625d07fcd578625d0, - FFFF578626387fcd57862638, - FFFF578626a07fcd578626a0, - FFFF578627087fcd57862708, - FFFF578627707fcd57862770, - FFFF578627d87fcd578627d8, - FFFF578628407fcd57862840, - FFFF578628a87fcd578628a8, - FFFF578629107fcd57862910, - FFFF578629787fcd57862978, - FFFF578629e07fcd578629e0, - FFFF57862a487fcd57862a48, - FFFF57862ab07fcd57862ab0, - FFFF57862b187fcd57862b18, - FFFF57862b807fcd57862b80, - FFFF57862be87fcd57862be8, - FFFF57862c507fcd57862c50, - FFFF57862cb87fcd57862cb8, - FFFF57862d207fcd57862d20, - FFFF5a06ccd07fcd5a06ccd0, - FFFF5a06cd387fcd5a06cd38, - FFFF5a06cda07fcd5a06cda0, - FFFF5a06d0e07fcd5a06d0e0, - FFFF5a06d1487fcd5a06d148, - FFFF5a06d1b07fcd5a06d1b0, - FFFF5a06d2187fcd5a06d218, - FFFF5a06d2807fcd5a06d280, - FFFF5a06d2e87fcd5a06d2e8, - FFFF5a06d3507fcd5a06d350, - FFFF5a06d3b87fcd5a06d3b8, - FFFF5a06d4207fcd5a06d420, - FFFF5a06d4887fcd5a06d488, - FFFF5a06dd787fcd5a06dd78, - FFFF5a06dde07fcd5a06dde0, - FFFF5a06de487fcd5a06de48, - FFFF5a06deb07fcd5a06deb0, - FFFF570034e07fcd570034e0, + FFFF5a9f0ee87fb05a9f0ee8, + FFFF5a9f0f507fb05a9f0f50, + FFFF5a9f0fb87fb05a9f0fb8, + FFFF5a9f10207fb05a9f1020, + FFFF5a9f10887fb05a9f1088, + FFFF5a9f10f07fb05a9f10f0, + FFFF5a9f11587fb05a9f1158, + FFFF5a9f11c07fb05a9f11c0, + FFFF5a9f12287fb05a9f1228, + FFFF5a9f12907fb05a9f1290, + FFFF5a9f12f87fb05a9f12f8, + FFFF5a9f13607fb05a9f1360, + FFFF5a9f13c87fb05a9f13c8, + FFFF5a9f14307fb05a9f1430, + FFFF5a9f14987fb05a9f1498, + FFFF5a9f15007fb05a9f1500, + FFFF5a9f15687fb05a9f1568, + FFFF5a9f15d07fb05a9f15d0, + FFFF5a9f16387fb05a9f1638, + FFFF5a9f16a07fb05a9f16a0, + FFFF5a9f17087fb05a9f1708, + FFFF5a9f17707fb05a9f1770, + FFFF5a9f17d87fb05a9f17d8, + FFFF5a9f18407fb05a9f1840, + FFFF5a9f18a87fb05a9f18a8, + FFFF5a9f19107fb05a9f1910, + FFFF5a9f19787fb05a9f1978, + FFFF5a9f19e07fb05a9f19e0, + FFFF5a9f1a487fb05a9f1a48, + FFFF5a9f1ab07fb05a9f1ab0, + FFFF5a9f1b187fb05a9f1b18, + FFFF5a9f1b807fb05a9f1b80, + FFFF5a9f1be87fb05a9f1be8, + FFFF5a9f1c507fb05a9f1c50, + FFFF5a9f1cb87fb05a9f1cb8, + FFFF5a9f1d207fb05a9f1d20, + FFFF5a9f52d07fb05a9f52d0, + FFFF5a9f53387fb05a9f5338, + FFFF5a9f53a07fb05a9f53a0, + FFFF5a9f56e07fb05a9f56e0, + FFFF5a9f57487fb05a9f5748, + FFFF5a9f57b07fb05a9f57b0, + FFFF5a9f58187fb05a9f5818, + FFFF5a9f58807fb05a9f5880, + FFFF5a9f58e87fb05a9f58e8, + FFFF5a9f59507fb05a9f5950, + FFFF5a9f59b87fb05a9f59b8, + FFFF5a9f5a207fb05a9f5a20, + FFFF5a9f5a887fb05a9f5a88, + FFFF5a9f63787fb05a9f6378, + FFFF5a9f63e07fb05a9f63e0, + FFFF5a9f64487fb05a9f6448, + FFFF5a9f64b07fb05a9f64b0, + FFFF5a9f32e07fb05a9f32e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -880,56 +880,56 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4586bbd607fcd586bbd60 /* PBXTargetDependency */ = { + FFF45cb623b07fb05cb623b0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA580eddd07fcd580eddd0 /* PsFastXml */; - targetProxy = FFF5580eddd07fcd580eddd0 /* PBXContainerItemProxy */; + target = FFFA5cb3a3f07fb05cb3a3f0 /* PsFastXml */; + targetProxy = FFF55cb3a3f07fb05cb3a3f0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SceneQuery */ - FFFF57013c007fcd57013c00 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57013c007fcd57013c00 /* SqAABBPruner.cpp */; }; - FFFF57013c687fcd57013c68 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57013c687fcd57013c68 /* SqAABBTree.cpp */; }; - FFFF57013cd07fcd57013cd0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57013cd07fcd57013cd0 /* SqAABBTreeUpdateMap.cpp */; }; - FFFF57013d387fcd57013d38 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57013d387fcd57013d38 /* SqBounds.cpp */; }; - FFFF57013da07fcd57013da0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57013da07fcd57013da0 /* SqBucketPruner.cpp */; }; - FFFF57013e087fcd57013e08 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57013e087fcd57013e08 /* SqExtendedBucketPruner.cpp */; }; - FFFF57013e707fcd57013e70 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57013e707fcd57013e70 /* SqMetaData.cpp */; }; - FFFF57013ed87fcd57013ed8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57013ed87fcd57013ed8 /* SqPruningPool.cpp */; }; - FFFF57013f407fcd57013f40 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57013f407fcd57013f40 /* SqPruningStructure.cpp */; }; - FFFF57013fa87fcd57013fa8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57013fa87fcd57013fa8 /* SqSceneQueryManager.cpp */; }; + FFFF5a9f92007fb05a9f9200 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f92007fb05a9f9200 /* SqAABBPruner.cpp */; }; + FFFF5a9f92687fb05a9f9268 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f92687fb05a9f9268 /* SqAABBTree.cpp */; }; + FFFF5a9f92d07fb05a9f92d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f92d07fb05a9f92d0 /* SqAABBTreeUpdateMap.cpp */; }; + FFFF5a9f93387fb05a9f9338 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f93387fb05a9f9338 /* SqBounds.cpp */; }; + FFFF5a9f93a07fb05a9f93a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f93a07fb05a9f93a0 /* SqBucketPruner.cpp */; }; + FFFF5a9f94087fb05a9f9408 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f94087fb05a9f9408 /* SqExtendedBucketPruner.cpp */; }; + FFFF5a9f94707fb05a9f9470 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f94707fb05a9f9470 /* SqMetaData.cpp */; }; + FFFF5a9f94d87fb05a9f94d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f94d87fb05a9f94d8 /* SqPruningPool.cpp */; }; + FFFF5a9f95407fb05a9f9540 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f95407fb05a9f9540 /* SqPruningStructure.cpp */; }; + FFFF5a9f95a87fb05a9f95a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f95a87fb05a9f95a8 /* SqSceneQueryManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5bb033e07fcd5bb033e0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD57013c007fcd57013c00 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57013c687fcd57013c68 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57013cd07fcd57013cd0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57013d387fcd57013d38 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57013da07fcd57013da0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57013e087fcd57013e08 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57013e707fcd57013e70 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57013ed87fcd57013ed8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57013f407fcd57013f40 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57013fa87fcd57013fa8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD570140107fcd57014010 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD570140787fcd57014078 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD570140e07fcd570140e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD570141487fcd57014148 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD570141b07fcd570141b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD570142187fcd57014218 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD570142807fcd57014280 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD570142e87fcd570142e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD570143507fcd57014350 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD570143b87fcd570143b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; - FFFD5bb072f07fcd5bb072f0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5bb073587fcd5bb07358 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5bb073c07fcd5bb073c0 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD5bb074287fcd5bb07428 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb732c07fb05cb732c0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a9f92007fb05a9f9200 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f92687fb05a9f9268 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f92d07fb05a9f92d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f93387fb05a9f9338 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f93a07fb05a9f93a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f94087fb05a9f9408 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f94707fb05a9f9470 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f94d87fb05a9f94d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f95407fb05a9f9540 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f95a87fb05a9f95a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f96107fb05a9f9610 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f96787fb05a9f9678 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f96e07fb05a9f96e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f97487fb05a9f9748 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f97b07fb05a9f97b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f98187fb05a9f9818 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f98807fb05a9f9880 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f98e87fb05a9f98e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f99507fb05a9f9950 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9f99b87fb05a9f99b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb776207fb05cb77620 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb776887fb05cb77688 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb776f07fb05cb776f0 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb777587fb05cb77758 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25bb033e07fcd5bb033e0 /* Resources */ = { + FFF25cb732c07fb05cb732c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -939,7 +939,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5bb033e07fcd5bb033e0 /* Frameworks */ = { + FFFC5cb732c07fb05cb732c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -949,20 +949,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85bb033e07fcd5bb033e0 /* Sources */ = { + FFF85cb732c07fb05cb732c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF57013c007fcd57013c00, - FFFF57013c687fcd57013c68, - FFFF57013cd07fcd57013cd0, - FFFF57013d387fcd57013d38, - FFFF57013da07fcd57013da0, - FFFF57013e087fcd57013e08, - FFFF57013e707fcd57013e70, - FFFF57013ed87fcd57013ed8, - FFFF57013f407fcd57013f40, - FFFF57013fa87fcd57013fa8, + FFFF5a9f92007fb05a9f9200, + FFFF5a9f92687fb05a9f9268, + FFFF5a9f92d07fb05a9f92d0, + FFFF5a9f93387fb05a9f9338, + FFFF5a9f93a07fb05a9f93a0, + FFFF5a9f94087fb05a9f9408, + FFFF5a9f94707fb05a9f9470, + FFFF5a9f94d87fb05a9f94d8, + FFFF5a9f95407fb05a9f9540, + FFFF5a9f95a87fb05a9f95a8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -974,154 +974,154 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SimulationController */ - FFFF5701a5d07fcd5701a5d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701a5d07fcd5701a5d0 /* ScActorCore.cpp */; }; - FFFF5701a6387fcd5701a638 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701a6387fcd5701a638 /* ScActorSim.cpp */; }; - FFFF5701a6a07fcd5701a6a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701a6a07fcd5701a6a0 /* ScArticulationCore.cpp */; }; - FFFF5701a7087fcd5701a708 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701a7087fcd5701a708 /* ScArticulationJointCore.cpp */; }; - FFFF5701a7707fcd5701a770 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701a7707fcd5701a770 /* ScArticulationJointSim.cpp */; }; - FFFF5701a7d87fcd5701a7d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701a7d87fcd5701a7d8 /* ScArticulationSim.cpp */; }; - FFFF5701a8407fcd5701a840 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701a8407fcd5701a840 /* ScBodyCore.cpp */; }; - FFFF5701a8a87fcd5701a8a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701a8a87fcd5701a8a8 /* ScBodyCoreKinematic.cpp */; }; - FFFF5701a9107fcd5701a910 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701a9107fcd5701a910 /* ScBodySim.cpp */; }; - FFFF5701a9787fcd5701a978 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701a9787fcd5701a978 /* ScConstraintCore.cpp */; }; - FFFF5701a9e07fcd5701a9e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701a9e07fcd5701a9e0 /* ScConstraintGroupNode.cpp */; }; - FFFF5701aa487fcd5701aa48 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701aa487fcd5701aa48 /* ScConstraintInteraction.cpp */; }; - FFFF5701aab07fcd5701aab0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701aab07fcd5701aab0 /* ScConstraintProjectionManager.cpp */; }; - FFFF5701ab187fcd5701ab18 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701ab187fcd5701ab18 /* ScConstraintProjectionTree.cpp */; }; - FFFF5701ab807fcd5701ab80 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701ab807fcd5701ab80 /* ScConstraintSim.cpp */; }; - FFFF5701abe87fcd5701abe8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701abe87fcd5701abe8 /* ScElementInteractionMarker.cpp */; }; - FFFF5701ac507fcd5701ac50 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701ac507fcd5701ac50 /* ScElementSim.cpp */; }; - FFFF5701acb87fcd5701acb8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701acb87fcd5701acb8 /* ScInteraction.cpp */; }; - FFFF5701ad207fcd5701ad20 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701ad207fcd5701ad20 /* ScIterators.cpp */; }; - FFFF5701ad887fcd5701ad88 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701ad887fcd5701ad88 /* ScMaterialCore.cpp */; }; - FFFF5701adf07fcd5701adf0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701adf07fcd5701adf0 /* ScMetaData.cpp */; }; - FFFF5701ae587fcd5701ae58 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701ae587fcd5701ae58 /* ScNPhaseCore.cpp */; }; - FFFF5701aec07fcd5701aec0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701aec07fcd5701aec0 /* ScPhysics.cpp */; }; - FFFF5701af287fcd5701af28 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701af287fcd5701af28 /* ScRigidCore.cpp */; }; - FFFF5701af907fcd5701af90 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701af907fcd5701af90 /* ScRigidSim.cpp */; }; - FFFF5701aff87fcd5701aff8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701aff87fcd5701aff8 /* ScScene.cpp */; }; - FFFF5701b0607fcd5701b060 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b0607fcd5701b060 /* ScShapeCore.cpp */; }; - FFFF5701b0c87fcd5701b0c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b0c87fcd5701b0c8 /* ScShapeInteraction.cpp */; }; - FFFF5701b1307fcd5701b130 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b1307fcd5701b130 /* ScShapeSim.cpp */; }; - FFFF5701b1987fcd5701b198 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b1987fcd5701b198 /* ScSimStats.cpp */; }; - FFFF5701b2007fcd5701b200 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b2007fcd5701b200 /* ScSimulationController.cpp */; }; - FFFF5701b2687fcd5701b268 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b2687fcd5701b268 /* ScSqBoundsManager.cpp */; }; - FFFF5701b2d07fcd5701b2d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b2d07fcd5701b2d0 /* ScStaticCore.cpp */; }; - FFFF5701b3387fcd5701b338 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b3387fcd5701b338 /* ScStaticSim.cpp */; }; - FFFF5701b3a07fcd5701b3a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b3a07fcd5701b3a0 /* ScTriggerInteraction.cpp */; }; - FFFF5701b5407fcd5701b540 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b5407fcd5701b540 /* particles/ScParticleBodyInteraction.cpp */; }; - FFFF5701b5a87fcd5701b5a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b5a87fcd5701b5a8 /* particles/ScParticlePacketShape.cpp */; }; - FFFF5701b6107fcd5701b610 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b6107fcd5701b610 /* particles/ScParticleSystemCore.cpp */; }; - FFFF5701b6787fcd5701b678 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b6787fcd5701b678 /* particles/ScParticleSystemSim.cpp */; }; - FFFF5701b7b07fcd5701b7b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b7b07fcd5701b7b0 /* cloth/ScClothCore.cpp */; }; - FFFF5701b8187fcd5701b818 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b8187fcd5701b818 /* cloth/ScClothFabricCore.cpp */; }; - FFFF5701b8807fcd5701b880 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b8807fcd5701b880 /* cloth/ScClothShape.cpp */; }; - FFFF5701b8e87fcd5701b8e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5701b8e87fcd5701b8e8 /* cloth/ScClothSim.cpp */; }; + FFFF5a9ffbd07fb05a9ffbd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffbd07fb05a9ffbd0 /* ScActorCore.cpp */; }; + FFFF5a9ffc387fb05a9ffc38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffc387fb05a9ffc38 /* ScActorSim.cpp */; }; + FFFF5a9ffca07fb05a9ffca0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffca07fb05a9ffca0 /* ScArticulationCore.cpp */; }; + FFFF5a9ffd087fb05a9ffd08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffd087fb05a9ffd08 /* ScArticulationJointCore.cpp */; }; + FFFF5a9ffd707fb05a9ffd70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffd707fb05a9ffd70 /* ScArticulationJointSim.cpp */; }; + FFFF5a9ffdd87fb05a9ffdd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffdd87fb05a9ffdd8 /* ScArticulationSim.cpp */; }; + FFFF5a9ffe407fb05a9ffe40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffe407fb05a9ffe40 /* ScBodyCore.cpp */; }; + FFFF5a9ffea87fb05a9ffea8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffea87fb05a9ffea8 /* ScBodyCoreKinematic.cpp */; }; + FFFF5a9fff107fb05a9fff10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9fff107fb05a9fff10 /* ScBodySim.cpp */; }; + FFFF5a9fff787fb05a9fff78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9fff787fb05a9fff78 /* ScConstraintCore.cpp */; }; + FFFF5a9fffe07fb05a9fffe0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9fffe07fb05a9fffe0 /* ScConstraintGroupNode.cpp */; }; + FFFF5aa000487fb05aa00048 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa000487fb05aa00048 /* ScConstraintInteraction.cpp */; }; + FFFF5aa000b07fb05aa000b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa000b07fb05aa000b0 /* ScConstraintProjectionManager.cpp */; }; + FFFF5aa001187fb05aa00118 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa001187fb05aa00118 /* ScConstraintProjectionTree.cpp */; }; + FFFF5aa001807fb05aa00180 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa001807fb05aa00180 /* ScConstraintSim.cpp */; }; + FFFF5aa001e87fb05aa001e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa001e87fb05aa001e8 /* ScElementInteractionMarker.cpp */; }; + FFFF5aa002507fb05aa00250 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa002507fb05aa00250 /* ScElementSim.cpp */; }; + FFFF5aa002b87fb05aa002b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa002b87fb05aa002b8 /* ScInteraction.cpp */; }; + FFFF5aa003207fb05aa00320 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa003207fb05aa00320 /* ScIterators.cpp */; }; + FFFF5aa003887fb05aa00388 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa003887fb05aa00388 /* ScMaterialCore.cpp */; }; + FFFF5aa003f07fb05aa003f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa003f07fb05aa003f0 /* ScMetaData.cpp */; }; + FFFF5aa004587fb05aa00458 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa004587fb05aa00458 /* ScNPhaseCore.cpp */; }; + FFFF5aa004c07fb05aa004c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa004c07fb05aa004c0 /* ScPhysics.cpp */; }; + FFFF5aa005287fb05aa00528 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa005287fb05aa00528 /* ScRigidCore.cpp */; }; + FFFF5aa005907fb05aa00590 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa005907fb05aa00590 /* ScRigidSim.cpp */; }; + FFFF5aa005f87fb05aa005f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa005f87fb05aa005f8 /* ScScene.cpp */; }; + FFFF5aa006607fb05aa00660 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa006607fb05aa00660 /* ScShapeCore.cpp */; }; + FFFF5aa006c87fb05aa006c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa006c87fb05aa006c8 /* ScShapeInteraction.cpp */; }; + FFFF5aa007307fb05aa00730 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa007307fb05aa00730 /* ScShapeSim.cpp */; }; + FFFF5aa007987fb05aa00798 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa007987fb05aa00798 /* ScSimStats.cpp */; }; + FFFF5aa008007fb05aa00800 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa008007fb05aa00800 /* ScSimulationController.cpp */; }; + FFFF5aa008687fb05aa00868 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa008687fb05aa00868 /* ScSqBoundsManager.cpp */; }; + FFFF5aa008d07fb05aa008d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa008d07fb05aa008d0 /* ScStaticCore.cpp */; }; + FFFF5aa009387fb05aa00938 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa009387fb05aa00938 /* ScStaticSim.cpp */; }; + FFFF5aa009a07fb05aa009a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa009a07fb05aa009a0 /* ScTriggerInteraction.cpp */; }; + FFFF5aa00b407fb05aa00b40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00b407fb05aa00b40 /* particles/ScParticleBodyInteraction.cpp */; }; + FFFF5aa00ba87fb05aa00ba8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00ba87fb05aa00ba8 /* particles/ScParticlePacketShape.cpp */; }; + FFFF5aa00c107fb05aa00c10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00c107fb05aa00c10 /* particles/ScParticleSystemCore.cpp */; }; + FFFF5aa00c787fb05aa00c78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00c787fb05aa00c78 /* particles/ScParticleSystemSim.cpp */; }; + FFFF5aa00db07fb05aa00db0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00db07fb05aa00db0 /* cloth/ScClothCore.cpp */; }; + FFFF5aa00e187fb05aa00e18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00e187fb05aa00e18 /* cloth/ScClothFabricCore.cpp */; }; + FFFF5aa00e807fb05aa00e80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00e807fb05aa00e80 /* cloth/ScClothShape.cpp */; }; + FFFF5aa00ee87fb05aa00ee8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00ee87fb05aa00ee8 /* cloth/ScClothSim.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5bb075b07fcd5bb075b0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD570166007fcd57016600 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD570166687fcd57016668 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD570166d07fcd570166d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD570167387fcd57016738 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD570167a07fcd570167a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD570168087fcd57016808 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD570168707fcd57016870 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD570168d87fcd570168d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; - FFFD570169407fcd57016940 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD570169a87fcd570169a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD57016a107fcd57016a10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD57016a787fcd57016a78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD57016ae07fcd57016ae0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD57016b487fcd57016b48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD57016bb07fcd57016bb0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD570198007fcd57019800 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD570198687fcd57019868 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD570198d07fcd570198d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD570199387fcd57019938 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD570199a07fcd570199a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019a087fcd57019a08 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019a707fcd57019a70 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019ad87fcd57019ad8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019b407fcd57019b40 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019ba87fcd57019ba8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019c107fcd57019c10 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019c787fcd57019c78 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019ce07fcd57019ce0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019d487fcd57019d48 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019db07fcd57019db0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019e187fcd57019e18 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019e807fcd57019e80 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019ee87fcd57019ee8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019f507fcd57019f50 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD57019fb87fcd57019fb8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a0207fcd5701a020 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a0887fcd5701a088 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a0f07fcd5701a0f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a1587fcd5701a158 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a1c07fcd5701a1c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a2287fcd5701a228 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a2907fcd5701a290 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a2f87fcd5701a2f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a3607fcd5701a360 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a3c87fcd5701a3c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a4307fcd5701a430 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a4987fcd5701a498 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a5007fcd5701a500 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a5687fcd5701a568 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701a5d07fcd5701a5d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701a6387fcd5701a638 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701a6a07fcd5701a6a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701a7087fcd5701a708 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701a7707fcd5701a770 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701a7d87fcd5701a7d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701a8407fcd5701a840 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701a8a87fcd5701a8a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701a9107fcd5701a910 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701a9787fcd5701a978 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701a9e07fcd5701a9e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701aa487fcd5701aa48 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701aab07fcd5701aab0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701ab187fcd5701ab18 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701ab807fcd5701ab80 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701abe87fcd5701abe8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701ac507fcd5701ac50 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701acb87fcd5701acb8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701ad207fcd5701ad20 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701ad887fcd5701ad88 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701adf07fcd5701adf0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701ae587fcd5701ae58 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701aec07fcd5701aec0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701af287fcd5701af28 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701af907fcd5701af90 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701aff87fcd5701aff8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b0607fcd5701b060 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b0c87fcd5701b0c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b1307fcd5701b130 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b1987fcd5701b198 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b2007fcd5701b200 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b2687fcd5701b268 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b2d07fcd5701b2d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b3387fcd5701b338 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b3a07fcd5701b3a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b4087fcd5701b408 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701b4707fcd5701b470 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701b4d87fcd5701b4d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701b5407fcd5701b540 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b5a87fcd5701b5a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b6107fcd5701b610 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b6787fcd5701b678 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b6e07fcd5701b6e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701b7487fcd5701b748 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5701b7b07fcd5701b7b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b8187fcd5701b818 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b8807fcd5701b880 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5701b8e87fcd5701b8e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5cb778e07fb05cb778e0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a9fbc007fb05a9fbc00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fbc687fb05a9fbc68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fbcd07fb05a9fbcd0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fbd387fb05a9fbd38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fbda07fb05a9fbda0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fbe087fb05a9fbe08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fbe707fb05a9fbe70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fbed87fb05a9fbed8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fbf407fb05a9fbf40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fbfa87fb05a9fbfa8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fc0107fb05a9fc010 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fc0787fb05a9fc078 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fc0e07fb05a9fc0e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fc1487fb05a9fc148 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fc1b07fb05a9fc1b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fee007fb05a9fee00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fee687fb05a9fee68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9feed07fb05a9feed0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fef387fb05a9fef38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fefa07fb05a9fefa0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff0087fb05a9ff008 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff0707fb05a9ff070 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff0d87fb05a9ff0d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff1407fb05a9ff140 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff1a87fb05a9ff1a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff2107fb05a9ff210 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff2787fb05a9ff278 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff2e07fb05a9ff2e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff3487fb05a9ff348 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff3b07fb05a9ff3b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff4187fb05a9ff418 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff4807fb05a9ff480 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff4e87fb05a9ff4e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff5507fb05a9ff550 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff5b87fb05a9ff5b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff6207fb05a9ff620 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff6887fb05a9ff688 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff6f07fb05a9ff6f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff7587fb05a9ff758 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff7c07fb05a9ff7c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff8287fb05a9ff828 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff8907fb05a9ff890 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff8f87fb05a9ff8f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff9607fb05a9ff960 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ff9c87fb05a9ff9c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ffa307fb05a9ffa30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ffa987fb05a9ffa98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ffb007fb05a9ffb00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ffb687fb05a9ffb68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ffbd07fb05a9ffbd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ffc387fb05a9ffc38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ffca07fb05a9ffca0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ffd087fb05a9ffd08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ffd707fb05a9ffd70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ffdd87fb05a9ffdd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ffe407fb05a9ffe40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ffea87fb05a9ffea8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fff107fb05a9fff10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fff787fb05a9fff78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9fffe07fb05a9fffe0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa000487fb05aa00048 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa000b07fb05aa000b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa001187fb05aa00118 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa001807fb05aa00180 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa001e87fb05aa001e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa002507fb05aa00250 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa002b87fb05aa002b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa003207fb05aa00320 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa003887fb05aa00388 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa003f07fb05aa003f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa004587fb05aa00458 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa004c07fb05aa004c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa005287fb05aa00528 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa005907fb05aa00590 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa005f87fb05aa005f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa006607fb05aa00660 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa006c87fb05aa006c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa007307fb05aa00730 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa007987fb05aa00798 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa008007fb05aa00800 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa008687fb05aa00868 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa008d07fb05aa008d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa009387fb05aa00938 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa009a07fb05aa009a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00a087fb05aa00a08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00a707fb05aa00a70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00ad87fb05aa00ad8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00b407fb05aa00b40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00ba87fb05aa00ba8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00c107fb05aa00c10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00c787fb05aa00c78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00ce07fb05aa00ce0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00d487fb05aa00d48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00db07fb05aa00db0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00e187fb05aa00e18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00e807fb05aa00e80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa00ee87fb05aa00ee8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25bb075b07fcd5bb075b0 /* Resources */ = { + FFF25cb778e07fb05cb778e0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1131,7 +1131,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5bb075b07fcd5bb075b0 /* Frameworks */ = { + FFFC5cb778e07fb05cb778e0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1141,53 +1141,53 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85bb075b07fcd5bb075b0 /* Sources */ = { + FFF85cb778e07fb05cb778e0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5701a5d07fcd5701a5d0, - FFFF5701a6387fcd5701a638, - FFFF5701a6a07fcd5701a6a0, - FFFF5701a7087fcd5701a708, - FFFF5701a7707fcd5701a770, - FFFF5701a7d87fcd5701a7d8, - FFFF5701a8407fcd5701a840, - FFFF5701a8a87fcd5701a8a8, - FFFF5701a9107fcd5701a910, - FFFF5701a9787fcd5701a978, - FFFF5701a9e07fcd5701a9e0, - FFFF5701aa487fcd5701aa48, - FFFF5701aab07fcd5701aab0, - FFFF5701ab187fcd5701ab18, - FFFF5701ab807fcd5701ab80, - FFFF5701abe87fcd5701abe8, - FFFF5701ac507fcd5701ac50, - FFFF5701acb87fcd5701acb8, - FFFF5701ad207fcd5701ad20, - FFFF5701ad887fcd5701ad88, - FFFF5701adf07fcd5701adf0, - FFFF5701ae587fcd5701ae58, - FFFF5701aec07fcd5701aec0, - FFFF5701af287fcd5701af28, - FFFF5701af907fcd5701af90, - FFFF5701aff87fcd5701aff8, - FFFF5701b0607fcd5701b060, - FFFF5701b0c87fcd5701b0c8, - FFFF5701b1307fcd5701b130, - FFFF5701b1987fcd5701b198, - FFFF5701b2007fcd5701b200, - FFFF5701b2687fcd5701b268, - FFFF5701b2d07fcd5701b2d0, - FFFF5701b3387fcd5701b338, - FFFF5701b3a07fcd5701b3a0, - FFFF5701b5407fcd5701b540, - FFFF5701b5a87fcd5701b5a8, - FFFF5701b6107fcd5701b610, - FFFF5701b6787fcd5701b678, - FFFF5701b7b07fcd5701b7b0, - FFFF5701b8187fcd5701b818, - FFFF5701b8807fcd5701b880, - FFFF5701b8e87fcd5701b8e8, + FFFF5a9ffbd07fb05a9ffbd0, + FFFF5a9ffc387fb05a9ffc38, + FFFF5a9ffca07fb05a9ffca0, + FFFF5a9ffd087fb05a9ffd08, + FFFF5a9ffd707fb05a9ffd70, + FFFF5a9ffdd87fb05a9ffdd8, + FFFF5a9ffe407fb05a9ffe40, + FFFF5a9ffea87fb05a9ffea8, + FFFF5a9fff107fb05a9fff10, + FFFF5a9fff787fb05a9fff78, + FFFF5a9fffe07fb05a9fffe0, + FFFF5aa000487fb05aa00048, + FFFF5aa000b07fb05aa000b0, + FFFF5aa001187fb05aa00118, + FFFF5aa001807fb05aa00180, + FFFF5aa001e87fb05aa001e8, + FFFF5aa002507fb05aa00250, + FFFF5aa002b87fb05aa002b8, + FFFF5aa003207fb05aa00320, + FFFF5aa003887fb05aa00388, + FFFF5aa003f07fb05aa003f0, + FFFF5aa004587fb05aa00458, + FFFF5aa004c07fb05aa004c0, + FFFF5aa005287fb05aa00528, + FFFF5aa005907fb05aa00590, + FFFF5aa005f87fb05aa005f8, + FFFF5aa006607fb05aa00660, + FFFF5aa006c87fb05aa006c8, + FFFF5aa007307fb05aa00730, + FFFF5aa007987fb05aa00798, + FFFF5aa008007fb05aa00800, + FFFF5aa008687fb05aa00868, + FFFF5aa008d07fb05aa008d0, + FFFF5aa009387fb05aa00938, + FFFF5aa009a07fb05aa009a0, + FFFF5aa00b407fb05aa00b40, + FFFF5aa00ba87fb05aa00ba8, + FFFF5aa00c107fb05aa00c10, + FFFF5aa00c787fb05aa00c78, + FFFF5aa00db07fb05aa00db0, + FFFF5aa00e187fb05aa00e18, + FFFF5aa00e807fb05aa00e80, + FFFF5aa00ee87fb05aa00ee8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1199,80 +1199,80 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCooking */ - FFFF580e26b07fcd580e26b0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD586bc1607fcd586bc160 /* PhysXExtensions */; }; - FFFF588190007fcd58819000 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588190007fcd58819000 /* Adjacencies.cpp */; }; - FFFF588190687fcd58819068 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588190687fcd58819068 /* Cooking.cpp */; }; - FFFF588190d07fcd588190d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588190d07fcd588190d0 /* CookingUtils.cpp */; }; - FFFF588191387fcd58819138 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588191387fcd58819138 /* EdgeList.cpp */; }; - FFFF588191a07fcd588191a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588191a07fcd588191a0 /* MeshCleaner.cpp */; }; - FFFF588192087fcd58819208 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588192087fcd58819208 /* Quantizer.cpp */; }; - FFFF588194e07fcd588194e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588194e07fcd588194e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; - FFFF588195487fcd58819548 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588195487fcd58819548 /* mesh/HeightFieldCooking.cpp */; }; - FFFF588195b07fcd588195b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588195b07fcd588195b0 /* mesh/RTreeCooking.cpp */; }; - FFFF588196187fcd58819618 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588196187fcd58819618 /* mesh/TriangleMeshBuilder.cpp */; }; - FFFF588198887fcd58819888 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588198887fcd58819888 /* convex/BigConvexDataBuilder.cpp */; }; - FFFF588198f07fcd588198f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588198f07fcd588198f0 /* convex/ConvexHullBuilder.cpp */; }; - FFFF588199587fcd58819958 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588199587fcd58819958 /* convex/ConvexHullLib.cpp */; }; - FFFF588199c07fcd588199c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD588199c07fcd588199c0 /* convex/ConvexHullUtils.cpp */; }; - FFFF58819a287fcd58819a28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD58819a287fcd58819a28 /* convex/ConvexMeshBuilder.cpp */; }; - FFFF58819a907fcd58819a90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD58819a907fcd58819a90 /* convex/ConvexPolygonsBuilder.cpp */; }; - FFFF58819af87fcd58819af8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD58819af87fcd58819af8 /* convex/InflationConvexHullLib.cpp */; }; - FFFF58819b607fcd58819b60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD58819b607fcd58819b60 /* convex/QuickHullConvexHullLib.cpp */; }; - FFFF58819bc87fcd58819bc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD58819bc87fcd58819bc8 /* convex/VolumeIntegration.cpp */; }; + FFFF5cb802007fb05cb80200 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5cb609d07fb05cb609d0 /* PhysXExtensions */; }; + FFFF5aa030007fb05aa03000 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa030007fb05aa03000 /* Adjacencies.cpp */; }; + FFFF5aa030687fb05aa03068 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa030687fb05aa03068 /* Cooking.cpp */; }; + FFFF5aa030d07fb05aa030d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa030d07fb05aa030d0 /* CookingUtils.cpp */; }; + FFFF5aa031387fb05aa03138 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa031387fb05aa03138 /* EdgeList.cpp */; }; + FFFF5aa031a07fb05aa031a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa031a07fb05aa031a0 /* MeshCleaner.cpp */; }; + FFFF5aa032087fb05aa03208 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa032087fb05aa03208 /* Quantizer.cpp */; }; + FFFF5aa034e07fb05aa034e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa034e07fb05aa034e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; + FFFF5aa035487fb05aa03548 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa035487fb05aa03548 /* mesh/HeightFieldCooking.cpp */; }; + FFFF5aa035b07fb05aa035b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa035b07fb05aa035b0 /* mesh/RTreeCooking.cpp */; }; + FFFF5aa036187fb05aa03618 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa036187fb05aa03618 /* mesh/TriangleMeshBuilder.cpp */; }; + FFFF5aa038887fb05aa03888 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa038887fb05aa03888 /* convex/BigConvexDataBuilder.cpp */; }; + FFFF5aa038f07fb05aa038f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa038f07fb05aa038f0 /* convex/ConvexHullBuilder.cpp */; }; + FFFF5aa039587fb05aa03958 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa039587fb05aa03958 /* convex/ConvexHullLib.cpp */; }; + FFFF5aa039c07fb05aa039c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa039c07fb05aa039c0 /* convex/ConvexHullUtils.cpp */; }; + FFFF5aa03a287fb05aa03a28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa03a287fb05aa03a28 /* convex/ConvexMeshBuilder.cpp */; }; + FFFF5aa03a907fb05aa03a90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa03a907fb05aa03a90 /* convex/ConvexPolygonsBuilder.cpp */; }; + FFFF5aa03af87fb05aa03af8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa03af87fb05aa03af8 /* convex/InflationConvexHullLib.cpp */; }; + FFFF5aa03b607fb05aa03b60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa03b607fb05aa03b60 /* convex/QuickHullConvexHullLib.cpp */; }; + FFFF5aa03bc87fb05aa03bc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa03bc87fb05aa03bc8 /* convex/VolumeIntegration.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b98d5507fcd5b98d550 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5bb0c3207fcd5bb0c320 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5bb0c3887fcd5bb0c388 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5bb0c3f07fcd5bb0c3f0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5bb0c4587fcd5bb0c458 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD5bb0c4c07fcd5bb0c4c0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5bb0c5287fcd5bb0c528 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5bb0c5907fcd5bb0c590 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; - FFFD588190007fcd58819000 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588190687fcd58819068 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588190d07fcd588190d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588191387fcd58819138 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588191a07fcd588191a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588192087fcd58819208 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588192707fcd58819270 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; - FFFD588192d87fcd588192d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD588193407fcd58819340 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD588193a87fcd588193a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; - FFFD588194107fcd58819410 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; - FFFD588194787fcd58819478 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD588194e07fcd588194e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588195487fcd58819548 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588195b07fcd588195b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588196187fcd58819618 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588196807fcd58819680 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD588196e87fcd588196e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD588197507fcd58819750 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; - FFFD588197b87fcd588197b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD588198207fcd58819820 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD588198887fcd58819888 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588198f07fcd588198f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588199587fcd58819958 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD588199c07fcd588199c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD58819a287fcd58819a28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD58819a907fcd58819a90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD58819af87fcd58819af8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD58819b607fcd58819b60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD58819bc87fcd58819bc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD58819c307fcd58819c30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD58819c987fcd58819c98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD58819d007fcd58819d00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD58819d687fcd58819d68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD58819dd07fcd58819dd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD58819e387fcd58819e38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD58819ea07fcd58819ea0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD58819f087fcd58819f08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD58819f707fcd58819f70 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb7c7007fb05cb7c700 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5cb85f007fb05cb85f00 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb85f687fb05cb85f68 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb85fd07fb05cb85fd0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb860387fb05cb86038 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb860a07fb05cb860a0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb861087fb05cb86108 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb861707fb05cb86170 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa030007fb05aa03000 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa030687fb05aa03068 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa030d07fb05aa030d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa031387fb05aa03138 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa031a07fb05aa031a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa032087fb05aa03208 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa032707fb05aa03270 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa032d87fb05aa032d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa033407fb05aa03340 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa033a87fb05aa033a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa034107fb05aa03410 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa034787fb05aa03478 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa034e07fb05aa034e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa035487fb05aa03548 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa035b07fb05aa035b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa036187fb05aa03618 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa036807fb05aa03680 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa036e87fb05aa036e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa037507fb05aa03750 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa037b87fb05aa037b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa038207fb05aa03820 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa038887fb05aa03888 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa038f07fb05aa038f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa039587fb05aa03958 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa039c07fb05aa039c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03a287fb05aa03a28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03a907fb05aa03a90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03af87fb05aa03af8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03b607fb05aa03b60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03bc87fb05aa03bc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03c307fb05aa03c30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03c987fb05aa03c98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03d007fb05aa03d00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03d687fb05aa03d68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03dd07fb05aa03dd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03e387fb05aa03e38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03ea07fb05aa03ea0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03f087fb05aa03f08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD5aa03f707fb05aa03f70 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25b98d5507fcd5b98d550 /* Resources */ = { + FFF25cb7c7007fb05cb7c700 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1282,7 +1282,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b98d5507fcd5b98d550 /* Frameworks */ = { + FFFC5cb7c7007fb05cb7c700 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1292,29 +1292,29 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b98d5507fcd5b98d550 /* Sources */ = { + FFF85cb7c7007fb05cb7c700 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF588190007fcd58819000, - FFFF588190687fcd58819068, - FFFF588190d07fcd588190d0, - FFFF588191387fcd58819138, - FFFF588191a07fcd588191a0, - FFFF588192087fcd58819208, - FFFF588194e07fcd588194e0, - FFFF588195487fcd58819548, - FFFF588195b07fcd588195b0, - FFFF588196187fcd58819618, - FFFF588198887fcd58819888, - FFFF588198f07fcd588198f0, - FFFF588199587fcd58819958, - FFFF588199c07fcd588199c0, - FFFF58819a287fcd58819a28, - FFFF58819a907fcd58819a90, - FFFF58819af87fcd58819af8, - FFFF58819b607fcd58819b60, - FFFF58819bc87fcd58819bc8, + FFFF5aa030007fb05aa03000, + FFFF5aa030687fb05aa03068, + FFFF5aa030d07fb05aa030d0, + FFFF5aa031387fb05aa03138, + FFFF5aa031a07fb05aa031a0, + FFFF5aa032087fb05aa03208, + FFFF5aa034e07fb05aa034e0, + FFFF5aa035487fb05aa03548, + FFFF5aa035b07fb05aa035b0, + FFFF5aa036187fb05aa03618, + FFFF5aa038887fb05aa03888, + FFFF5aa038f07fb05aa038f0, + FFFF5aa039587fb05aa03958, + FFFF5aa039c07fb05aa039c0, + FFFF5aa03a287fb05aa03a28, + FFFF5aa03a907fb05aa03a90, + FFFF5aa03af87fb05aa03af8, + FFFF5aa03b607fb05aa03b60, + FFFF5aa03bc87fb05aa03bc8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1323,515 +1323,515 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4580e25c07fcd580e25c0 /* PBXTargetDependency */ = { + FFF45cb872607fb05cb87260 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA56e143207fcd56e14320 /* PhysXCommon */; - targetProxy = FFF556e143207fcd56e14320 /* PBXContainerItemProxy */; + target = FFFA5b2fb4e07fb05b2fb4e0 /* PhysXCommon */; + targetProxy = FFF55b2fb4e07fb05b2fb4e0 /* PBXContainerItemProxy */; }; - FFF4580e26b07fcd580e26b0 /* PBXTargetDependency */ = { + FFF45cb802007fb05cb80200 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA586bc1607fcd586bc160 /* PhysXExtensions */; - targetProxy = FFF5586bc1607fcd586bc160 /* PBXContainerItemProxy */; + target = FFFA5cb609d07fb05cb609d0 /* PhysXExtensions */; + targetProxy = FFF55cb609d07fb05cb609d0 /* PBXContainerItemProxy */; }; - FFF45b989ce07fcd5b989ce0 /* PBXTargetDependency */ = { + FFF45cb7eff07fb05cb7eff0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA585016d07fcd585016d0 /* PxFoundation */; - targetProxy = FFF5585016d07fcd585016d0 /* PBXContainerItemProxy */; + target = FFFA5b080a507fb05b080a50 /* PxFoundation */; + targetProxy = FFF55b080a507fb05b080a50 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCommon */ - FFFF5880ec007fcd5880ec00 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5880ec007fcd5880ec00 /* src/CmBoxPruning.cpp */; }; - FFFF5880ec687fcd5880ec68 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5880ec687fcd5880ec68 /* src/CmCollection.cpp */; }; - FFFF5880ecd07fcd5880ecd0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5880ecd07fcd5880ecd0 /* src/CmMathUtils.cpp */; }; - FFFF5880ed387fcd5880ed38 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5880ed387fcd5880ed38 /* src/CmPtrTable.cpp */; }; - FFFF5880eda07fcd5880eda0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5880eda07fcd5880eda0 /* src/CmRadixSort.cpp */; }; - FFFF5880ee087fcd5880ee08 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5880ee087fcd5880ee08 /* src/CmRadixSortBuffered.cpp */; }; - FFFF5880ee707fcd5880ee70 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5880ee707fcd5880ee70 /* src/CmRenderOutput.cpp */; }; - FFFF5880eed87fcd5880eed8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5880eed87fcd5880eed8 /* src/CmVisualization.cpp */; }; - FFFF5b044ba87fcd5b044ba8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b044ba87fcd5b044ba8 /* ../../Include/GeomUtils */; }; - FFFF5b0480e07fcd5b0480e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0480e07fcd5b0480e0 /* src/GuBounds.cpp */; }; - FFFF5b0481487fcd5b048148 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0481487fcd5b048148 /* src/GuBox.cpp */; }; - FFFF5b0481b07fcd5b0481b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0481b07fcd5b0481b0 /* src/GuCCTSweepTests.cpp */; }; - FFFF5b0482187fcd5b048218 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0482187fcd5b048218 /* src/GuCapsule.cpp */; }; - FFFF5b0482807fcd5b048280 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0482807fcd5b048280 /* src/GuGeometryQuery.cpp */; }; - FFFF5b0482e87fcd5b0482e8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0482e87fcd5b0482e8 /* src/GuGeometryUnion.cpp */; }; - FFFF5b0483507fcd5b048350 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0483507fcd5b048350 /* src/GuInternal.cpp */; }; - FFFF5b0483b87fcd5b0483b8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0483b87fcd5b0483b8 /* src/GuMTD.cpp */; }; - FFFF5b0484207fcd5b048420 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0484207fcd5b048420 /* src/GuMeshFactory.cpp */; }; - FFFF5b0484887fcd5b048488 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0484887fcd5b048488 /* src/GuMetaData.cpp */; }; - FFFF5b0484f07fcd5b0484f0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0484f07fcd5b0484f0 /* src/GuOverlapTests.cpp */; }; - FFFF5b0485587fcd5b048558 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0485587fcd5b048558 /* src/GuRaycastTests.cpp */; }; - FFFF5b0485c07fcd5b0485c0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0485c07fcd5b0485c0 /* src/GuSerialize.cpp */; }; - FFFF5b0486287fcd5b048628 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0486287fcd5b048628 /* src/GuSweepMTD.cpp */; }; - FFFF5b0486907fcd5b048690 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0486907fcd5b048690 /* src/GuSweepSharedTests.cpp */; }; - FFFF5b0486f87fcd5b0486f8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0486f87fcd5b0486f8 /* src/GuSweepTests.cpp */; }; - FFFF5b0487607fcd5b048760 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0487607fcd5b048760 /* src/contact/GuContactBoxBox.cpp */; }; - FFFF5b0487c87fcd5b0487c8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0487c87fcd5b0487c8 /* src/contact/GuContactCapsuleBox.cpp */; }; - FFFF5b0488307fcd5b048830 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0488307fcd5b048830 /* src/contact/GuContactCapsuleCapsule.cpp */; }; - FFFF5b0488987fcd5b048898 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0488987fcd5b048898 /* src/contact/GuContactCapsuleConvex.cpp */; }; - FFFF5b0489007fcd5b048900 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0489007fcd5b048900 /* src/contact/GuContactCapsuleMesh.cpp */; }; - FFFF5b0489687fcd5b048968 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0489687fcd5b048968 /* src/contact/GuContactConvexConvex.cpp */; }; - FFFF5b0489d07fcd5b0489d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0489d07fcd5b0489d0 /* src/contact/GuContactConvexMesh.cpp */; }; - FFFF5b048a387fcd5b048a38 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048a387fcd5b048a38 /* src/contact/GuContactPlaneBox.cpp */; }; - FFFF5b048aa07fcd5b048aa0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048aa07fcd5b048aa0 /* src/contact/GuContactPlaneCapsule.cpp */; }; - FFFF5b048b087fcd5b048b08 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048b087fcd5b048b08 /* src/contact/GuContactPlaneConvex.cpp */; }; - FFFF5b048b707fcd5b048b70 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048b707fcd5b048b70 /* src/contact/GuContactPolygonPolygon.cpp */; }; - FFFF5b048bd87fcd5b048bd8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048bd87fcd5b048bd8 /* src/contact/GuContactSphereBox.cpp */; }; - FFFF5b048c407fcd5b048c40 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048c407fcd5b048c40 /* src/contact/GuContactSphereCapsule.cpp */; }; - FFFF5b048ca87fcd5b048ca8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048ca87fcd5b048ca8 /* src/contact/GuContactSphereMesh.cpp */; }; - FFFF5b048d107fcd5b048d10 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048d107fcd5b048d10 /* src/contact/GuContactSpherePlane.cpp */; }; - FFFF5b048d787fcd5b048d78 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048d787fcd5b048d78 /* src/contact/GuContactSphereSphere.cpp */; }; - FFFF5b048de07fcd5b048de0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048de07fcd5b048de0 /* src/contact/GuFeatureCode.cpp */; }; - FFFF5b048e487fcd5b048e48 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048e487fcd5b048e48 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; - FFFF5b048eb07fcd5b048eb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048eb07fcd5b048eb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; - FFFF5b048f187fcd5b048f18 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048f187fcd5b048f18 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; - FFFF5b048f807fcd5b048f80 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048f807fcd5b048f80 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; - FFFF5b048fe87fcd5b048fe8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b048fe87fcd5b048fe8 /* src/common/GuBarycentricCoordinates.cpp */; }; - FFFF5b0490507fcd5b049050 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0490507fcd5b049050 /* src/common/GuSeparatingAxes.cpp */; }; - FFFF5b0490b87fcd5b0490b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0490b87fcd5b0490b8 /* src/convex/GuBigConvexData.cpp */; }; - FFFF5b0491207fcd5b049120 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0491207fcd5b049120 /* src/convex/GuConvexHelper.cpp */; }; - FFFF5b0491887fcd5b049188 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0491887fcd5b049188 /* src/convex/GuConvexMesh.cpp */; }; - FFFF5b0491f07fcd5b0491f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0491f07fcd5b0491f0 /* src/convex/GuConvexSupportTable.cpp */; }; - FFFF5b0492587fcd5b049258 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0492587fcd5b049258 /* src/convex/GuConvexUtilsInternal.cpp */; }; - FFFF5b0492c07fcd5b0492c0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0492c07fcd5b0492c0 /* src/convex/GuHillClimbing.cpp */; }; - FFFF5b0493287fcd5b049328 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0493287fcd5b049328 /* src/convex/GuShapeConvex.cpp */; }; - FFFF5b0493907fcd5b049390 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0493907fcd5b049390 /* src/distance/GuDistancePointBox.cpp */; }; - FFFF5b0493f87fcd5b0493f8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0493f87fcd5b0493f8 /* src/distance/GuDistancePointTriangle.cpp */; }; - FFFF5b0494607fcd5b049460 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0494607fcd5b049460 /* src/distance/GuDistanceSegmentBox.cpp */; }; - FFFF5b0494c87fcd5b0494c8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0494c87fcd5b0494c8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; - FFFF5b0495307fcd5b049530 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0495307fcd5b049530 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; - FFFF5b0495987fcd5b049598 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0495987fcd5b049598 /* src/sweep/GuSweepBoxBox.cpp */; }; - FFFF5b0496007fcd5b049600 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0496007fcd5b049600 /* src/sweep/GuSweepBoxSphere.cpp */; }; - FFFF5b0496687fcd5b049668 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0496687fcd5b049668 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; - FFFF5b0496d07fcd5b0496d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0496d07fcd5b0496d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; - FFFF5b0497387fcd5b049738 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0497387fcd5b049738 /* src/sweep/GuSweepCapsuleBox.cpp */; }; - FFFF5b0497a07fcd5b0497a0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0497a07fcd5b0497a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; - FFFF5b0498087fcd5b049808 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0498087fcd5b049808 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; - FFFF5b0498707fcd5b049870 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0498707fcd5b049870 /* src/sweep/GuSweepSphereCapsule.cpp */; }; - FFFF5b0498d87fcd5b0498d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0498d87fcd5b0498d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; - FFFF5b0499407fcd5b049940 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0499407fcd5b049940 /* src/sweep/GuSweepSphereTriangle.cpp */; }; - FFFF5b0499a87fcd5b0499a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b0499a87fcd5b0499a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; - FFFF5b049a107fcd5b049a10 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049a107fcd5b049a10 /* src/gjk/GuEPA.cpp */; }; - FFFF5b049a787fcd5b049a78 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049a787fcd5b049a78 /* src/gjk/GuGJKSimplex.cpp */; }; - FFFF5b049ae07fcd5b049ae0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049ae07fcd5b049ae0 /* src/gjk/GuGJKTest.cpp */; }; - FFFF5b049b487fcd5b049b48 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049b487fcd5b049b48 /* src/intersection/GuIntersectionBoxBox.cpp */; }; - FFFF5b049bb07fcd5b049bb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049bb07fcd5b049bb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; - FFFF5b049c187fcd5b049c18 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049c187fcd5b049c18 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; - FFFF5b049c807fcd5b049c80 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049c807fcd5b049c80 /* src/intersection/GuIntersectionRayBox.cpp */; }; - FFFF5b049ce87fcd5b049ce8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049ce87fcd5b049ce8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; - FFFF5b049d507fcd5b049d50 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049d507fcd5b049d50 /* src/intersection/GuIntersectionRaySphere.cpp */; }; - FFFF5b049db87fcd5b049db8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049db87fcd5b049db8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; - FFFF5b049e207fcd5b049e20 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049e207fcd5b049e20 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; - FFFF5b049e887fcd5b049e88 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049e887fcd5b049e88 /* src/mesh/GuBV32.cpp */; }; - FFFF5b049ef07fcd5b049ef0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049ef07fcd5b049ef0 /* src/mesh/GuBV32Build.cpp */; }; - FFFF5b049f587fcd5b049f58 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049f587fcd5b049f58 /* src/mesh/GuBV4.cpp */; }; - FFFF5b049fc07fcd5b049fc0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b049fc07fcd5b049fc0 /* src/mesh/GuBV4Build.cpp */; }; - FFFF5b04a0287fcd5b04a028 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a0287fcd5b04a028 /* src/mesh/GuBV4_AABBSweep.cpp */; }; - FFFF5b04a0907fcd5b04a090 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a0907fcd5b04a090 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; - FFFF5b04a0f87fcd5b04a0f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a0f87fcd5b04a0f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; - FFFF5b04a1607fcd5b04a160 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a1607fcd5b04a160 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; - FFFF5b04a1c87fcd5b04a1c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a1c87fcd5b04a1c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; - FFFF5b04a2307fcd5b04a230 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a2307fcd5b04a230 /* src/mesh/GuBV4_Raycast.cpp */; }; - FFFF5b04a2987fcd5b04a298 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a2987fcd5b04a298 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; - FFFF5b04a3007fcd5b04a300 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a3007fcd5b04a300 /* src/mesh/GuBV4_SphereSweep.cpp */; }; - FFFF5b04a3687fcd5b04a368 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a3687fcd5b04a368 /* src/mesh/GuMeshQuery.cpp */; }; - FFFF5b04a3d07fcd5b04a3d0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a3d07fcd5b04a3d0 /* src/mesh/GuMidphaseBV4.cpp */; }; - FFFF5b04a4387fcd5b04a438 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a4387fcd5b04a438 /* src/mesh/GuMidphaseRTree.cpp */; }; - FFFF5b04a4a07fcd5b04a4a0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a4a07fcd5b04a4a0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; - FFFF5b04a5087fcd5b04a508 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a5087fcd5b04a508 /* src/mesh/GuRTree.cpp */; }; - FFFF5b04a5707fcd5b04a570 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a5707fcd5b04a570 /* src/mesh/GuRTreeQueries.cpp */; }; - FFFF5b04a5d87fcd5b04a5d8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a5d87fcd5b04a5d8 /* src/mesh/GuSweepsMesh.cpp */; }; - FFFF5b04a6407fcd5b04a640 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a6407fcd5b04a640 /* src/mesh/GuTriangleMesh.cpp */; }; - FFFF5b04a6a87fcd5b04a6a8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a6a87fcd5b04a6a8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; - FFFF5b04a7107fcd5b04a710 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a7107fcd5b04a710 /* src/mesh/GuTriangleMeshRTree.cpp */; }; - FFFF5b04a7787fcd5b04a778 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a7787fcd5b04a778 /* src/hf/GuHeightField.cpp */; }; - FFFF5b04a7e07fcd5b04a7e0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a7e07fcd5b04a7e0 /* src/hf/GuHeightFieldUtil.cpp */; }; - FFFF5b04a8487fcd5b04a848 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a8487fcd5b04a848 /* src/hf/GuOverlapTestsHF.cpp */; }; - FFFF5b04a8b07fcd5b04a8b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a8b07fcd5b04a8b0 /* src/hf/GuSweepsHF.cpp */; }; - FFFF5b04a9187fcd5b04a918 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a9187fcd5b04a918 /* src/pcm/GuPCMContactBoxBox.cpp */; }; - FFFF5b04a9807fcd5b04a980 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a9807fcd5b04a980 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; - FFFF5b04a9e87fcd5b04a9e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04a9e87fcd5b04a9e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; - FFFF5b04aa507fcd5b04aa50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04aa507fcd5b04aa50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; - FFFF5b04aab87fcd5b04aab8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04aab87fcd5b04aab8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; - FFFF5b04ab207fcd5b04ab20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04ab207fcd5b04ab20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; - FFFF5b04ab887fcd5b04ab88 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04ab887fcd5b04ab88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; - FFFF5b04abf07fcd5b04abf0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04abf07fcd5b04abf0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; - FFFF5b04ac587fcd5b04ac58 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04ac587fcd5b04ac58 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; - FFFF5b04acc07fcd5b04acc0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04acc07fcd5b04acc0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; - FFFF5b04ad287fcd5b04ad28 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04ad287fcd5b04ad28 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; - FFFF5b04ad907fcd5b04ad90 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04ad907fcd5b04ad90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; - FFFF5b04adf87fcd5b04adf8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04adf87fcd5b04adf8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; - FFFF5b04ae607fcd5b04ae60 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04ae607fcd5b04ae60 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; - FFFF5b04aec87fcd5b04aec8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04aec87fcd5b04aec8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; - FFFF5b04af307fcd5b04af30 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04af307fcd5b04af30 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; - FFFF5b04af987fcd5b04af98 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04af987fcd5b04af98 /* src/pcm/GuPCMContactSphereBox.cpp */; }; - FFFF5b04b0007fcd5b04b000 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04b0007fcd5b04b000 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; - FFFF5b04b0687fcd5b04b068 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04b0687fcd5b04b068 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; - FFFF5b04b0d07fcd5b04b0d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04b0d07fcd5b04b0d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; - FFFF5b04b1387fcd5b04b138 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04b1387fcd5b04b138 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; - FFFF5b04b1a07fcd5b04b1a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04b1a07fcd5b04b1a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; - FFFF5b04b2087fcd5b04b208 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04b2087fcd5b04b208 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; - FFFF5b04b2707fcd5b04b270 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04b2707fcd5b04b270 /* src/pcm/GuPCMShapeConvex.cpp */; }; - FFFF5b04b2d87fcd5b04b2d8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04b2d87fcd5b04b2d8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; - FFFF5b04b3407fcd5b04b340 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04b3407fcd5b04b340 /* src/pcm/GuPersistentContactManifold.cpp */; }; - FFFF5b04b3a87fcd5b04b3a8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04b3a87fcd5b04b3a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; - FFFF5b04b4107fcd5b04b410 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b04b4107fcd5b04b410 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; + FFFF5a9a22007fb05a9a2200 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a22007fb05a9a2200 /* src/CmBoxPruning.cpp */; }; + FFFF5a9a22687fb05a9a2268 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a22687fb05a9a2268 /* src/CmCollection.cpp */; }; + FFFF5a9a22d07fb05a9a22d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a22d07fb05a9a22d0 /* src/CmMathUtils.cpp */; }; + FFFF5a9a23387fb05a9a2338 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a23387fb05a9a2338 /* src/CmPtrTable.cpp */; }; + FFFF5a9a23a07fb05a9a23a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a23a07fb05a9a23a0 /* src/CmRadixSort.cpp */; }; + FFFF5a9a24087fb05a9a2408 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a24087fb05a9a2408 /* src/CmRadixSortBuffered.cpp */; }; + FFFF5a9a24707fb05a9a2470 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a24707fb05a9a2470 /* src/CmRenderOutput.cpp */; }; + FFFF5a9a24d87fb05a9a24d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a24d87fb05a9a24d8 /* src/CmVisualization.cpp */; }; + FFFF5b8013a87fb05b8013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8013a87fb05b8013a8 /* ../../Include/GeomUtils */; }; + FFFF5b8048e07fb05b8048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8048e07fb05b8048e0 /* src/GuBounds.cpp */; }; + FFFF5b8049487fb05b804948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8049487fb05b804948 /* src/GuBox.cpp */; }; + FFFF5b8049b07fb05b8049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8049b07fb05b8049b0 /* src/GuCCTSweepTests.cpp */; }; + FFFF5b804a187fb05b804a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804a187fb05b804a18 /* src/GuCapsule.cpp */; }; + FFFF5b804a807fb05b804a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804a807fb05b804a80 /* src/GuGeometryQuery.cpp */; }; + FFFF5b804ae87fb05b804ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804ae87fb05b804ae8 /* src/GuGeometryUnion.cpp */; }; + FFFF5b804b507fb05b804b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804b507fb05b804b50 /* src/GuInternal.cpp */; }; + FFFF5b804bb87fb05b804bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804bb87fb05b804bb8 /* src/GuMTD.cpp */; }; + FFFF5b804c207fb05b804c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804c207fb05b804c20 /* src/GuMeshFactory.cpp */; }; + FFFF5b804c887fb05b804c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804c887fb05b804c88 /* src/GuMetaData.cpp */; }; + FFFF5b804cf07fb05b804cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804cf07fb05b804cf0 /* src/GuOverlapTests.cpp */; }; + FFFF5b804d587fb05b804d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804d587fb05b804d58 /* src/GuRaycastTests.cpp */; }; + FFFF5b804dc07fb05b804dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804dc07fb05b804dc0 /* src/GuSerialize.cpp */; }; + FFFF5b804e287fb05b804e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804e287fb05b804e28 /* src/GuSweepMTD.cpp */; }; + FFFF5b804e907fb05b804e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804e907fb05b804e90 /* src/GuSweepSharedTests.cpp */; }; + FFFF5b804ef87fb05b804ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804ef87fb05b804ef8 /* src/GuSweepTests.cpp */; }; + FFFF5b804f607fb05b804f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804f607fb05b804f60 /* src/contact/GuContactBoxBox.cpp */; }; + FFFF5b804fc87fb05b804fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804fc87fb05b804fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; + FFFF5b8050307fb05b805030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8050307fb05b805030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; + FFFF5b8050987fb05b805098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8050987fb05b805098 /* src/contact/GuContactCapsuleConvex.cpp */; }; + FFFF5b8051007fb05b805100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8051007fb05b805100 /* src/contact/GuContactCapsuleMesh.cpp */; }; + FFFF5b8051687fb05b805168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8051687fb05b805168 /* src/contact/GuContactConvexConvex.cpp */; }; + FFFF5b8051d07fb05b8051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8051d07fb05b8051d0 /* src/contact/GuContactConvexMesh.cpp */; }; + FFFF5b8052387fb05b805238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8052387fb05b805238 /* src/contact/GuContactPlaneBox.cpp */; }; + FFFF5b8052a07fb05b8052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8052a07fb05b8052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; + FFFF5b8053087fb05b805308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8053087fb05b805308 /* src/contact/GuContactPlaneConvex.cpp */; }; + FFFF5b8053707fb05b805370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8053707fb05b805370 /* src/contact/GuContactPolygonPolygon.cpp */; }; + FFFF5b8053d87fb05b8053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8053d87fb05b8053d8 /* src/contact/GuContactSphereBox.cpp */; }; + FFFF5b8054407fb05b805440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8054407fb05b805440 /* src/contact/GuContactSphereCapsule.cpp */; }; + FFFF5b8054a87fb05b8054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8054a87fb05b8054a8 /* src/contact/GuContactSphereMesh.cpp */; }; + FFFF5b8055107fb05b805510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8055107fb05b805510 /* src/contact/GuContactSpherePlane.cpp */; }; + FFFF5b8055787fb05b805578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8055787fb05b805578 /* src/contact/GuContactSphereSphere.cpp */; }; + FFFF5b8055e07fb05b8055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8055e07fb05b8055e0 /* src/contact/GuFeatureCode.cpp */; }; + FFFF5b8056487fb05b805648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8056487fb05b805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; + FFFF5b8056b07fb05b8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8056b07fb05b8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; + FFFF5b8057187fb05b805718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8057187fb05b805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; + FFFF5b8057807fb05b805780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8057807fb05b805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; + FFFF5b8057e87fb05b8057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8057e87fb05b8057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; + FFFF5b8058507fb05b805850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8058507fb05b805850 /* src/common/GuSeparatingAxes.cpp */; }; + FFFF5b8058b87fb05b8058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8058b87fb05b8058b8 /* src/convex/GuBigConvexData.cpp */; }; + FFFF5b8059207fb05b805920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8059207fb05b805920 /* src/convex/GuConvexHelper.cpp */; }; + FFFF5b8059887fb05b805988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8059887fb05b805988 /* src/convex/GuConvexMesh.cpp */; }; + FFFF5b8059f07fb05b8059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8059f07fb05b8059f0 /* src/convex/GuConvexSupportTable.cpp */; }; + FFFF5b805a587fb05b805a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805a587fb05b805a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; + FFFF5b805ac07fb05b805ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805ac07fb05b805ac0 /* src/convex/GuHillClimbing.cpp */; }; + FFFF5b805b287fb05b805b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805b287fb05b805b28 /* src/convex/GuShapeConvex.cpp */; }; + FFFF5b805b907fb05b805b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805b907fb05b805b90 /* src/distance/GuDistancePointBox.cpp */; }; + FFFF5b805bf87fb05b805bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805bf87fb05b805bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; + FFFF5b805c607fb05b805c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805c607fb05b805c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; + FFFF5b805cc87fb05b805cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805cc87fb05b805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; + FFFF5b805d307fb05b805d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805d307fb05b805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; + FFFF5b805d987fb05b805d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805d987fb05b805d98 /* src/sweep/GuSweepBoxBox.cpp */; }; + FFFF5b805e007fb05b805e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805e007fb05b805e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; + FFFF5b805e687fb05b805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805e687fb05b805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; + FFFF5b805ed07fb05b805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805ed07fb05b805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; + FFFF5b805f387fb05b805f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805f387fb05b805f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; + FFFF5b805fa07fb05b805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805fa07fb05b805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; + FFFF5b8060087fb05b806008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8060087fb05b806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; + FFFF5b8060707fb05b806070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8060707fb05b806070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; + FFFF5b8060d87fb05b8060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8060d87fb05b8060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; + FFFF5b8061407fb05b806140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8061407fb05b806140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; + FFFF5b8061a87fb05b8061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8061a87fb05b8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; + FFFF5b8062107fb05b806210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8062107fb05b806210 /* src/gjk/GuEPA.cpp */; }; + FFFF5b8062787fb05b806278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8062787fb05b806278 /* src/gjk/GuGJKSimplex.cpp */; }; + FFFF5b8062e07fb05b8062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8062e07fb05b8062e0 /* src/gjk/GuGJKTest.cpp */; }; + FFFF5b8063487fb05b806348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8063487fb05b806348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; + FFFF5b8063b07fb05b8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8063b07fb05b8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; + FFFF5b8064187fb05b806418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8064187fb05b806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; + FFFF5b8064807fb05b806480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8064807fb05b806480 /* src/intersection/GuIntersectionRayBox.cpp */; }; + FFFF5b8064e87fb05b8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8064e87fb05b8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; + FFFF5b8065507fb05b806550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8065507fb05b806550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; + FFFF5b8065b87fb05b8065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8065b87fb05b8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; + FFFF5b8066207fb05b806620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8066207fb05b806620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; + FFFF5b8066887fb05b806688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8066887fb05b806688 /* src/mesh/GuBV32.cpp */; }; + FFFF5b8066f07fb05b8066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8066f07fb05b8066f0 /* src/mesh/GuBV32Build.cpp */; }; + FFFF5b8067587fb05b806758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8067587fb05b806758 /* src/mesh/GuBV4.cpp */; }; + FFFF5b8067c07fb05b8067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8067c07fb05b8067c0 /* src/mesh/GuBV4Build.cpp */; }; + FFFF5b8068287fb05b806828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8068287fb05b806828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; + FFFF5b8068907fb05b806890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8068907fb05b806890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; + FFFF5b8068f87fb05b8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8068f87fb05b8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; + FFFF5b8069607fb05b806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8069607fb05b806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; + FFFF5b8069c87fb05b8069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8069c87fb05b8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; + FFFF5b806a307fb05b806a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806a307fb05b806a30 /* src/mesh/GuBV4_Raycast.cpp */; }; + FFFF5b806a987fb05b806a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806a987fb05b806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; + FFFF5b806b007fb05b806b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806b007fb05b806b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; + FFFF5b806b687fb05b806b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806b687fb05b806b68 /* src/mesh/GuMeshQuery.cpp */; }; + FFFF5b806bd07fb05b806bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806bd07fb05b806bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; + FFFF5b806c387fb05b806c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806c387fb05b806c38 /* src/mesh/GuMidphaseRTree.cpp */; }; + FFFF5b806ca07fb05b806ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806ca07fb05b806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; + FFFF5b806d087fb05b806d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806d087fb05b806d08 /* src/mesh/GuRTree.cpp */; }; + FFFF5b806d707fb05b806d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806d707fb05b806d70 /* src/mesh/GuRTreeQueries.cpp */; }; + FFFF5b806dd87fb05b806dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806dd87fb05b806dd8 /* src/mesh/GuSweepsMesh.cpp */; }; + FFFF5b806e407fb05b806e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806e407fb05b806e40 /* src/mesh/GuTriangleMesh.cpp */; }; + FFFF5b806ea87fb05b806ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806ea87fb05b806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; + FFFF5b806f107fb05b806f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806f107fb05b806f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; + FFFF5b806f787fb05b806f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806f787fb05b806f78 /* src/hf/GuHeightField.cpp */; }; + FFFF5b806fe07fb05b806fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806fe07fb05b806fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; + FFFF5b8070487fb05b807048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8070487fb05b807048 /* src/hf/GuOverlapTestsHF.cpp */; }; + FFFF5b8070b07fb05b8070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8070b07fb05b8070b0 /* src/hf/GuSweepsHF.cpp */; }; + FFFF5b8071187fb05b807118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8071187fb05b807118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; + FFFF5b8071807fb05b807180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8071807fb05b807180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; + FFFF5b8071e87fb05b8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8071e87fb05b8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; + FFFF5b8072507fb05b807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8072507fb05b807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; + FFFF5b8072b87fb05b8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8072b87fb05b8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; + FFFF5b8073207fb05b807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8073207fb05b807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; + FFFF5b8073887fb05b807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8073887fb05b807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; + FFFF5b8073f07fb05b8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8073f07fb05b8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; + FFFF5b8074587fb05b807458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8074587fb05b807458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; + FFFF5b8074c07fb05b8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8074c07fb05b8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; + FFFF5b8075287fb05b807528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8075287fb05b807528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; + FFFF5b8075907fb05b807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8075907fb05b807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; + FFFF5b8075f87fb05b8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8075f87fb05b8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; + FFFF5b8076607fb05b807660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8076607fb05b807660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; + FFFF5b8076c87fb05b8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8076c87fb05b8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; + FFFF5b8077307fb05b807730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8077307fb05b807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; + FFFF5b8077987fb05b807798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8077987fb05b807798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; + FFFF5b8078007fb05b807800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8078007fb05b807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; + FFFF5b8078687fb05b807868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8078687fb05b807868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; + FFFF5b8078d07fb05b8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8078d07fb05b8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; + FFFF5b8079387fb05b807938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8079387fb05b807938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; + FFFF5b8079a07fb05b8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8079a07fb05b8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; + FFFF5b807a087fb05b807a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b807a087fb05b807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; + FFFF5b807a707fb05b807a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b807a707fb05b807a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; + FFFF5b807ad87fb05b807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b807ad87fb05b807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; + FFFF5b807b407fb05b807b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b807b407fb05b807b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; + FFFF5b807ba87fb05b807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b807ba87fb05b807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; + FFFF5b807c107fb05b807c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b807c107fb05b807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD56e143207fcd56e14320 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b03ae007fcd5b03ae00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ae687fcd5b03ae68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03aed07fcd5b03aed0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03af387fcd5b03af38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03afa07fcd5b03afa0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b0087fcd5b03b008 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b0707fcd5b03b070 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b0d87fcd5b03b0d8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b1407fcd5b03b140 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b1a87fcd5b03b1a8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b2107fcd5b03b210 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b2787fcd5b03b278 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b2e07fcd5b03b2e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b3487fcd5b03b348 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b3b07fcd5b03b3b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b4187fcd5b03b418 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b4807fcd5b03b480 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b4e87fcd5b03b4e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b5507fcd5b03b550 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b5b87fcd5b03b5b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b6207fcd5b03b620 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b6887fcd5b03b688 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b6f07fcd5b03b6f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b7587fcd5b03b758 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b7c07fcd5b03b7c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b8287fcd5b03b828 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b8907fcd5b03b890 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b8f87fcd5b03b8f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b9607fcd5b03b960 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b9c87fcd5b03b9c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ba307fcd5b03ba30 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ba987fcd5b03ba98 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03bb007fcd5b03bb00 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880ec007fcd5880ec00 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5880ec687fcd5880ec68 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5880ecd07fcd5880ecd0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5880ed387fcd5880ed38 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5880eda07fcd5880eda0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5880ee087fcd5880ee08 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5880ee707fcd5880ee70 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5880eed87fcd5880eed8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5880ef407fcd5880ef40 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880efa87fcd5880efa8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f0107fcd5880f010 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f0787fcd5880f078 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f0e07fcd5880f0e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f1487fcd5880f148 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f1b07fcd5880f1b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f2187fcd5880f218 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f2807fcd5880f280 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f2e87fcd5880f2e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f3507fcd5880f350 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f3b87fcd5880f3b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f4207fcd5880f420 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f4887fcd5880f488 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f4f07fcd5880f4f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f5587fcd5880f558 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f5c07fcd5880f5c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f6287fcd5880f628 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f6907fcd5880f690 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f6f87fcd5880f6f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f7607fcd5880f760 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f7c87fcd5880f7c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f8307fcd5880f830 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f8987fcd5880f898 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f9007fcd5880f900 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f9687fcd5880f968 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880f9d07fcd5880f9d0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5880fa387fcd5880fa38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0448007fcd5b044800 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0448687fcd5b044868 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0448d07fcd5b0448d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0449387fcd5b044938 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0449a07fcd5b0449a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044a087fcd5b044a08 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044a707fcd5b044a70 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044ad87fcd5b044ad8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044b407fcd5b044b40 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044ba87fcd5b044ba8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; - FFFD5b044c107fcd5b044c10 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044c787fcd5b044c78 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044ce07fcd5b044ce0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044d487fcd5b044d48 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044db07fcd5b044db0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044e187fcd5b044e18 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044e807fcd5b044e80 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044ee87fcd5b044ee8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044f507fcd5b044f50 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b044fb87fcd5b044fb8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0450207fcd5b045020 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0450887fcd5b045088 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0450f07fcd5b0450f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0451587fcd5b045158 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0451c07fcd5b0451c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0452287fcd5b045228 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0452907fcd5b045290 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0452f87fcd5b0452f8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0453607fcd5b045360 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0453c87fcd5b0453c8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0454307fcd5b045430 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0454987fcd5b045498 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0455007fcd5b045500 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0455687fcd5b045568 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0455d07fcd5b0455d0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0456387fcd5b045638 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0456a07fcd5b0456a0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0457087fcd5b045708 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0457707fcd5b045770 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0457d87fcd5b0457d8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0458407fcd5b045840 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0458a87fcd5b0458a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0459107fcd5b045910 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0459787fcd5b045978 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0459e07fcd5b0459e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045a487fcd5b045a48 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045ab07fcd5b045ab0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045b187fcd5b045b18 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045b807fcd5b045b80 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045be87fcd5b045be8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045c507fcd5b045c50 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045cb87fcd5b045cb8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045d207fcd5b045d20 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045d887fcd5b045d88 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045df07fcd5b045df0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045e587fcd5b045e58 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045ec07fcd5b045ec0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045f287fcd5b045f28 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045f907fcd5b045f90 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045ff87fcd5b045ff8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0460607fcd5b046060 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0460c87fcd5b0460c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0461307fcd5b046130 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0461987fcd5b046198 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0462007fcd5b046200 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0462687fcd5b046268 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0462d07fcd5b0462d0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0463387fcd5b046338 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0463a07fcd5b0463a0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0464087fcd5b046408 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0464707fcd5b046470 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0464d87fcd5b0464d8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0465407fcd5b046540 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0465a87fcd5b0465a8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0466107fcd5b046610 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0466787fcd5b046678 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0466e07fcd5b0466e0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0467487fcd5b046748 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0467b07fcd5b0467b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0468187fcd5b046818 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0468807fcd5b046880 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0468e87fcd5b0468e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0469507fcd5b046950 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0469b87fcd5b0469b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046a207fcd5b046a20 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046a887fcd5b046a88 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046af07fcd5b046af0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046b587fcd5b046b58 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046bc07fcd5b046bc0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046c287fcd5b046c28 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046c907fcd5b046c90 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046cf87fcd5b046cf8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046d607fcd5b046d60 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046dc87fcd5b046dc8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046e307fcd5b046e30 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046e987fcd5b046e98 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046f007fcd5b046f00 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046f687fcd5b046f68 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b046fd07fcd5b046fd0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0470387fcd5b047038 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0470a07fcd5b0470a0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0471087fcd5b047108 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0471707fcd5b047170 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0471d87fcd5b0471d8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0472407fcd5b047240 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0472a87fcd5b0472a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0473107fcd5b047310 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0473787fcd5b047378 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0473e07fcd5b0473e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0474487fcd5b047448 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0474b07fcd5b0474b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0475187fcd5b047518 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0475807fcd5b047580 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0475e87fcd5b0475e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0476507fcd5b047650 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0476b87fcd5b0476b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0477207fcd5b047720 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0477887fcd5b047788 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0477f07fcd5b0477f0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0478587fcd5b047858 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0478c07fcd5b0478c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0479287fcd5b047928 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0479907fcd5b047990 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0479f87fcd5b0479f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047a607fcd5b047a60 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047ac87fcd5b047ac8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047b307fcd5b047b30 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047b987fcd5b047b98 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047c007fcd5b047c00 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047c687fcd5b047c68 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047cd07fcd5b047cd0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047d387fcd5b047d38 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047da07fcd5b047da0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047e087fcd5b047e08 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047e707fcd5b047e70 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047ed87fcd5b047ed8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047f407fcd5b047f40 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b047fa87fcd5b047fa8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0480107fcd5b048010 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0480787fcd5b048078 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0480e07fcd5b0480e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0481487fcd5b048148 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0481b07fcd5b0481b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0482187fcd5b048218 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0482807fcd5b048280 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0482e87fcd5b0482e8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0483507fcd5b048350 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0483b87fcd5b0483b8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0484207fcd5b048420 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0484887fcd5b048488 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0484f07fcd5b0484f0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0485587fcd5b048558 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0485c07fcd5b0485c0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0486287fcd5b048628 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0486907fcd5b048690 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0486f87fcd5b0486f8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0487607fcd5b048760 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0487c87fcd5b0487c8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0488307fcd5b048830 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0488987fcd5b048898 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0489007fcd5b048900 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0489687fcd5b048968 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0489d07fcd5b0489d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048a387fcd5b048a38 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048aa07fcd5b048aa0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048b087fcd5b048b08 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048b707fcd5b048b70 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048bd87fcd5b048bd8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048c407fcd5b048c40 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048ca87fcd5b048ca8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048d107fcd5b048d10 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048d787fcd5b048d78 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048de07fcd5b048de0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048e487fcd5b048e48 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048eb07fcd5b048eb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048f187fcd5b048f18 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048f807fcd5b048f80 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b048fe87fcd5b048fe8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0490507fcd5b049050 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0490b87fcd5b0490b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0491207fcd5b049120 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0491887fcd5b049188 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0491f07fcd5b0491f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0492587fcd5b049258 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0492c07fcd5b0492c0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0493287fcd5b049328 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0493907fcd5b049390 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0493f87fcd5b0493f8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0494607fcd5b049460 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0494c87fcd5b0494c8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0495307fcd5b049530 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0495987fcd5b049598 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0496007fcd5b049600 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0496687fcd5b049668 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0496d07fcd5b0496d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0497387fcd5b049738 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0497a07fcd5b0497a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0498087fcd5b049808 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0498707fcd5b049870 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0498d87fcd5b0498d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0499407fcd5b049940 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0499a87fcd5b0499a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049a107fcd5b049a10 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049a787fcd5b049a78 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049ae07fcd5b049ae0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049b487fcd5b049b48 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049bb07fcd5b049bb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049c187fcd5b049c18 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049c807fcd5b049c80 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049ce87fcd5b049ce8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049d507fcd5b049d50 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049db87fcd5b049db8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049e207fcd5b049e20 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049e887fcd5b049e88 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049ef07fcd5b049ef0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049f587fcd5b049f58 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049fc07fcd5b049fc0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a0287fcd5b04a028 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a0907fcd5b04a090 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a0f87fcd5b04a0f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a1607fcd5b04a160 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a1c87fcd5b04a1c8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a2307fcd5b04a230 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a2987fcd5b04a298 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a3007fcd5b04a300 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a3687fcd5b04a368 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a3d07fcd5b04a3d0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a4387fcd5b04a438 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a4a07fcd5b04a4a0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a5087fcd5b04a508 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a5707fcd5b04a570 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a5d87fcd5b04a5d8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a6407fcd5b04a640 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a6a87fcd5b04a6a8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a7107fcd5b04a710 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a7787fcd5b04a778 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a7e07fcd5b04a7e0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a8487fcd5b04a848 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a8b07fcd5b04a8b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a9187fcd5b04a918 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a9807fcd5b04a980 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04a9e87fcd5b04a9e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04aa507fcd5b04aa50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04aab87fcd5b04aab8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04ab207fcd5b04ab20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04ab887fcd5b04ab88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04abf07fcd5b04abf0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04ac587fcd5b04ac58 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04acc07fcd5b04acc0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04ad287fcd5b04ad28 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04ad907fcd5b04ad90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04adf87fcd5b04adf8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04ae607fcd5b04ae60 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04aec87fcd5b04aec8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04af307fcd5b04af30 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04af987fcd5b04af98 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04b0007fcd5b04b000 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04b0687fcd5b04b068 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04b0d07fcd5b04b0d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04b1387fcd5b04b138 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04b1a07fcd5b04b1a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04b2087fcd5b04b208 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04b2707fcd5b04b270 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04b2d87fcd5b04b2d8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04b3407fcd5b04b340 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04b3a87fcd5b04b3a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b04b4107fcd5b04b410 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b2fb4e07fb05b2fb4e0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5b80ec007fb05b80ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80ec687fb05b80ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80ecd07fb05b80ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80ed387fb05b80ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80eda07fb05b80eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80ee087fb05b80ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80ee707fb05b80ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80eed87fb05b80eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80ef407fb05b80ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80efa87fb05b80efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f0107fb05b80f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f0787fb05b80f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f0e07fb05b80f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f1487fb05b80f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f1b07fb05b80f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f2187fb05b80f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f2807fb05b80f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f2e87fb05b80f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f3507fb05b80f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f3b87fb05b80f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f4207fb05b80f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f4887fb05b80f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f4f07fb05b80f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f5587fb05b80f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f5c07fb05b80f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f6287fb05b80f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f6907fb05b80f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f6f87fb05b80f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f7607fb05b80f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f7c87fb05b80f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f8307fb05b80f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f8987fb05b80f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b80f9007fb05b80f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a22007fb05a9a2200 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a22687fb05a9a2268 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a22d07fb05a9a22d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a23387fb05a9a2338 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a23a07fb05a9a23a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a24087fb05a9a2408 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a24707fb05a9a2470 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a24d87fb05a9a24d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a25407fb05a9a2540 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a25a87fb05a9a25a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a26107fb05a9a2610 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a26787fb05a9a2678 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a26e07fb05a9a26e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a27487fb05a9a2748 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a27b07fb05a9a27b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a28187fb05a9a2818 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a28807fb05a9a2880 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a28e87fb05a9a28e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a29507fb05a9a2950 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a29b87fb05a9a29b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2a207fb05a9a2a20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2a887fb05a9a2a88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2af07fb05a9a2af0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2b587fb05a9a2b58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2bc07fb05a9a2bc0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2c287fb05a9a2c28 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2c907fb05a9a2c90 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2cf87fb05a9a2cf8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2d607fb05a9a2d60 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2dc87fb05a9a2dc8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2e307fb05a9a2e30 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2e987fb05a9a2e98 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2f007fb05a9a2f00 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2f687fb05a9a2f68 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a2fd07fb05a9a2fd0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a30387fb05a9a3038 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8010007fb05b801000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8010687fb05b801068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8010d07fb05b8010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8011387fb05b801138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8011a07fb05b8011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8012087fb05b801208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8012707fb05b801270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8012d87fb05b8012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8013407fb05b801340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8013a87fb05b8013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; + FFFD5b8014107fb05b801410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8014787fb05b801478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8014e07fb05b8014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8015487fb05b801548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8015b07fb05b8015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8016187fb05b801618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8016807fb05b801680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8016e87fb05b8016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8017507fb05b801750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8017b87fb05b8017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8018207fb05b801820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8018887fb05b801888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8018f07fb05b8018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8019587fb05b801958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8019c07fb05b8019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801a287fb05b801a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801a907fb05b801a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801af87fb05b801af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801b607fb05b801b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801bc87fb05b801bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801c307fb05b801c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801c987fb05b801c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801d007fb05b801d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801d687fb05b801d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801dd07fb05b801dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801e387fb05b801e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801ea07fb05b801ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801f087fb05b801f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801f707fb05b801f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b801fd87fb05b801fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8020407fb05b802040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8020a87fb05b8020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8021107fb05b802110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8021787fb05b802178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8021e07fb05b8021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8022487fb05b802248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8022b07fb05b8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8023187fb05b802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8023807fb05b802380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8023e87fb05b8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8024507fb05b802450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8024b87fb05b8024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8025207fb05b802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8025887fb05b802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8025f07fb05b8025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8026587fb05b802658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8026c07fb05b8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8027287fb05b802728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8027907fb05b802790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8027f87fb05b8027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8028607fb05b802860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8028c87fb05b8028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8029307fb05b802930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8029987fb05b802998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802a007fb05b802a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802a687fb05b802a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802ad07fb05b802ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802b387fb05b802b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802ba07fb05b802ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802c087fb05b802c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802c707fb05b802c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802cd87fb05b802cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802d407fb05b802d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802da87fb05b802da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802e107fb05b802e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802e787fb05b802e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802ee07fb05b802ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802f487fb05b802f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b802fb07fb05b802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8030187fb05b803018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8030807fb05b803080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8030e87fb05b8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8031507fb05b803150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8031b87fb05b8031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8032207fb05b803220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8032887fb05b803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8032f07fb05b8032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8033587fb05b803358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8033c07fb05b8033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8034287fb05b803428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8034907fb05b803490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8034f87fb05b8034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8035607fb05b803560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8035c87fb05b8035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8036307fb05b803630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8036987fb05b803698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8037007fb05b803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8037687fb05b803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8037d07fb05b8037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8038387fb05b803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8038a07fb05b8038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8039087fb05b803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8039707fb05b803970 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8039d87fb05b8039d8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803a407fb05b803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803aa87fb05b803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803b107fb05b803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803b787fb05b803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803be07fb05b803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803c487fb05b803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803cb07fb05b803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803d187fb05b803d18 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803d807fb05b803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803de87fb05b803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803e507fb05b803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803eb87fb05b803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803f207fb05b803f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803f887fb05b803f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b803ff07fb05b803ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8040587fb05b804058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8040c07fb05b8040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8041287fb05b804128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8041907fb05b804190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8041f87fb05b8041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8042607fb05b804260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8042c87fb05b8042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8043307fb05b804330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8043987fb05b804398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8044007fb05b804400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8044687fb05b804468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8044d07fb05b8044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8045387fb05b804538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8045a07fb05b8045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8046087fb05b804608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8046707fb05b804670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8046d87fb05b8046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8047407fb05b804740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8047a87fb05b8047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8048107fb05b804810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8048787fb05b804878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8048e07fb05b8048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8049487fb05b804948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8049b07fb05b8049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804a187fb05b804a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804a807fb05b804a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804ae87fb05b804ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804b507fb05b804b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804bb87fb05b804bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804c207fb05b804c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804c887fb05b804c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804cf07fb05b804cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804d587fb05b804d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804dc07fb05b804dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804e287fb05b804e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804e907fb05b804e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804ef87fb05b804ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804f607fb05b804f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b804fc87fb05b804fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8050307fb05b805030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8050987fb05b805098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8051007fb05b805100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8051687fb05b805168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8051d07fb05b8051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8052387fb05b805238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8052a07fb05b8052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8053087fb05b805308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8053707fb05b805370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8053d87fb05b8053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8054407fb05b805440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8054a87fb05b8054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8055107fb05b805510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8055787fb05b805578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8055e07fb05b8055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8056487fb05b805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8056b07fb05b8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8057187fb05b805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8057807fb05b805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8057e87fb05b8057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8058507fb05b805850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8058b87fb05b8058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8059207fb05b805920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8059887fb05b805988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8059f07fb05b8059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805a587fb05b805a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805ac07fb05b805ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805b287fb05b805b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805b907fb05b805b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805bf87fb05b805bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805c607fb05b805c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805cc87fb05b805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805d307fb05b805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805d987fb05b805d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805e007fb05b805e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805e687fb05b805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805ed07fb05b805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805f387fb05b805f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b805fa07fb05b805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8060087fb05b806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8060707fb05b806070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8060d87fb05b8060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8061407fb05b806140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8061a87fb05b8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8062107fb05b806210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8062787fb05b806278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8062e07fb05b8062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8063487fb05b806348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8063b07fb05b8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8064187fb05b806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8064807fb05b806480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8064e87fb05b8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8065507fb05b806550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8065b87fb05b8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8066207fb05b806620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8066887fb05b806688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8066f07fb05b8066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8067587fb05b806758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8067c07fb05b8067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8068287fb05b806828 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8068907fb05b806890 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8068f87fb05b8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8069607fb05b806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8069c87fb05b8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806a307fb05b806a30 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806a987fb05b806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806b007fb05b806b00 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806b687fb05b806b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806bd07fb05b806bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806c387fb05b806c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806ca07fb05b806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806d087fb05b806d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806d707fb05b806d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806dd87fb05b806dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806e407fb05b806e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806ea87fb05b806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806f107fb05b806f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806f787fb05b806f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b806fe07fb05b806fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8070487fb05b807048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8070b07fb05b8070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8071187fb05b807118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8071807fb05b807180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8071e87fb05b8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8072507fb05b807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8072b87fb05b8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8073207fb05b807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8073887fb05b807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8073f07fb05b8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8074587fb05b807458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8074c07fb05b8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8075287fb05b807528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8075907fb05b807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8075f87fb05b8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8076607fb05b807660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8076c87fb05b8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8077307fb05b807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8077987fb05b807798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8078007fb05b807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8078687fb05b807868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8078d07fb05b8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8079387fb05b807938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8079a07fb05b8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b807a087fb05b807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b807a707fb05b807a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b807ad87fb05b807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b807b407fb05b807b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b807ba87fb05b807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b807c107fb05b807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF256e143207fcd56e14320 /* Resources */ = { + FFF25b2fb4e07fb05b2fb4e0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b044ba87fcd5b044ba8, + FFFF5b8013a87fb05b8013a8, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC56e143207fcd56e14320 /* Frameworks */ = { + FFFC5b2fb4e07fb05b2fb4e0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1841,145 +1841,145 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF856e143207fcd56e14320 /* Sources */ = { + FFF85b2fb4e07fb05b2fb4e0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5880ec007fcd5880ec00, - FFFF5880ec687fcd5880ec68, - FFFF5880ecd07fcd5880ecd0, - FFFF5880ed387fcd5880ed38, - FFFF5880eda07fcd5880eda0, - FFFF5880ee087fcd5880ee08, - FFFF5880ee707fcd5880ee70, - FFFF5880eed87fcd5880eed8, - FFFF5b0480e07fcd5b0480e0, - FFFF5b0481487fcd5b048148, - FFFF5b0481b07fcd5b0481b0, - FFFF5b0482187fcd5b048218, - FFFF5b0482807fcd5b048280, - FFFF5b0482e87fcd5b0482e8, - FFFF5b0483507fcd5b048350, - FFFF5b0483b87fcd5b0483b8, - FFFF5b0484207fcd5b048420, - FFFF5b0484887fcd5b048488, - FFFF5b0484f07fcd5b0484f0, - FFFF5b0485587fcd5b048558, - FFFF5b0485c07fcd5b0485c0, - FFFF5b0486287fcd5b048628, - FFFF5b0486907fcd5b048690, - FFFF5b0486f87fcd5b0486f8, - FFFF5b0487607fcd5b048760, - FFFF5b0487c87fcd5b0487c8, - FFFF5b0488307fcd5b048830, - FFFF5b0488987fcd5b048898, - FFFF5b0489007fcd5b048900, - FFFF5b0489687fcd5b048968, - FFFF5b0489d07fcd5b0489d0, - FFFF5b048a387fcd5b048a38, - FFFF5b048aa07fcd5b048aa0, - FFFF5b048b087fcd5b048b08, - FFFF5b048b707fcd5b048b70, - FFFF5b048bd87fcd5b048bd8, - FFFF5b048c407fcd5b048c40, - FFFF5b048ca87fcd5b048ca8, - FFFF5b048d107fcd5b048d10, - FFFF5b048d787fcd5b048d78, - FFFF5b048de07fcd5b048de0, - FFFF5b048e487fcd5b048e48, - FFFF5b048eb07fcd5b048eb0, - FFFF5b048f187fcd5b048f18, - FFFF5b048f807fcd5b048f80, - FFFF5b048fe87fcd5b048fe8, - FFFF5b0490507fcd5b049050, - FFFF5b0490b87fcd5b0490b8, - FFFF5b0491207fcd5b049120, - FFFF5b0491887fcd5b049188, - FFFF5b0491f07fcd5b0491f0, - FFFF5b0492587fcd5b049258, - FFFF5b0492c07fcd5b0492c0, - FFFF5b0493287fcd5b049328, - FFFF5b0493907fcd5b049390, - FFFF5b0493f87fcd5b0493f8, - FFFF5b0494607fcd5b049460, - FFFF5b0494c87fcd5b0494c8, - FFFF5b0495307fcd5b049530, - FFFF5b0495987fcd5b049598, - FFFF5b0496007fcd5b049600, - FFFF5b0496687fcd5b049668, - FFFF5b0496d07fcd5b0496d0, - FFFF5b0497387fcd5b049738, - FFFF5b0497a07fcd5b0497a0, - FFFF5b0498087fcd5b049808, - FFFF5b0498707fcd5b049870, - FFFF5b0498d87fcd5b0498d8, - FFFF5b0499407fcd5b049940, - FFFF5b0499a87fcd5b0499a8, - FFFF5b049a107fcd5b049a10, - FFFF5b049a787fcd5b049a78, - FFFF5b049ae07fcd5b049ae0, - FFFF5b049b487fcd5b049b48, - FFFF5b049bb07fcd5b049bb0, - FFFF5b049c187fcd5b049c18, - FFFF5b049c807fcd5b049c80, - FFFF5b049ce87fcd5b049ce8, - FFFF5b049d507fcd5b049d50, - FFFF5b049db87fcd5b049db8, - FFFF5b049e207fcd5b049e20, - FFFF5b049e887fcd5b049e88, - FFFF5b049ef07fcd5b049ef0, - FFFF5b049f587fcd5b049f58, - FFFF5b049fc07fcd5b049fc0, - FFFF5b04a0287fcd5b04a028, - FFFF5b04a0907fcd5b04a090, - FFFF5b04a0f87fcd5b04a0f8, - FFFF5b04a1607fcd5b04a160, - FFFF5b04a1c87fcd5b04a1c8, - FFFF5b04a2307fcd5b04a230, - FFFF5b04a2987fcd5b04a298, - FFFF5b04a3007fcd5b04a300, - FFFF5b04a3687fcd5b04a368, - FFFF5b04a3d07fcd5b04a3d0, - FFFF5b04a4387fcd5b04a438, - FFFF5b04a4a07fcd5b04a4a0, - FFFF5b04a5087fcd5b04a508, - FFFF5b04a5707fcd5b04a570, - FFFF5b04a5d87fcd5b04a5d8, - FFFF5b04a6407fcd5b04a640, - FFFF5b04a6a87fcd5b04a6a8, - FFFF5b04a7107fcd5b04a710, - FFFF5b04a7787fcd5b04a778, - FFFF5b04a7e07fcd5b04a7e0, - FFFF5b04a8487fcd5b04a848, - FFFF5b04a8b07fcd5b04a8b0, - FFFF5b04a9187fcd5b04a918, - FFFF5b04a9807fcd5b04a980, - FFFF5b04a9e87fcd5b04a9e8, - FFFF5b04aa507fcd5b04aa50, - FFFF5b04aab87fcd5b04aab8, - FFFF5b04ab207fcd5b04ab20, - FFFF5b04ab887fcd5b04ab88, - FFFF5b04abf07fcd5b04abf0, - FFFF5b04ac587fcd5b04ac58, - FFFF5b04acc07fcd5b04acc0, - FFFF5b04ad287fcd5b04ad28, - FFFF5b04ad907fcd5b04ad90, - FFFF5b04adf87fcd5b04adf8, - FFFF5b04ae607fcd5b04ae60, - FFFF5b04aec87fcd5b04aec8, - FFFF5b04af307fcd5b04af30, - FFFF5b04af987fcd5b04af98, - FFFF5b04b0007fcd5b04b000, - FFFF5b04b0687fcd5b04b068, - FFFF5b04b0d07fcd5b04b0d0, - FFFF5b04b1387fcd5b04b138, - FFFF5b04b1a07fcd5b04b1a0, - FFFF5b04b2087fcd5b04b208, - FFFF5b04b2707fcd5b04b270, - FFFF5b04b2d87fcd5b04b2d8, - FFFF5b04b3407fcd5b04b340, - FFFF5b04b3a87fcd5b04b3a8, - FFFF5b04b4107fcd5b04b410, + FFFF5a9a22007fb05a9a2200, + FFFF5a9a22687fb05a9a2268, + FFFF5a9a22d07fb05a9a22d0, + FFFF5a9a23387fb05a9a2338, + FFFF5a9a23a07fb05a9a23a0, + FFFF5a9a24087fb05a9a2408, + FFFF5a9a24707fb05a9a2470, + FFFF5a9a24d87fb05a9a24d8, + FFFF5b8048e07fb05b8048e0, + FFFF5b8049487fb05b804948, + FFFF5b8049b07fb05b8049b0, + FFFF5b804a187fb05b804a18, + FFFF5b804a807fb05b804a80, + FFFF5b804ae87fb05b804ae8, + FFFF5b804b507fb05b804b50, + FFFF5b804bb87fb05b804bb8, + FFFF5b804c207fb05b804c20, + FFFF5b804c887fb05b804c88, + FFFF5b804cf07fb05b804cf0, + FFFF5b804d587fb05b804d58, + FFFF5b804dc07fb05b804dc0, + FFFF5b804e287fb05b804e28, + FFFF5b804e907fb05b804e90, + FFFF5b804ef87fb05b804ef8, + FFFF5b804f607fb05b804f60, + FFFF5b804fc87fb05b804fc8, + FFFF5b8050307fb05b805030, + FFFF5b8050987fb05b805098, + FFFF5b8051007fb05b805100, + FFFF5b8051687fb05b805168, + FFFF5b8051d07fb05b8051d0, + FFFF5b8052387fb05b805238, + FFFF5b8052a07fb05b8052a0, + FFFF5b8053087fb05b805308, + FFFF5b8053707fb05b805370, + FFFF5b8053d87fb05b8053d8, + FFFF5b8054407fb05b805440, + FFFF5b8054a87fb05b8054a8, + FFFF5b8055107fb05b805510, + FFFF5b8055787fb05b805578, + FFFF5b8055e07fb05b8055e0, + FFFF5b8056487fb05b805648, + FFFF5b8056b07fb05b8056b0, + FFFF5b8057187fb05b805718, + FFFF5b8057807fb05b805780, + FFFF5b8057e87fb05b8057e8, + FFFF5b8058507fb05b805850, + FFFF5b8058b87fb05b8058b8, + FFFF5b8059207fb05b805920, + FFFF5b8059887fb05b805988, + FFFF5b8059f07fb05b8059f0, + FFFF5b805a587fb05b805a58, + FFFF5b805ac07fb05b805ac0, + FFFF5b805b287fb05b805b28, + FFFF5b805b907fb05b805b90, + FFFF5b805bf87fb05b805bf8, + FFFF5b805c607fb05b805c60, + FFFF5b805cc87fb05b805cc8, + FFFF5b805d307fb05b805d30, + FFFF5b805d987fb05b805d98, + FFFF5b805e007fb05b805e00, + FFFF5b805e687fb05b805e68, + FFFF5b805ed07fb05b805ed0, + FFFF5b805f387fb05b805f38, + FFFF5b805fa07fb05b805fa0, + FFFF5b8060087fb05b806008, + FFFF5b8060707fb05b806070, + FFFF5b8060d87fb05b8060d8, + FFFF5b8061407fb05b806140, + FFFF5b8061a87fb05b8061a8, + FFFF5b8062107fb05b806210, + FFFF5b8062787fb05b806278, + FFFF5b8062e07fb05b8062e0, + FFFF5b8063487fb05b806348, + FFFF5b8063b07fb05b8063b0, + FFFF5b8064187fb05b806418, + FFFF5b8064807fb05b806480, + FFFF5b8064e87fb05b8064e8, + FFFF5b8065507fb05b806550, + FFFF5b8065b87fb05b8065b8, + FFFF5b8066207fb05b806620, + FFFF5b8066887fb05b806688, + FFFF5b8066f07fb05b8066f0, + FFFF5b8067587fb05b806758, + FFFF5b8067c07fb05b8067c0, + FFFF5b8068287fb05b806828, + FFFF5b8068907fb05b806890, + FFFF5b8068f87fb05b8068f8, + FFFF5b8069607fb05b806960, + FFFF5b8069c87fb05b8069c8, + FFFF5b806a307fb05b806a30, + FFFF5b806a987fb05b806a98, + FFFF5b806b007fb05b806b00, + FFFF5b806b687fb05b806b68, + FFFF5b806bd07fb05b806bd0, + FFFF5b806c387fb05b806c38, + FFFF5b806ca07fb05b806ca0, + FFFF5b806d087fb05b806d08, + FFFF5b806d707fb05b806d70, + FFFF5b806dd87fb05b806dd8, + FFFF5b806e407fb05b806e40, + FFFF5b806ea87fb05b806ea8, + FFFF5b806f107fb05b806f10, + FFFF5b806f787fb05b806f78, + FFFF5b806fe07fb05b806fe0, + FFFF5b8070487fb05b807048, + FFFF5b8070b07fb05b8070b0, + FFFF5b8071187fb05b807118, + FFFF5b8071807fb05b807180, + FFFF5b8071e87fb05b8071e8, + FFFF5b8072507fb05b807250, + FFFF5b8072b87fb05b8072b8, + FFFF5b8073207fb05b807320, + FFFF5b8073887fb05b807388, + FFFF5b8073f07fb05b8073f0, + FFFF5b8074587fb05b807458, + FFFF5b8074c07fb05b8074c0, + FFFF5b8075287fb05b807528, + FFFF5b8075907fb05b807590, + FFFF5b8075f87fb05b8075f8, + FFFF5b8076607fb05b807660, + FFFF5b8076c87fb05b8076c8, + FFFF5b8077307fb05b807730, + FFFF5b8077987fb05b807798, + FFFF5b8078007fb05b807800, + FFFF5b8078687fb05b807868, + FFFF5b8078d07fb05b8078d0, + FFFF5b8079387fb05b807938, + FFFF5b8079a07fb05b8079a0, + FFFF5b807a087fb05b807a08, + FFFF5b807a707fb05b807a70, + FFFF5b807ad87fb05b807ad8, + FFFF5b807b407fb05b807b40, + FFFF5b807ba87fb05b807ba8, + FFFF5b807c107fb05b807c10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1988,132 +1988,132 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF456e15ad07fcd56e15ad0 /* PBXTargetDependency */ = { + FFF45b2fa1707fb05b2fa170 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA585016d07fcd585016d0 /* PxFoundation */; - targetProxy = FFF5585016d07fcd585016d0 /* PBXContainerItemProxy */; + target = FFFA5b080a507fb05b080a50 /* PxFoundation */; + targetProxy = FFF55b080a507fb05b080a50 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxFoundation */ - FFFF5980a1187fcd5980a118 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a1187fcd5980a118 /* src/PsAllocator.cpp */; }; - FFFF5980a1807fcd5980a180 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a1807fcd5980a180 /* src/PsAssert.cpp */; }; - FFFF5980a1e87fcd5980a1e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a1e87fcd5980a1e8 /* src/PsFoundation.cpp */; }; - FFFF5980a2507fcd5980a250 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a2507fcd5980a250 /* src/PsMathUtils.cpp */; }; - FFFF5980a2b87fcd5980a2b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a2b87fcd5980a2b8 /* src/PsString.cpp */; }; - FFFF5980a3207fcd5980a320 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a3207fcd5980a320 /* src/PsTempAllocator.cpp */; }; - FFFF5980a3887fcd5980a388 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a3887fcd5980a388 /* src/PsUtilities.cpp */; }; - FFFF5980a3f07fcd5980a3f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a3f07fcd5980a3f0 /* src/unix/PsUnixAtomic.cpp */; }; - FFFF5980a4587fcd5980a458 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a4587fcd5980a458 /* src/unix/PsUnixCpu.cpp */; }; - FFFF5980a4c07fcd5980a4c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a4c07fcd5980a4c0 /* src/unix/PsUnixFPU.cpp */; }; - FFFF5980a5287fcd5980a528 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a5287fcd5980a528 /* src/unix/PsUnixMutex.cpp */; }; - FFFF5980a5907fcd5980a590 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a5907fcd5980a590 /* src/unix/PsUnixPrintString.cpp */; }; - FFFF5980a5f87fcd5980a5f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a5f87fcd5980a5f8 /* src/unix/PsUnixSList.cpp */; }; - FFFF5980a6607fcd5980a660 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a6607fcd5980a660 /* src/unix/PsUnixSocket.cpp */; }; - FFFF5980a6c87fcd5980a6c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a6c87fcd5980a6c8 /* src/unix/PsUnixSync.cpp */; }; - FFFF5980a7307fcd5980a730 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a7307fcd5980a730 /* src/unix/PsUnixThread.cpp */; }; - FFFF5980a7987fcd5980a798 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5980a7987fcd5980a798 /* src/unix/PsUnixTime.cpp */; }; + FFFF5a994f187fb05a994f18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a994f187fb05a994f18 /* src/PsAllocator.cpp */; }; + FFFF5a994f807fb05a994f80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a994f807fb05a994f80 /* src/PsAssert.cpp */; }; + FFFF5a994fe87fb05a994fe8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a994fe87fb05a994fe8 /* src/PsFoundation.cpp */; }; + FFFF5a9950507fb05a995050 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9950507fb05a995050 /* src/PsMathUtils.cpp */; }; + FFFF5a9950b87fb05a9950b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9950b87fb05a9950b8 /* src/PsString.cpp */; }; + FFFF5a9951207fb05a995120 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9951207fb05a995120 /* src/PsTempAllocator.cpp */; }; + FFFF5a9951887fb05a995188 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9951887fb05a995188 /* src/PsUtilities.cpp */; }; + FFFF5a9951f07fb05a9951f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9951f07fb05a9951f0 /* src/unix/PsUnixAtomic.cpp */; }; + FFFF5a9952587fb05a995258 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9952587fb05a995258 /* src/unix/PsUnixCpu.cpp */; }; + FFFF5a9952c07fb05a9952c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9952c07fb05a9952c0 /* src/unix/PsUnixFPU.cpp */; }; + FFFF5a9953287fb05a995328 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9953287fb05a995328 /* src/unix/PsUnixMutex.cpp */; }; + FFFF5a9953907fb05a995390 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9953907fb05a995390 /* src/unix/PsUnixPrintString.cpp */; }; + FFFF5a9953f87fb05a9953f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9953f87fb05a9953f8 /* src/unix/PsUnixSList.cpp */; }; + FFFF5a9954607fb05a995460 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9954607fb05a995460 /* src/unix/PsUnixSocket.cpp */; }; + FFFF5a9954c87fb05a9954c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9954c87fb05a9954c8 /* src/unix/PsUnixSync.cpp */; }; + FFFF5a9955307fb05a995530 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9955307fb05a995530 /* src/unix/PsUnixThread.cpp */; }; + FFFF5a9955987fb05a995598 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9955987fb05a995598 /* src/unix/PsUnixTime.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD585016d07fcd585016d0 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD598048007fcd59804800 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; - FFFD598048687fcd59804868 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD598048d07fcd598048d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; - FFFD598049387fcd59804938 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; - FFFD598049a07fcd598049a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804a087fcd59804a08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804a707fcd59804a70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804ad87fcd59804ad8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804b407fcd59804b40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804ba87fcd59804ba8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804c107fcd59804c10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804c787fcd59804c78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804ce07fcd59804ce0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804d487fcd59804d48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804db07fcd59804db0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804e187fcd59804e18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804e807fcd59804e80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804ee87fcd59804ee8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804f507fcd59804f50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; - FFFD59804fb87fcd59804fb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; - FFFD598050207fcd59805020 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD598050887fcd59805088 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD598050f07fcd598050f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD598051587fcd59805158 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD598051c07fcd598051c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD598052287fcd59805228 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; - FFFD598052907fcd59805290 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; - FFFD598052f87fcd598052f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; - FFFD598053607fcd59805360 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD59808e007fcd59808e00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; - FFFD59808e687fcd59808e68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; - FFFD59808ed07fcd59808ed0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; - FFFD59808f387fcd59808f38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD59808fa07fcd59808fa0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD598090087fcd59809008 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD598090707fcd59809070 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD598090d87fcd598090d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; - FFFD598091407fcd59809140 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD598091a87fcd598091a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; - FFFD598092107fcd59809210 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD598092787fcd59809278 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD598092e07fcd598092e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD598093487fcd59809348 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD598093b07fcd598093b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD598094187fcd59809418 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD598094807fcd59809480 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; - FFFD598094e87fcd598094e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD598095507fcd59809550 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD598095b87fcd598095b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD598096207fcd59809620 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD598096887fcd59809688 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD598096f07fcd598096f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD598097587fcd59809758 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD598097c07fcd598097c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; - FFFD598098287fcd59809828 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; - FFFD598098907fcd59809890 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD598098f87fcd598098f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD598099607fcd59809960 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; - FFFD598099c87fcd598099c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809a307fcd59809a30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809a987fcd59809a98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809b007fcd59809b00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809b687fcd59809b68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809bd07fcd59809bd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809c387fcd59809c38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809ca07fcd59809ca0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809d087fcd59809d08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809d707fcd59809d70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809dd87fcd59809dd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809e407fcd59809e40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809ea87fcd59809ea8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809f107fcd59809f10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809f787fcd59809f78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD59809fe07fcd59809fe0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980a0487fcd5980a048 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980a0b07fcd5980a0b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD5980a1187fcd5980a118 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a1807fcd5980a180 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a1e87fcd5980a1e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a2507fcd5980a250 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a2b87fcd5980a2b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a3207fcd5980a320 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a3887fcd5980a388 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a3f07fcd5980a3f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a4587fcd5980a458 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a4c07fcd5980a4c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a5287fcd5980a528 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a5907fcd5980a590 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a5f87fcd5980a5f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a6607fcd5980a660 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a6c87fcd5980a6c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a7307fcd5980a730 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5980a7987fcd5980a798 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b080a507fb05b080a50 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a9a58007fb05a9a5800 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a58687fb05a9a5868 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a58d07fb05a9a58d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a59387fb05a9a5938 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a59a07fb05a9a59a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5a087fb05a9a5a08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5a707fb05a9a5a70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5ad87fb05a9a5ad8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5b407fb05a9a5b40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5ba87fb05a9a5ba8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5c107fb05a9a5c10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5c787fb05a9a5c78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5ce07fb05a9a5ce0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5d487fb05a9a5d48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5db07fb05a9a5db0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5e187fb05a9a5e18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5e807fb05a9a5e80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5ee87fb05a9a5ee8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5f507fb05a9a5f50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a5fb87fb05a9a5fb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a60207fb05a9a6020 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a60887fb05a9a6088 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a60f07fb05a9a60f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a61587fb05a9a6158 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a61c07fb05a9a61c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a62287fb05a9a6228 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a62907fb05a9a6290 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a62f87fb05a9a62f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a63607fb05a9a6360 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a993c007fb05a993c00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a993c687fb05a993c68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a993cd07fb05a993cd0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a993d387fb05a993d38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a993da07fb05a993da0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a993e087fb05a993e08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a993e707fb05a993e70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a993ed87fb05a993ed8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a993f407fb05a993f40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a993fa87fb05a993fa8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9940107fb05a994010 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9940787fb05a994078 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9940e07fb05a9940e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9941487fb05a994148 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9941b07fb05a9941b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9942187fb05a994218 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9942807fb05a994280 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9942e87fb05a9942e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9943507fb05a994350 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9943b87fb05a9943b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9944207fb05a994420 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9944887fb05a994488 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9944f07fb05a9944f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9945587fb05a994558 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9945c07fb05a9945c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9946287fb05a994628 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9946907fb05a994690 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9946f87fb05a9946f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9947607fb05a994760 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9947c87fb05a9947c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9948307fb05a994830 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9948987fb05a994898 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9949007fb05a994900 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9949687fb05a994968 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9949d07fb05a9949d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994a387fb05a994a38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994aa07fb05a994aa0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994b087fb05a994b08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994b707fb05a994b70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994bd87fb05a994bd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994c407fb05a994c40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994ca87fb05a994ca8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994d107fb05a994d10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994d787fb05a994d78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994de07fb05a994de0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994e487fb05a994e48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994eb07fb05a994eb0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a994f187fb05a994f18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a994f807fb05a994f80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a994fe87fb05a994fe8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9950507fb05a995050 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9950b87fb05a9950b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9951207fb05a995120 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9951887fb05a995188 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9951f07fb05a9951f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9952587fb05a995258 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9952c07fb05a9952c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9953287fb05a995328 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9953907fb05a995390 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9953f87fb05a9953f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9954607fb05a995460 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9954c87fb05a9954c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9955307fb05a995530 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9955987fb05a995598 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2585016d07fcd585016d0 /* Resources */ = { + FFF25b080a507fb05b080a50 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2123,7 +2123,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC585016d07fcd585016d0 /* Frameworks */ = { + FFFC5b080a507fb05b080a50 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2133,27 +2133,27 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8585016d07fcd585016d0 /* Sources */ = { + FFF85b080a507fb05b080a50 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5980a1187fcd5980a118, - FFFF5980a1807fcd5980a180, - FFFF5980a1e87fcd5980a1e8, - FFFF5980a2507fcd5980a250, - FFFF5980a2b87fcd5980a2b8, - FFFF5980a3207fcd5980a320, - FFFF5980a3887fcd5980a388, - FFFF5980a3f07fcd5980a3f0, - FFFF5980a4587fcd5980a458, - FFFF5980a4c07fcd5980a4c0, - FFFF5980a5287fcd5980a528, - FFFF5980a5907fcd5980a590, - FFFF5980a5f87fcd5980a5f8, - FFFF5980a6607fcd5980a660, - FFFF5980a6c87fcd5980a6c8, - FFFF5980a7307fcd5980a730, - FFFF5980a7987fcd5980a798, + FFFF5a994f187fb05a994f18, + FFFF5a994f807fb05a994f80, + FFFF5a994fe87fb05a994fe8, + FFFF5a9950507fb05a995050, + FFFF5a9950b87fb05a9950b8, + FFFF5a9951207fb05a995120, + FFFF5a9951887fb05a995188, + FFFF5a9951f07fb05a9951f0, + FFFF5a9952587fb05a995258, + FFFF5a9952c07fb05a9952c0, + FFFF5a9953287fb05a995328, + FFFF5a9953907fb05a995390, + FFFF5a9953f87fb05a9953f8, + FFFF5a9954607fb05a995460, + FFFF5a9954c87fb05a9954c8, + FFFF5a9955307fb05a995530, + FFFF5a9955987fb05a995598, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2165,103 +2165,103 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxPvdSDK */ - FFFF5a05d7a87fcd5a05d7a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a05d7a87fcd5a05d7a8 /* src/PxProfileEventImpl.cpp */; }; - FFFF5a05d8107fcd5a05d810 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a05d8107fcd5a05d810 /* src/PxPvd.cpp */; }; - FFFF5a05d8787fcd5a05d878 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a05d8787fcd5a05d878 /* src/PxPvdDataStream.cpp */; }; - FFFF5a05d8e07fcd5a05d8e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a05d8e07fcd5a05d8e0 /* src/PxPvdDefaultFileTransport.cpp */; }; - FFFF5a05d9487fcd5a05d948 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a05d9487fcd5a05d948 /* src/PxPvdDefaultSocketTransport.cpp */; }; - FFFF5a05d9b07fcd5a05d9b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a05d9b07fcd5a05d9b0 /* src/PxPvdImpl.cpp */; }; - FFFF5a05da187fcd5a05da18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a05da187fcd5a05da18 /* src/PxPvdMemClient.cpp */; }; - FFFF5a05da807fcd5a05da80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a05da807fcd5a05da80 /* src/PxPvdObjectModelMetaData.cpp */; }; - FFFF5a05dae87fcd5a05dae8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a05dae87fcd5a05dae8 /* src/PxPvdObjectRegistrar.cpp */; }; - FFFF5a05db507fcd5a05db50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a05db507fcd5a05db50 /* src/PxPvdProfileZoneClient.cpp */; }; - FFFF5a05dbb87fcd5a05dbb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a05dbb87fcd5a05dbb8 /* src/PxPvdUserRenderer.cpp */; }; + FFFF5b81e9a87fb05b81e9a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81e9a87fb05b81e9a8 /* src/PxProfileEventImpl.cpp */; }; + FFFF5b81ea107fb05b81ea10 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ea107fb05b81ea10 /* src/PxPvd.cpp */; }; + FFFF5b81ea787fb05b81ea78 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ea787fb05b81ea78 /* src/PxPvdDataStream.cpp */; }; + FFFF5b81eae07fb05b81eae0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81eae07fb05b81eae0 /* src/PxPvdDefaultFileTransport.cpp */; }; + FFFF5b81eb487fb05b81eb48 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81eb487fb05b81eb48 /* src/PxPvdDefaultSocketTransport.cpp */; }; + FFFF5b81ebb07fb05b81ebb0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ebb07fb05b81ebb0 /* src/PxPvdImpl.cpp */; }; + FFFF5b81ec187fb05b81ec18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ec187fb05b81ec18 /* src/PxPvdMemClient.cpp */; }; + FFFF5b81ec807fb05b81ec80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ec807fb05b81ec80 /* src/PxPvdObjectModelMetaData.cpp */; }; + FFFF5b81ece87fb05b81ece8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ece87fb05b81ece8 /* src/PxPvdObjectRegistrar.cpp */; }; + FFFF5b81ed507fb05b81ed50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ed507fb05b81ed50 /* src/PxPvdProfileZoneClient.cpp */; }; + FFFF5b81edb87fb05b81edb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81edb87fb05b81edb8 /* src/PxPvdUserRenderer.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD582fabb07fcd582fabb0 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD586834507fcd58683450 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD586834b87fcd586834b8 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d4007fcd5a05d400 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d4687fcd5a05d468 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d4d07fcd5a05d4d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d5387fcd5a05d538 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d5a07fcd5a05d5a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d6087fcd5a05d608 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d6707fcd5a05d670 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d6d87fcd5a05d6d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d7407fcd5a05d740 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d7a87fcd5a05d7a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d8107fcd5a05d810 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d8787fcd5a05d878 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d8e07fcd5a05d8e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d9487fcd5a05d948 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a05d9b07fcd5a05d9b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a05da187fcd5a05da18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a05da807fcd5a05da80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a05dae87fcd5a05dae8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a05db507fcd5a05db50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a05dbb87fcd5a05dbb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a05dc207fcd5a05dc20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05dc887fcd5a05dc88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05dcf07fcd5a05dcf0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05dd587fcd5a05dd58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05ddc07fcd5a05ddc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05de287fcd5a05de28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05de907fcd5a05de90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05def87fcd5a05def8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05df607fcd5a05df60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05dfc87fcd5a05dfc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e0307fcd5a05e030 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e0987fcd5a05e098 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e1007fcd5a05e100 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e1687fcd5a05e168 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e1d07fcd5a05e1d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e2387fcd5a05e238 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e2a07fcd5a05e2a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e3087fcd5a05e308 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e3707fcd5a05e370 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e3d87fcd5a05e3d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e4407fcd5a05e440 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e4a87fcd5a05e4a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e5107fcd5a05e510 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e5787fcd5a05e578 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e5e07fcd5a05e5e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e6487fcd5a05e648 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e6b07fcd5a05e6b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e7187fcd5a05e718 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e7807fcd5a05e780 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e7e87fcd5a05e7e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e8507fcd5a05e850 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e8b87fcd5a05e8b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e9207fcd5a05e920 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e9887fcd5a05e988 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05e9f07fcd5a05e9f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05ea587fcd5a05ea58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05eac07fcd5a05eac0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05eb287fcd5a05eb28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05eb907fcd5a05eb90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05ebf87fcd5a05ebf8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05ec607fcd5a05ec60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05ecc87fcd5a05ecc8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05ed307fcd5a05ed30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05ed987fcd5a05ed98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05ee007fcd5a05ee00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05ee687fcd5a05ee68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05eed07fcd5a05eed0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05ef387fcd5a05ef38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05efa07fcd5a05efa0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05f0087fcd5a05f008 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05f0707fcd5a05f070 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05f0d87fcd5a05f0d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05f1407fcd5a05f140 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05f1a87fcd5a05f1a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05f2107fcd5a05f210 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a05f2787fcd5a05f278 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b4338707fb05b433870 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5b4365307fb05b436530 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b4365987fb05b436598 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81e6007fb05b81e600 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81e6687fb05b81e668 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81e6d07fb05b81e6d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81e7387fb05b81e738 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81e7a07fb05b81e7a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81e8087fb05b81e808 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81e8707fb05b81e870 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81e8d87fb05b81e8d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81e9407fb05b81e940 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81e9a87fb05b81e9a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b81ea107fb05b81ea10 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b81ea787fb05b81ea78 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b81eae07fb05b81eae0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b81eb487fb05b81eb48 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b81ebb07fb05b81ebb0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b81ec187fb05b81ec18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b81ec807fb05b81ec80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b81ece87fb05b81ece8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b81ed507fb05b81ed50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b81edb87fb05b81edb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b81ee207fb05b81ee20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81ee887fb05b81ee88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81eef07fb05b81eef0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81ef587fb05b81ef58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81efc07fb05b81efc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f0287fb05b81f028 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f0907fb05b81f090 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f0f87fb05b81f0f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f1607fb05b81f160 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f1c87fb05b81f1c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f2307fb05b81f230 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f2987fb05b81f298 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f3007fb05b81f300 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f3687fb05b81f368 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f3d07fb05b81f3d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f4387fb05b81f438 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f4a07fb05b81f4a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f5087fb05b81f508 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f5707fb05b81f570 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f5d87fb05b81f5d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f6407fb05b81f640 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f6a87fb05b81f6a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f7107fb05b81f710 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f7787fb05b81f778 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f7e07fb05b81f7e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f8487fb05b81f848 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f8b07fb05b81f8b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f9187fb05b81f918 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f9807fb05b81f980 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81f9e87fb05b81f9e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81fa507fb05b81fa50 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81fab87fb05b81fab8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81fb207fb05b81fb20 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81fb887fb05b81fb88 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81fbf07fb05b81fbf0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81fc587fb05b81fc58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81fcc07fb05b81fcc0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81fd287fb05b81fd28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81fd907fb05b81fd90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81fdf87fb05b81fdf8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81fe607fb05b81fe60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81fec87fb05b81fec8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81ff307fb05b81ff30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b81ff987fb05b81ff98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8200007fb05b820000 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8200687fb05b820068 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8200d07fb05b8200d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8201387fb05b820138 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8201a07fb05b8201a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8202087fb05b820208 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8202707fb05b820270 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8202d87fb05b8202d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8203407fb05b820340 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8203a87fb05b8203a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8204107fb05b820410 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8204787fb05b820478 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2582fabb07fcd582fabb0 /* Resources */ = { + FFF25b4338707fb05b433870 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2271,7 +2271,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC582fabb07fcd582fabb0 /* Frameworks */ = { + FFFC5b4338707fb05b433870 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2281,21 +2281,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8582fabb07fcd582fabb0 /* Sources */ = { + FFF85b4338707fb05b433870 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a05d7a87fcd5a05d7a8, - FFFF5a05d8107fcd5a05d810, - FFFF5a05d8787fcd5a05d878, - FFFF5a05d8e07fcd5a05d8e0, - FFFF5a05d9487fcd5a05d948, - FFFF5a05d9b07fcd5a05d9b0, - FFFF5a05da187fcd5a05da18, - FFFF5a05da807fcd5a05da80, - FFFF5a05dae87fcd5a05dae8, - FFFF5a05db507fcd5a05db50, - FFFF5a05dbb87fcd5a05dbb8, + FFFF5b81e9a87fb05b81e9a8, + FFFF5b81ea107fb05b81ea10, + FFFF5b81ea787fb05b81ea78, + FFFF5b81eae07fb05b81eae0, + FFFF5b81eb487fb05b81eb48, + FFFF5b81ebb07fb05b81ebb0, + FFFF5b81ec187fb05b81ec18, + FFFF5b81ec807fb05b81ec80, + FFFF5b81ece87fb05b81ece8, + FFFF5b81ed507fb05b81ed50, + FFFF5b81edb87fb05b81edb8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2304,108 +2304,108 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4582fbbb07fcd582fbbb0 /* PBXTargetDependency */ = { + FFF45b4340307fb05b434030 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA585016d07fcd585016d0 /* PxFoundation */; - targetProxy = FFF5585016d07fcd585016d0 /* PBXContainerItemProxy */; + target = FFFA5b080a507fb05b080a50 /* PxFoundation */; + targetProxy = FFF55b080a507fb05b080a50 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevel */ - FFFF58791c907fcd58791c90 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD58791c907fcd58791c90 /* px_globals.cpp */; }; - FFFF5878b4607fcd5878b460 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5878b4607fcd5878b460 /* PxsCCD.cpp */; }; - FFFF5878b4c87fcd5878b4c8 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5878b4c87fcd5878b4c8 /* PxsContactManager.cpp */; }; - FFFF5878b5307fcd5878b530 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5878b5307fcd5878b530 /* PxsContext.cpp */; }; - FFFF5878b5987fcd5878b598 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5878b5987fcd5878b598 /* PxsDefaultMemoryManager.cpp */; }; - FFFF5878b6007fcd5878b600 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5878b6007fcd5878b600 /* PxsIslandSim.cpp */; }; - FFFF5878b6687fcd5878b668 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5878b6687fcd5878b668 /* PxsMaterialCombiner.cpp */; }; - FFFF5878b6d07fcd5878b6d0 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5878b6d07fcd5878b6d0 /* PxsNphaseImplementationContext.cpp */; }; - FFFF5878b7387fcd5878b738 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5878b7387fcd5878b738 /* PxsSimpleIslandManager.cpp */; }; - FFFF59008a007fcd59008a00 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD59008a007fcd59008a00 /* collision/PxcContact.cpp */; }; - FFFF59008a687fcd59008a68 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD59008a687fcd59008a68 /* pipeline/PxcContactCache.cpp */; }; - FFFF59008ad07fcd59008ad0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD59008ad07fcd59008ad0 /* pipeline/PxcContactMethodImpl.cpp */; }; - FFFF59008b387fcd59008b38 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD59008b387fcd59008b38 /* pipeline/PxcMaterialHeightField.cpp */; }; - FFFF59008ba07fcd59008ba0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD59008ba07fcd59008ba0 /* pipeline/PxcMaterialMesh.cpp */; }; - FFFF59008c087fcd59008c08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD59008c087fcd59008c08 /* pipeline/PxcMaterialMethodImpl.cpp */; }; - FFFF59008c707fcd59008c70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD59008c707fcd59008c70 /* pipeline/PxcMaterialShape.cpp */; }; - FFFF59008cd87fcd59008cd8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD59008cd87fcd59008cd8 /* pipeline/PxcNpBatch.cpp */; }; - FFFF59008d407fcd59008d40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD59008d407fcd59008d40 /* pipeline/PxcNpCacheStreamPair.cpp */; }; - FFFF59008da87fcd59008da8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD59008da87fcd59008da8 /* pipeline/PxcNpContactPrepShared.cpp */; }; - FFFF59008e107fcd59008e10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD59008e107fcd59008e10 /* pipeline/PxcNpMemBlockPool.cpp */; }; - FFFF59008e787fcd59008e78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD59008e787fcd59008e78 /* pipeline/PxcNpThreadContext.cpp */; }; + FFFF5b30b4307fb05b30b430 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD5b30b4307fb05b30b430 /* px_globals.cpp */; }; + FFFF5b30dd107fb05b30dd10 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30dd107fb05b30dd10 /* PxsCCD.cpp */; }; + FFFF5b30dd787fb05b30dd78 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30dd787fb05b30dd78 /* PxsContactManager.cpp */; }; + FFFF5b30dde07fb05b30dde0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30dde07fb05b30dde0 /* PxsContext.cpp */; }; + FFFF5b30de487fb05b30de48 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30de487fb05b30de48 /* PxsDefaultMemoryManager.cpp */; }; + FFFF5b30deb07fb05b30deb0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30deb07fb05b30deb0 /* PxsIslandSim.cpp */; }; + FFFF5b30df187fb05b30df18 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30df187fb05b30df18 /* PxsMaterialCombiner.cpp */; }; + FFFF5b30df807fb05b30df80 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30df807fb05b30df80 /* PxsNphaseImplementationContext.cpp */; }; + FFFF5b30dfe87fb05b30dfe8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30dfe87fb05b30dfe8 /* PxsSimpleIslandManager.cpp */; }; + FFFF5a9a08007fb05a9a0800 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a08007fb05a9a0800 /* collision/PxcContact.cpp */; }; + FFFF5a9a08687fb05a9a0868 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a08687fb05a9a0868 /* pipeline/PxcContactCache.cpp */; }; + FFFF5a9a08d07fb05a9a08d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a08d07fb05a9a08d0 /* pipeline/PxcContactMethodImpl.cpp */; }; + FFFF5a9a09387fb05a9a0938 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a09387fb05a9a0938 /* pipeline/PxcMaterialHeightField.cpp */; }; + FFFF5a9a09a07fb05a9a09a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a09a07fb05a9a09a0 /* pipeline/PxcMaterialMesh.cpp */; }; + FFFF5a9a0a087fb05a9a0a08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0a087fb05a9a0a08 /* pipeline/PxcMaterialMethodImpl.cpp */; }; + FFFF5a9a0a707fb05a9a0a70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0a707fb05a9a0a70 /* pipeline/PxcMaterialShape.cpp */; }; + FFFF5a9a0ad87fb05a9a0ad8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0ad87fb05a9a0ad8 /* pipeline/PxcNpBatch.cpp */; }; + FFFF5a9a0b407fb05a9a0b40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0b407fb05a9a0b40 /* pipeline/PxcNpCacheStreamPair.cpp */; }; + FFFF5a9a0ba87fb05a9a0ba8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0ba87fb05a9a0ba8 /* pipeline/PxcNpContactPrepShared.cpp */; }; + FFFF5a9a0c107fb05a9a0c10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0c107fb05a9a0c10 /* pipeline/PxcNpMemBlockPool.cpp */; }; + FFFF5a9a0c787fb05a9a0c78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0c787fb05a9a0c78 /* pipeline/PxcNpThreadContext.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD56cac0107fcd56cac010 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD58791c907fcd58791c90 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5878a3407fcd5878a340 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5878a3a87fcd5878a3a8 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5878a4107fcd5878a410 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD5878a4787fcd5878a478 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5878a4e07fcd5878a4e0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5878a5487fcd5878a548 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5878a5b07fcd5878a5b0 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; - FFFD5878a6187fcd5878a618 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5878a6807fcd5878a680 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD5878b4607fcd5878b460 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5878b4c87fcd5878b4c8 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5878b5307fcd5878b530 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5878b5987fcd5878b598 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5878b6007fcd5878b600 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5878b6687fcd5878b668 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5878b6d07fcd5878b6d0 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5878b7387fcd5878b738 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5900ca007fcd5900ca00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900ca687fcd5900ca68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900cad07fcd5900cad0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900cb387fcd5900cb38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900cba07fcd5900cba0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900cc087fcd5900cc08 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900cc707fcd5900cc70 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900ccd87fcd5900ccd8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900cd407fcd5900cd40 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900cda87fcd5900cda8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900ce107fcd5900ce10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900ce787fcd5900ce78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900cee07fcd5900cee0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900cf487fcd5900cf48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900cfb07fcd5900cfb0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900d0187fcd5900d018 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900d0807fcd5900d080 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900d0e87fcd5900d0e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900d1507fcd5900d150 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5900d1b87fcd5900d1b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD59008a007fcd59008a00 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59008a687fcd59008a68 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59008ad07fcd59008ad0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59008b387fcd59008b38 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59008ba07fcd59008ba0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59008c087fcd59008c08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59008c707fcd59008c70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59008cd87fcd59008cd8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59008d407fcd59008d40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59008da87fcd59008da8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59008e107fcd59008e10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59008e787fcd59008e78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590092007fcd59009200 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD590092687fcd59009268 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD590092d07fcd590092d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD590093387fcd59009338 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD590093a07fcd590093a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD590094087fcd59009408 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD590094707fcd59009470 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD590094d87fcd590094d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD590095407fcd59009540 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD590095a87fcd590095a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD590096107fcd59009610 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD590096787fcd59009678 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; - FFFD590096e07fcd590096e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD590097487fcd59009748 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD590097b07fcd590097b0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b308fd07fb05b308fd0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5b30b4307fb05b30b430 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b30cb307fb05b30cb30 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b30cb987fb05b30cb98 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b30cc007fb05b30cc00 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b30cc687fb05b30cc68 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b30ccd07fb05b30ccd0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b30cd387fb05b30cd38 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b30cda07fb05b30cda0 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b30ce087fb05b30ce08 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b30ce707fb05b30ce70 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b30dd107fb05b30dd10 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b30dd787fb05b30dd78 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b30dde07fb05b30dde0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b30de487fb05b30de48 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b30deb07fb05b30deb0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b30df187fb05b30df18 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b30df807fb05b30df80 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b30dfe87fb05b30dfe8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ad6007fb05a9ad600 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ad6687fb05a9ad668 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ad6d07fb05a9ad6d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ad7387fb05a9ad738 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ad7a07fb05a9ad7a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ad8087fb05a9ad808 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ad8707fb05a9ad870 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ad8d87fb05a9ad8d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ad9407fb05a9ad940 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ad9a87fb05a9ad9a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ada107fb05a9ada10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ada787fb05a9ada78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9adae07fb05a9adae0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9adb487fb05a9adb48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9adbb07fb05a9adbb0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9adc187fb05a9adc18 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9adc807fb05a9adc80 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9adce87fb05a9adce8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9add507fb05a9add50 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9addb87fb05a9addb8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a08007fb05a9a0800 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a08687fb05a9a0868 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a08d07fb05a9a08d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a09387fb05a9a0938 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a09a07fb05a9a09a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a0a087fb05a9a0a08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a0a707fb05a9a0a70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a0ad87fb05a9a0ad8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a0b407fb05a9a0b40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a0ba87fb05a9a0ba8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a0c107fb05a9a0c10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9a0c787fb05a9a0c78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ac8007fb05a9ac800 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ac8687fb05a9ac868 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ac8d07fb05a9ac8d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ac9387fb05a9ac938 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ac9a07fb05a9ac9a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9aca087fb05a9aca08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9aca707fb05a9aca70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9acad87fb05a9acad8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9acb407fb05a9acb40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9acba87fb05a9acba8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9acc107fb05a9acc10 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9acc787fb05a9acc78 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9acce07fb05a9acce0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9acd487fb05a9acd48 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9acdb07fb05a9acdb0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF256cac0107fcd56cac010 /* Resources */ = { + FFF25b308fd07fb05b308fd0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2415,7 +2415,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC56cac0107fcd56cac010 /* Frameworks */ = { + FFFC5b308fd07fb05b308fd0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2425,31 +2425,31 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF856cac0107fcd56cac010 /* Sources */ = { + FFF85b308fd07fb05b308fd0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF58791c907fcd58791c90, - FFFF5878b4607fcd5878b460, - FFFF5878b4c87fcd5878b4c8, - FFFF5878b5307fcd5878b530, - FFFF5878b5987fcd5878b598, - FFFF5878b6007fcd5878b600, - FFFF5878b6687fcd5878b668, - FFFF5878b6d07fcd5878b6d0, - FFFF5878b7387fcd5878b738, - FFFF59008a007fcd59008a00, - FFFF59008a687fcd59008a68, - FFFF59008ad07fcd59008ad0, - FFFF59008b387fcd59008b38, - FFFF59008ba07fcd59008ba0, - FFFF59008c087fcd59008c08, - FFFF59008c707fcd59008c70, - FFFF59008cd87fcd59008cd8, - FFFF59008d407fcd59008d40, - FFFF59008da87fcd59008da8, - FFFF59008e107fcd59008e10, - FFFF59008e787fcd59008e78, + FFFF5b30b4307fb05b30b430, + FFFF5b30dd107fb05b30dd10, + FFFF5b30dd787fb05b30dd78, + FFFF5b30dde07fb05b30dde0, + FFFF5b30de487fb05b30de48, + FFFF5b30deb07fb05b30deb0, + FFFF5b30df187fb05b30df18, + FFFF5b30df807fb05b30df80, + FFFF5b30dfe87fb05b30dfe8, + FFFF5a9a08007fb05a9a0800, + FFFF5a9a08687fb05a9a0868, + FFFF5a9a08d07fb05a9a08d0, + FFFF5a9a09387fb05a9a0938, + FFFF5a9a09a07fb05a9a09a0, + FFFF5a9a0a087fb05a9a0a08, + FFFF5a9a0a707fb05a9a0a70, + FFFF5a9a0ad87fb05a9a0ad8, + FFFF5a9a0b407fb05a9a0b40, + FFFF5a9a0ba87fb05a9a0ba8, + FFFF5a9a0c107fb05a9a0c10, + FFFF5a9a0c787fb05a9a0c78, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2461,38 +2461,38 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelAABB */ - FFFF590144707fcd59014470 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD590144707fcd59014470 /* BpBroadPhase.cpp */; }; - FFFF590144d87fcd590144d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD590144d87fcd590144d8 /* BpBroadPhaseMBP.cpp */; }; - FFFF590145407fcd59014540 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD590145407fcd59014540 /* BpBroadPhaseSap.cpp */; }; - FFFF590145a87fcd590145a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD590145a87fcd590145a8 /* BpBroadPhaseSapAux.cpp */; }; - FFFF590146107fcd59014610 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD590146107fcd59014610 /* BpMBPTasks.cpp */; }; - FFFF590146787fcd59014678 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD590146787fcd59014678 /* BpSAPTasks.cpp */; }; - FFFF590146e07fcd590146e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD590146e07fcd590146e0 /* BpSimpleAABBManager.cpp */; }; + FFFF5d0014707fb05d001470 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0014707fb05d001470 /* BpBroadPhase.cpp */; }; + FFFF5d0014d87fb05d0014d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0014d87fb05d0014d8 /* BpBroadPhaseMBP.cpp */; }; + FFFF5d0015407fb05d001540 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0015407fb05d001540 /* BpBroadPhaseSap.cpp */; }; + FFFF5d0015a87fb05d0015a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0015a87fb05d0015a8 /* BpBroadPhaseSapAux.cpp */; }; + FFFF5d0016107fb05d001610 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0016107fb05d001610 /* BpMBPTasks.cpp */; }; + FFFF5d0016787fb05d001678 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0016787fb05d001678 /* BpSAPTasks.cpp */; }; + FFFF5d0016e07fb05d0016e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0016e07fb05d0016e0 /* BpSimpleAABBManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5879adc07fcd5879adc0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5879ca607fcd5879ca60 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD5879cac87fcd5879cac8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5879cb307fcd5879cb30 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5879cb987fcd5879cb98 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD590142007fcd59014200 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; - FFFD590142687fcd59014268 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD590142d07fcd590142d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; - FFFD590143387fcd59014338 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; - FFFD590143a07fcd590143a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD590144087fcd59014408 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD590144707fcd59014470 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590144d87fcd590144d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590145407fcd59014540 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590145a87fcd590145a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590146107fcd59014610 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590146787fcd59014678 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590146e07fcd590146e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8058807fb05c805880 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5c80c6d07fb05c80c6d0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c80c7387fb05c80c738 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c80c7a07fb05c80c7a0 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c80c8087fb05c80c808 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0012007fb05d001200 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0012687fb05d001268 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0012d07fb05d0012d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0013387fb05d001338 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0013a07fb05d0013a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0014087fb05d001408 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0014707fb05d001470 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0014d87fb05d0014d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0015407fb05d001540 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0015a87fb05d0015a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0016107fb05d001610 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0016787fb05d001678 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0016e07fb05d0016e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25879adc07fcd5879adc0 /* Resources */ = { + FFF25c8058807fb05c805880 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,7 +2502,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5879adc07fcd5879adc0 /* Frameworks */ = { + FFFC5c8058807fb05c805880 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2512,17 +2512,17 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85879adc07fcd5879adc0 /* Sources */ = { + FFF85c8058807fb05c805880 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF590144707fcd59014470, - FFFF590144d87fcd590144d8, - FFFF590145407fcd59014540, - FFFF590145a87fcd590145a8, - FFFF590146107fcd59014610, - FFFF590146787fcd59014678, - FFFF590146e07fcd590146e0, + FFFF5d0014707fb05d001470, + FFFF5d0014d87fb05d0014d8, + FFFF5d0015407fb05d001540, + FFFF5d0015a87fb05d0015a8, + FFFF5d0016107fb05d001610, + FFFF5d0016787fb05d001678, + FFFF5d0016e07fb05d0016e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2534,106 +2534,106 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelDynamics */ - FFFF59014a007fcd59014a00 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014a007fcd59014a00 /* DyArticulation.cpp */; }; - FFFF59014a687fcd59014a68 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014a687fcd59014a68 /* DyArticulationContactPrep.cpp */; }; - FFFF59014ad07fcd59014ad0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014ad07fcd59014ad0 /* DyArticulationContactPrepPF.cpp */; }; - FFFF59014b387fcd59014b38 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014b387fcd59014b38 /* DyArticulationHelper.cpp */; }; - FFFF59014ba07fcd59014ba0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014ba07fcd59014ba0 /* DyArticulationSIMD.cpp */; }; - FFFF59014c087fcd59014c08 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014c087fcd59014c08 /* DyArticulationScalar.cpp */; }; - FFFF59014c707fcd59014c70 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014c707fcd59014c70 /* DyConstraintPartition.cpp */; }; - FFFF59014cd87fcd59014cd8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014cd87fcd59014cd8 /* DyConstraintSetup.cpp */; }; - FFFF59014d407fcd59014d40 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014d407fcd59014d40 /* DyConstraintSetupBlock.cpp */; }; - FFFF59014da87fcd59014da8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014da87fcd59014da8 /* DyContactPrep.cpp */; }; - FFFF59014e107fcd59014e10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014e107fcd59014e10 /* DyContactPrep4.cpp */; }; - FFFF59014e787fcd59014e78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014e787fcd59014e78 /* DyContactPrep4PF.cpp */; }; - FFFF59014ee07fcd59014ee0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014ee07fcd59014ee0 /* DyContactPrepPF.cpp */; }; - FFFF59014f487fcd59014f48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014f487fcd59014f48 /* DyDynamics.cpp */; }; - FFFF59014fb07fcd59014fb0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD59014fb07fcd59014fb0 /* DyFrictionCorrelation.cpp */; }; - FFFF590150187fcd59015018 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD590150187fcd59015018 /* DyRigidBodyToSolverBody.cpp */; }; - FFFF590150807fcd59015080 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD590150807fcd59015080 /* DySolverConstraints.cpp */; }; - FFFF590150e87fcd590150e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD590150e87fcd590150e8 /* DySolverConstraintsBlock.cpp */; }; - FFFF590151507fcd59015150 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD590151507fcd59015150 /* DySolverControl.cpp */; }; - FFFF590151b87fcd590151b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD590151b87fcd590151b8 /* DySolverControlPF.cpp */; }; - FFFF590152207fcd59015220 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD590152207fcd59015220 /* DySolverPFConstraints.cpp */; }; - FFFF590152887fcd59015288 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD590152887fcd59015288 /* DySolverPFConstraintsBlock.cpp */; }; - FFFF590152f07fcd590152f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD590152f07fcd590152f0 /* DyThreadContext.cpp */; }; - FFFF590153587fcd59015358 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD590153587fcd59015358 /* DyThresholdTable.cpp */; }; + FFFF5b8278007fb05b827800 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8278007fb05b827800 /* DyArticulation.cpp */; }; + FFFF5b8278687fb05b827868 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8278687fb05b827868 /* DyArticulationContactPrep.cpp */; }; + FFFF5b8278d07fb05b8278d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8278d07fb05b8278d0 /* DyArticulationContactPrepPF.cpp */; }; + FFFF5b8279387fb05b827938 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8279387fb05b827938 /* DyArticulationHelper.cpp */; }; + FFFF5b8279a07fb05b8279a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8279a07fb05b8279a0 /* DyArticulationSIMD.cpp */; }; + FFFF5b827a087fb05b827a08 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827a087fb05b827a08 /* DyArticulationScalar.cpp */; }; + FFFF5b827a707fb05b827a70 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827a707fb05b827a70 /* DyConstraintPartition.cpp */; }; + FFFF5b827ad87fb05b827ad8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827ad87fb05b827ad8 /* DyConstraintSetup.cpp */; }; + FFFF5b827b407fb05b827b40 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827b407fb05b827b40 /* DyConstraintSetupBlock.cpp */; }; + FFFF5b827ba87fb05b827ba8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827ba87fb05b827ba8 /* DyContactPrep.cpp */; }; + FFFF5b827c107fb05b827c10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827c107fb05b827c10 /* DyContactPrep4.cpp */; }; + FFFF5b827c787fb05b827c78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827c787fb05b827c78 /* DyContactPrep4PF.cpp */; }; + FFFF5b827ce07fb05b827ce0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827ce07fb05b827ce0 /* DyContactPrepPF.cpp */; }; + FFFF5b827d487fb05b827d48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827d487fb05b827d48 /* DyDynamics.cpp */; }; + FFFF5b827db07fb05b827db0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827db07fb05b827db0 /* DyFrictionCorrelation.cpp */; }; + FFFF5b827e187fb05b827e18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827e187fb05b827e18 /* DyRigidBodyToSolverBody.cpp */; }; + FFFF5b827e807fb05b827e80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827e807fb05b827e80 /* DySolverConstraints.cpp */; }; + FFFF5b827ee87fb05b827ee8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827ee87fb05b827ee8 /* DySolverConstraintsBlock.cpp */; }; + FFFF5b827f507fb05b827f50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827f507fb05b827f50 /* DySolverControl.cpp */; }; + FFFF5b827fb87fb05b827fb8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827fb87fb05b827fb8 /* DySolverControlPF.cpp */; }; + FFFF5b8280207fb05b828020 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8280207fb05b828020 /* DySolverPFConstraints.cpp */; }; + FFFF5b8280887fb05b828088 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8280887fb05b828088 /* DySolverPFConstraintsBlock.cpp */; }; + FFFF5b8280f07fb05b8280f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8280f07fb05b8280f0 /* DyThreadContext.cpp */; }; + FFFF5b8281587fb05b828158 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8281587fb05b828158 /* DyThresholdTable.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD56dc69f07fcd56dc69f0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD59014a007fcd59014a00 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014a687fcd59014a68 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014ad07fcd59014ad0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014b387fcd59014b38 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014ba07fcd59014ba0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014c087fcd59014c08 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014c707fcd59014c70 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014cd87fcd59014cd8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014d407fcd59014d40 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014da87fcd59014da8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014e107fcd59014e10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014e787fcd59014e78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014ee07fcd59014ee0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014f487fcd59014f48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59014fb07fcd59014fb0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590150187fcd59015018 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590150807fcd59015080 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590150e87fcd590150e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590151507fcd59015150 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590151b87fcd590151b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590152207fcd59015220 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590152887fcd59015288 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590152f07fcd590152f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD590153587fcd59015358 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD587a31d07fcd587a31d0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD587a32387fcd587a3238 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD587a32a07fcd587a32a0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; - FFFD587a33087fcd587a3308 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD587a33707fcd587a3370 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD587a33d87fcd587a33d8 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD587a34407fcd587a3440 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e0007fcd5b03e000 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e0687fcd5b03e068 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e0d07fcd5b03e0d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e1387fcd5b03e138 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e1a07fcd5b03e1a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e2087fcd5b03e208 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e2707fcd5b03e270 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e2d87fcd5b03e2d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e3407fcd5b03e340 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e3a87fcd5b03e3a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e4107fcd5b03e410 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e4787fcd5b03e478 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e4e07fcd5b03e4e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e5487fcd5b03e548 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e5b07fcd5b03e5b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e6187fcd5b03e618 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e6807fcd5b03e680 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e6e87fcd5b03e6e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e7507fcd5b03e750 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e7b87fcd5b03e7b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e8207fcd5b03e820 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e8887fcd5b03e888 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e8f07fcd5b03e8f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e9587fcd5b03e958 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03e9c07fcd5b03e9c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ea287fcd5b03ea28 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ea907fcd5b03ea90 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03eaf87fcd5b03eaf8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03eb607fcd5b03eb60 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ebc87fcd5b03ebc8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ec307fcd5b03ec30 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ec987fcd5b03ec98 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ed007fcd5b03ed00 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ed687fcd5b03ed68 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03edd07fcd5b03edd0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ee387fcd5b03ee38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03eea07fcd5b03eea0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b45afc07fb05b45afc0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5b8278007fb05b827800 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8278687fb05b827868 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8278d07fb05b8278d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8279387fb05b827938 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8279a07fb05b8279a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827a087fb05b827a08 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827a707fb05b827a70 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827ad87fb05b827ad8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827b407fb05b827b40 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827ba87fb05b827ba8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827c107fb05b827c10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827c787fb05b827c78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827ce07fb05b827ce0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827d487fb05b827d48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827db07fb05b827db0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827e187fb05b827e18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827e807fb05b827e80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827ee87fb05b827ee8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827f507fb05b827f50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b827fb87fb05b827fb8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8280207fb05b828020 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8280887fb05b828088 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8280f07fb05b8280f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b8281587fb05b828158 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b447df07fb05b447df0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b447e587fb05b447e58 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b447ec07fb05b447ec0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b447f287fb05b447f28 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b447f907fb05b447f90 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b447ff87fb05b447ff8 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b4480607fb05b448060 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8290007fb05b829000 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8290687fb05b829068 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8290d07fb05b8290d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8291387fb05b829138 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8291a07fb05b8291a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8292087fb05b829208 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8292707fb05b829270 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8292d87fb05b8292d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8293407fb05b829340 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8293a87fb05b8293a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8294107fb05b829410 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8294787fb05b829478 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8294e07fb05b8294e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8295487fb05b829548 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8295b07fb05b8295b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8296187fb05b829618 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8296807fb05b829680 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8296e87fb05b8296e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8297507fb05b829750 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8297b87fb05b8297b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8298207fb05b829820 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8298887fb05b829888 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8298f07fb05b8298f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8299587fb05b829958 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b8299c07fb05b8299c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b829a287fb05b829a28 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b829a907fb05b829a90 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b829af87fb05b829af8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b829b607fb05b829b60 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b829bc87fb05b829bc8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b829c307fb05b829c30 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b829c987fb05b829c98 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b829d007fb05b829d00 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b829d687fb05b829d68 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b829dd07fb05b829dd0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b829e387fb05b829e38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b829ea07fb05b829ea0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF256dc69f07fcd56dc69f0 /* Resources */ = { + FFF25b45afc07fb05b45afc0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2643,7 +2643,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC56dc69f07fcd56dc69f0 /* Frameworks */ = { + FFFC5b45afc07fb05b45afc0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2653,34 +2653,34 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF856dc69f07fcd56dc69f0 /* Sources */ = { + FFF85b45afc07fb05b45afc0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF59014a007fcd59014a00, - FFFF59014a687fcd59014a68, - FFFF59014ad07fcd59014ad0, - FFFF59014b387fcd59014b38, - FFFF59014ba07fcd59014ba0, - FFFF59014c087fcd59014c08, - FFFF59014c707fcd59014c70, - FFFF59014cd87fcd59014cd8, - FFFF59014d407fcd59014d40, - FFFF59014da87fcd59014da8, - FFFF59014e107fcd59014e10, - FFFF59014e787fcd59014e78, - FFFF59014ee07fcd59014ee0, - FFFF59014f487fcd59014f48, - FFFF59014fb07fcd59014fb0, - FFFF590150187fcd59015018, - FFFF590150807fcd59015080, - FFFF590150e87fcd590150e8, - FFFF590151507fcd59015150, - FFFF590151b87fcd590151b8, - FFFF590152207fcd59015220, - FFFF590152887fcd59015288, - FFFF590152f07fcd590152f0, - FFFF590153587fcd59015358, + FFFF5b8278007fb05b827800, + FFFF5b8278687fb05b827868, + FFFF5b8278d07fb05b8278d0, + FFFF5b8279387fb05b827938, + FFFF5b8279a07fb05b8279a0, + FFFF5b827a087fb05b827a08, + FFFF5b827a707fb05b827a70, + FFFF5b827ad87fb05b827ad8, + FFFF5b827b407fb05b827b40, + FFFF5b827ba87fb05b827ba8, + FFFF5b827c107fb05b827c10, + FFFF5b827c787fb05b827c78, + FFFF5b827ce07fb05b827ce0, + FFFF5b827d487fb05b827d48, + FFFF5b827db07fb05b827db0, + FFFF5b827e187fb05b827e18, + FFFF5b827e807fb05b827e80, + FFFF5b827ee87fb05b827ee8, + FFFF5b827f507fb05b827f50, + FFFF5b827fb87fb05b827fb8, + FFFF5b8280207fb05b828020, + FFFF5b8280887fb05b828088, + FFFF5b8280f07fb05b8280f0, + FFFF5b8281587fb05b828158, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2692,70 +2692,70 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelCloth */ - FFFF57007f587fcd57007f58 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57007f587fcd57007f58 /* Allocator.cpp */; }; - FFFF57007fc07fcd57007fc0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD57007fc07fcd57007fc0 /* Factory.cpp */; }; - FFFF570080287fcd57008028 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD570080287fcd57008028 /* PhaseConfig.cpp */; }; - FFFF570080907fcd57008090 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD570080907fcd57008090 /* SwCloth.cpp */; }; - FFFF570080f87fcd570080f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD570080f87fcd570080f8 /* SwClothData.cpp */; }; - FFFF570081607fcd57008160 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD570081607fcd57008160 /* SwCollision.cpp */; }; - FFFF570081c87fcd570081c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD570081c87fcd570081c8 /* SwFabric.cpp */; }; - FFFF570082307fcd57008230 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD570082307fcd57008230 /* SwFactory.cpp */; }; - FFFF570082987fcd57008298 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD570082987fcd57008298 /* SwInterCollision.cpp */; }; - FFFF570083007fcd57008300 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD570083007fcd57008300 /* SwSelfCollision.cpp */; }; - FFFF570083687fcd57008368 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD570083687fcd57008368 /* SwSolver.cpp */; }; - FFFF570083d07fcd570083d0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD570083d07fcd570083d0 /* SwSolverKernel.cpp */; }; - FFFF570084387fcd57008438 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD570084387fcd57008438 /* TripletScheduler.cpp */; }; + FFFF5d0125587fb05d012558 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0125587fb05d012558 /* Allocator.cpp */; }; + FFFF5d0125c07fb05d0125c0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0125c07fb05d0125c0 /* Factory.cpp */; }; + FFFF5d0126287fb05d012628 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0126287fb05d012628 /* PhaseConfig.cpp */; }; + FFFF5d0126907fb05d012690 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0126907fb05d012690 /* SwCloth.cpp */; }; + FFFF5d0126f87fb05d0126f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0126f87fb05d0126f8 /* SwClothData.cpp */; }; + FFFF5d0127607fb05d012760 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0127607fb05d012760 /* SwCollision.cpp */; }; + FFFF5d0127c87fb05d0127c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0127c87fb05d0127c8 /* SwFabric.cpp */; }; + FFFF5d0128307fb05d012830 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0128307fb05d012830 /* SwFactory.cpp */; }; + FFFF5d0128987fb05d012898 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0128987fb05d012898 /* SwInterCollision.cpp */; }; + FFFF5d0129007fb05d012900 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0129007fb05d012900 /* SwSelfCollision.cpp */; }; + FFFF5d0129687fb05d012968 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0129687fb05d012968 /* SwSolver.cpp */; }; + FFFF5d0129d07fb05d0129d0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0129d07fb05d0129d0 /* SwSolverKernel.cpp */; }; + FFFF5d012a387fb05d012a38 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d012a387fb05d012a38 /* TripletScheduler.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD58692f107fcd58692f10 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD58516fc07fcd58516fc0 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD585170287fcd58517028 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD585170907fcd58517090 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; - FFFD585170f87fcd585170f8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD585171607fcd58517160 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; - FFFD585171c87fcd585171c8 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; - FFFD585172307fcd58517230 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; - FFFD570076007fcd57007600 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD570076687fcd57007668 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; - FFFD570076d07fcd570076d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD570077387fcd57007738 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD570077a07fcd570077a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD570078087fcd57007808 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD570078707fcd57007870 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; - FFFD570078d87fcd570078d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; - FFFD570079407fcd57007940 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; - FFFD570079a87fcd570079a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007a107fcd57007a10 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007a787fcd57007a78 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007ae07fcd57007ae0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007b487fcd57007b48 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007bb07fcd57007bb0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007c187fcd57007c18 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007c807fcd57007c80 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007ce87fcd57007ce8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007d507fcd57007d50 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007db87fcd57007db8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007e207fcd57007e20 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007e887fcd57007e88 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007ef07fcd57007ef0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; - FFFD57007f587fcd57007f58 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD57007fc07fcd57007fc0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD570080287fcd57008028 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD570080907fcd57008090 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD570080f87fcd570080f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD570081607fcd57008160 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD570081c87fcd570081c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD570082307fcd57008230 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD570082987fcd57008298 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD570083007fcd57008300 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD570083687fcd57008368 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD570083d07fcd570083d0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD570084387fcd57008438 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8281f07fb05c8281f0 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5c819a607fb05c819a60 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c819ac87fb05c819ac8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c819b307fb05c819b30 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c819b987fb05c819b98 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c819c007fb05c819c00 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c819c687fb05c819c68 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c819cd07fb05c819cd0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d011c007fb05d011c00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d011c687fb05d011c68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d011cd07fb05d011cd0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d011d387fb05d011d38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d011da07fb05d011da0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d011e087fb05d011e08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d011e707fb05d011e70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d011ed87fb05d011ed8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d011f407fb05d011f40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d011fa87fb05d011fa8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0120107fb05d012010 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0120787fb05d012078 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0120e07fb05d0120e0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0121487fb05d012148 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0121b07fb05d0121b0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0122187fb05d012218 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0122807fb05d012280 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0122e87fb05d0122e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0123507fb05d012350 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0123b87fb05d0123b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0124207fb05d012420 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0124887fb05d012488 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0124f07fb05d0124f0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d0125587fb05d012558 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0125c07fb05d0125c0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0126287fb05d012628 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0126907fb05d012690 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0126f87fb05d0126f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0127607fb05d012760 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0127c87fb05d0127c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0128307fb05d012830 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0128987fb05d012898 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0129007fb05d012900 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0129687fb05d012968 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d0129d07fb05d0129d0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d012a387fb05d012a38 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF258692f107fcd58692f10 /* Resources */ = { + FFF25c8281f07fb05c8281f0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2765,7 +2765,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC58692f107fcd58692f10 /* Frameworks */ = { + FFFC5c8281f07fb05c8281f0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2775,23 +2775,23 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF858692f107fcd58692f10 /* Sources */ = { + FFF85c8281f07fb05c8281f0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF57007f587fcd57007f58, - FFFF57007fc07fcd57007fc0, - FFFF570080287fcd57008028, - FFFF570080907fcd57008090, - FFFF570080f87fcd570080f8, - FFFF570081607fcd57008160, - FFFF570081c87fcd570081c8, - FFFF570082307fcd57008230, - FFFF570082987fcd57008298, - FFFF570083007fcd57008300, - FFFF570083687fcd57008368, - FFFF570083d07fcd570083d0, - FFFF570084387fcd57008438, + FFFF5d0125587fb05d012558, + FFFF5d0125c07fb05d0125c0, + FFFF5d0126287fb05d012628, + FFFF5d0126907fb05d012690, + FFFF5d0126f87fb05d0126f8, + FFFF5d0127607fb05d012760, + FFFF5d0127c87fb05d0127c8, + FFFF5d0128307fb05d012830, + FFFF5d0128987fb05d012898, + FFFF5d0129007fb05d012900, + FFFF5d0129687fb05d012968, + FFFF5d0129d07fb05d0129d0, + FFFF5d012a387fb05d012a38, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2803,79 +2803,79 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelParticles */ - FFFF5700cb587fcd5700cb58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700cb587fcd5700cb58 /* PtBatcher.cpp */; }; - FFFF5700cbc07fcd5700cbc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700cbc07fcd5700cbc0 /* PtBodyTransformVault.cpp */; }; - FFFF5700cc287fcd5700cc28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700cc287fcd5700cc28 /* PtCollision.cpp */; }; - FFFF5700cc907fcd5700cc90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700cc907fcd5700cc90 /* PtCollisionBox.cpp */; }; - FFFF5700ccf87fcd5700ccf8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700ccf87fcd5700ccf8 /* PtCollisionCapsule.cpp */; }; - FFFF5700cd607fcd5700cd60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700cd607fcd5700cd60 /* PtCollisionConvex.cpp */; }; - FFFF5700cdc87fcd5700cdc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700cdc87fcd5700cdc8 /* PtCollisionMesh.cpp */; }; - FFFF5700ce307fcd5700ce30 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700ce307fcd5700ce30 /* PtCollisionPlane.cpp */; }; - FFFF5700ce987fcd5700ce98 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700ce987fcd5700ce98 /* PtCollisionSphere.cpp */; }; - FFFF5700cf007fcd5700cf00 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700cf007fcd5700cf00 /* PtContextCpu.cpp */; }; - FFFF5700cf687fcd5700cf68 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700cf687fcd5700cf68 /* PtDynamics.cpp */; }; - FFFF5700cfd07fcd5700cfd0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700cfd07fcd5700cfd0 /* PtParticleData.cpp */; }; - FFFF5700d0387fcd5700d038 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700d0387fcd5700d038 /* PtParticleShapeCpu.cpp */; }; - FFFF5700d0a07fcd5700d0a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700d0a07fcd5700d0a0 /* PtParticleSystemSimCpu.cpp */; }; - FFFF5700d1087fcd5700d108 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700d1087fcd5700d108 /* PtSpatialHash.cpp */; }; - FFFF5700d1707fcd5700d170 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5700d1707fcd5700d170 /* PtSpatialLocalHash.cpp */; }; + FFFF5a9b7f587fb05a9b7f58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b7f587fb05a9b7f58 /* PtBatcher.cpp */; }; + FFFF5a9b7fc07fb05a9b7fc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b7fc07fb05a9b7fc0 /* PtBodyTransformVault.cpp */; }; + FFFF5a9b80287fb05a9b8028 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b80287fb05a9b8028 /* PtCollision.cpp */; }; + FFFF5a9b80907fb05a9b8090 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b80907fb05a9b8090 /* PtCollisionBox.cpp */; }; + FFFF5a9b80f87fb05a9b80f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b80f87fb05a9b80f8 /* PtCollisionCapsule.cpp */; }; + FFFF5a9b81607fb05a9b8160 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b81607fb05a9b8160 /* PtCollisionConvex.cpp */; }; + FFFF5a9b81c87fb05a9b81c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b81c87fb05a9b81c8 /* PtCollisionMesh.cpp */; }; + FFFF5a9b82307fb05a9b8230 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b82307fb05a9b8230 /* PtCollisionPlane.cpp */; }; + FFFF5a9b82987fb05a9b8298 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b82987fb05a9b8298 /* PtCollisionSphere.cpp */; }; + FFFF5a9b83007fb05a9b8300 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b83007fb05a9b8300 /* PtContextCpu.cpp */; }; + FFFF5a9b83687fb05a9b8368 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b83687fb05a9b8368 /* PtDynamics.cpp */; }; + FFFF5a9b83d07fb05a9b83d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b83d07fb05a9b83d0 /* PtParticleData.cpp */; }; + FFFF5a9b84387fb05a9b8438 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b84387fb05a9b8438 /* PtParticleShapeCpu.cpp */; }; + FFFF5a9b84a07fb05a9b84a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b84a07fb05a9b84a0 /* PtParticleSystemSimCpu.cpp */; }; + FFFF5a9b85087fb05a9b8508 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b85087fb05a9b8508 /* PtSpatialHash.cpp */; }; + FFFF5a9b85707fb05a9b8570 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b85707fb05a9b8570 /* PtSpatialLocalHash.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD585295c07fcd585295c0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5a065c007fcd5a065c00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a065c687fcd5a065c68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a065cd07fcd5a065cd0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a065d387fcd5a065d38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a065da07fcd5a065da0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a065e087fcd5a065e08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a065e707fcd5a065e70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a065ed87fcd5a065ed8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a065f407fcd5a065f40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a065fa87fcd5a065fa8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c2007fcd5700c200 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c2687fcd5700c268 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c2d07fcd5700c2d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c3387fcd5700c338 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c3a07fcd5700c3a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c4087fcd5700c408 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c4707fcd5700c470 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c4d87fcd5700c4d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c5407fcd5700c540 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c5a87fcd5700c5a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c6107fcd5700c610 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c6787fcd5700c678 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c6e07fcd5700c6e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c7487fcd5700c748 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c7b07fcd5700c7b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c8187fcd5700c818 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c8807fcd5700c880 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c8e87fcd5700c8e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c9507fcd5700c950 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700c9b87fcd5700c9b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700ca207fcd5700ca20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700ca887fcd5700ca88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700caf07fcd5700caf0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5700cb587fcd5700cb58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700cbc07fcd5700cbc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700cc287fcd5700cc28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700cc907fcd5700cc90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700ccf87fcd5700ccf8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700cd607fcd5700cd60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700cdc87fcd5700cdc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700ce307fcd5700ce30 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700ce987fcd5700ce98 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700cf007fcd5700cf00 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700cf687fcd5700cf68 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700cfd07fcd5700cfd0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700d0387fcd5700d038 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700d0a07fcd5700d0a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700d1087fcd5700d108 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5700d1707fcd5700d170 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b322ac07fb05b322ac0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a9ae0007fb05a9ae000 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ae0687fb05a9ae068 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ae0d07fb05a9ae0d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ae1387fb05a9ae138 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ae1a07fb05a9ae1a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ae2087fb05a9ae208 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ae2707fb05a9ae270 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ae2d87fb05a9ae2d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ae3407fb05a9ae340 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9ae3a87fb05a9ae3a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b76007fb05a9b7600 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b76687fb05a9b7668 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b76d07fb05a9b76d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b77387fb05a9b7738 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b77a07fb05a9b77a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b78087fb05a9b7808 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b78707fb05a9b7870 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b78d87fb05a9b78d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b79407fb05a9b7940 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b79a87fb05a9b79a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7a107fb05a9b7a10 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7a787fb05a9b7a78 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7ae07fb05a9b7ae0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7b487fb05a9b7b48 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7bb07fb05a9b7bb0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7c187fb05a9b7c18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7c807fb05a9b7c80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7ce87fb05a9b7ce8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7d507fb05a9b7d50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7db87fb05a9b7db8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7e207fb05a9b7e20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7e887fb05a9b7e88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7ef07fb05a9b7ef0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7f587fb05a9b7f58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b7fc07fb05a9b7fc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b80287fb05a9b8028 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b80907fb05a9b8090 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b80f87fb05a9b80f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b81607fb05a9b8160 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b81c87fb05a9b81c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b82307fb05a9b8230 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b82987fb05a9b8298 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b83007fb05a9b8300 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b83687fb05a9b8368 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b83d07fb05a9b83d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b84387fb05a9b8438 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b84a07fb05a9b84a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b85087fb05a9b8508 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a9b85707fb05a9b8570 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2585295c07fcd585295c0 /* Resources */ = { + FFF25b322ac07fb05b322ac0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2885,7 +2885,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC585295c07fcd585295c0 /* Frameworks */ = { + FFFC5b322ac07fb05b322ac0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2895,26 +2895,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8585295c07fcd585295c0 /* Sources */ = { + FFF85b322ac07fb05b322ac0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5700cb587fcd5700cb58, - FFFF5700cbc07fcd5700cbc0, - FFFF5700cc287fcd5700cc28, - FFFF5700cc907fcd5700cc90, - FFFF5700ccf87fcd5700ccf8, - FFFF5700cd607fcd5700cd60, - FFFF5700cdc87fcd5700cdc8, - FFFF5700ce307fcd5700ce30, - FFFF5700ce987fcd5700ce98, - FFFF5700cf007fcd5700cf00, - FFFF5700cf687fcd5700cf68, - FFFF5700cfd07fcd5700cfd0, - FFFF5700d0387fcd5700d038, - FFFF5700d0a07fcd5700d0a0, - FFFF5700d1087fcd5700d108, - FFFF5700d1707fcd5700d170, + FFFF5a9b7f587fb05a9b7f58, + FFFF5a9b7fc07fb05a9b7fc0, + FFFF5a9b80287fb05a9b8028, + FFFF5a9b80907fb05a9b8090, + FFFF5a9b80f87fb05a9b80f8, + FFFF5a9b81607fb05a9b8160, + FFFF5a9b81c87fb05a9b81c8, + FFFF5a9b82307fb05a9b8230, + FFFF5a9b82987fb05a9b8298, + FFFF5a9b83007fb05a9b8300, + FFFF5a9b83687fb05a9b8368, + FFFF5a9b83d07fb05a9b83d0, + FFFF5a9b84387fb05a9b8438, + FFFF5a9b84a07fb05a9b84a0, + FFFF5a9b85087fb05a9b8508, + FFFF5a9b85707fb05a9b8570, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2926,22 +2926,22 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxTask */ - FFFF585cb4807fcd585cb480 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD585cb4807fcd585cb480 /* src/TaskManager.cpp */; }; + FFFF5c8373c07fb05c8373c0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8373c07fb05c8373c0 /* src/TaskManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD585c9d007fcd585c9d00 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD585cbd607fcd585cbd60 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD585cbdc87fcd585cbdc8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD585cbe307fcd585cbe30 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD585cbe987fcd585cbe98 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD585cbf007fcd585cbf00 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; - FFFD585cbf687fcd585cbf68 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD585cb4807fcd585cb480 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8302207fb05c830220 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5c837a607fb05c837a60 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c837ac87fb05c837ac8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c837b307fb05c837b30 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c837b987fb05c837b98 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c837c007fb05c837c00 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c837c687fb05c837c68 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8373c07fb05c8373c0 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2585c9d007fcd585c9d00 /* Resources */ = { + FFF25c8302207fb05c830220 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2951,7 +2951,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC585c9d007fcd585c9d00 /* Frameworks */ = { + FFFC5c8302207fb05c830220 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2961,11 +2961,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8585c9d007fcd585c9d00 /* Sources */ = { + FFF85c8302207fb05c830220 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF585cb4807fcd585cb480, + FFFF5c8373c07fb05c8373c0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2977,17 +2977,17 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PsFastXml */ - FFFF580f7f107fcd580f7f10 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD580f7f107fcd580f7f10 /* PsFastXml.cpp */; }; + FFFF5cb35e607fb05cb35e60 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5cb35e607fb05cb35e60 /* PsFastXml.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD580eddd07fcd580eddd0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD580f7e107fcd580f7e10 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; - FFFD580f7f107fcd580f7f10 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5cb3a3f07fb05cb3a3f0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5cb35ed07fb05cb35ed0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; + FFFD5cb35e607fb05cb35e60 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2580eddd07fcd580eddd0 /* Resources */ = { + FFF25cb3a3f07fb05cb3a3f0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2997,7 +2997,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC580eddd07fcd580eddd0 /* Frameworks */ = { + FFFC5cb3a3f07fb05cb3a3f0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3007,11 +3007,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8580eddd07fcd580eddd0 /* Sources */ = { + FFF85cb3a3f07fb05cb3a3f0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF580f7f107fcd580f7f10, + FFFF5cb35e607fb05cb35e60, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3023,1967 +3023,1967 @@ /* End PBXTargetDependency section */ /* Begin PBXContainerItemProxy section */ - FFF556fa61a07fcd56fa61a0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55cb2e4807fb05cb2e480 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA56fa61a07fcd56fa61a0 /* PhysX */; + remoteGlobalIDString = FFFA5cb2e4807fb05cb2e480 /* PhysX */; remoteInfo = "PhysX"; }; - FFF55b986ca07fcd5b986ca0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55cb4fa707fb05cb4fa70 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b986ca07fcd5b986ca0 /* PhysXCharacterKinematic */; + remoteGlobalIDString = FFFA5cb4fa707fb05cb4fa70 /* PhysXCharacterKinematic */; remoteInfo = "PhysXCharacterKinematic"; }; - FFF556e3cde07fcd56e3cde0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55cb50f307fb05cb50f30 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA56e3cde07fcd56e3cde0 /* PhysXVehicle */; + remoteGlobalIDString = FFFA5cb50f307fb05cb50f30 /* PhysXVehicle */; remoteInfo = "PhysXVehicle"; }; - FFF5586bc1607fcd586bc160 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55cb609d07fb05cb609d0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA586bc1607fcd586bc160 /* PhysXExtensions */; + remoteGlobalIDString = FFFA5cb609d07fb05cb609d0 /* PhysXExtensions */; remoteInfo = "PhysXExtensions"; }; - FFF55bb033e07fcd5bb033e0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55cb732c07fb05cb732c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5bb033e07fcd5bb033e0 /* SceneQuery */; + remoteGlobalIDString = FFFA5cb732c07fb05cb732c0 /* SceneQuery */; remoteInfo = "SceneQuery"; }; - FFF55bb075b07fcd5bb075b0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55cb778e07fb05cb778e0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5bb075b07fcd5bb075b0 /* SimulationController */; + remoteGlobalIDString = FFFA5cb778e07fb05cb778e0 /* SimulationController */; remoteInfo = "SimulationController"; }; - FFF55b98d5507fcd5b98d550 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55cb7c7007fb05cb7c700 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b98d5507fcd5b98d550 /* PhysXCooking */; + remoteGlobalIDString = FFFA5cb7c7007fb05cb7c700 /* PhysXCooking */; remoteInfo = "PhysXCooking"; }; - FFF556e143207fcd56e14320 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55b2fb4e07fb05b2fb4e0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA56e143207fcd56e14320 /* PhysXCommon */; + remoteGlobalIDString = FFFA5b2fb4e07fb05b2fb4e0 /* PhysXCommon */; remoteInfo = "PhysXCommon"; }; - FFF5585016d07fcd585016d0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55b080a507fb05b080a50 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA585016d07fcd585016d0 /* PxFoundation */; + remoteGlobalIDString = FFFA5b080a507fb05b080a50 /* PxFoundation */; remoteInfo = "PxFoundation"; }; - FFF5582fabb07fcd582fabb0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55b4338707fb05b433870 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA582fabb07fcd582fabb0 /* PxPvdSDK */; + remoteGlobalIDString = FFFA5b4338707fb05b433870 /* PxPvdSDK */; remoteInfo = "PxPvdSDK"; }; - FFF556cac0107fcd56cac010 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55b308fd07fb05b308fd0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA56cac0107fcd56cac010 /* LowLevel */; + remoteGlobalIDString = FFFA5b308fd07fb05b308fd0 /* LowLevel */; remoteInfo = "LowLevel"; }; - FFF55879adc07fcd5879adc0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55c8058807fb05c805880 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5879adc07fcd5879adc0 /* LowLevelAABB */; + remoteGlobalIDString = FFFA5c8058807fb05c805880 /* LowLevelAABB */; remoteInfo = "LowLevelAABB"; }; - FFF556dc69f07fcd56dc69f0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55b45afc07fb05b45afc0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA56dc69f07fcd56dc69f0 /* LowLevelDynamics */; + remoteGlobalIDString = FFFA5b45afc07fb05b45afc0 /* LowLevelDynamics */; remoteInfo = "LowLevelDynamics"; }; - FFF558692f107fcd58692f10 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55c8281f07fb05c8281f0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA58692f107fcd58692f10 /* LowLevelCloth */; + remoteGlobalIDString = FFFA5c8281f07fb05c8281f0 /* LowLevelCloth */; remoteInfo = "LowLevelCloth"; }; - FFF5585295c07fcd585295c0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55b322ac07fb05b322ac0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA585295c07fcd585295c0 /* LowLevelParticles */; + remoteGlobalIDString = FFFA5b322ac07fb05b322ac0 /* LowLevelParticles */; remoteInfo = "LowLevelParticles"; }; - FFF5585c9d007fcd585c9d00 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55c8302207fb05c830220 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA585c9d007fcd585c9d00 /* PxTask */; + remoteGlobalIDString = FFFA5c8302207fb05c830220 /* PxTask */; remoteInfo = "PxTask"; }; - FFF5580eddd07fcd580eddd0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95820b1507fcd5820b150 /* Project object */; + FFF55cb3a3f07fb05cb3a3f0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA580eddd07fcd580eddd0 /* PsFastXml */; + remoteGlobalIDString = FFFA5cb3a3f07fb05cb3a3f0 /* PsFastXml */; remoteInfo = "PsFastXml"; }; /* End PBXContainerItemProxy section */ /* Begin PBXGroup section */ - FFFB5820b1b87fcd5820b1b8 /* PhysX */ = { + FFFB5a4829587fb05a482958 /* PhysX */ = { isa = PBXGroup; children = ( - FFF05820b1507fcd5820b150 /* Source */, - FFEE5820b1507fcd5820b150 /* Products */, + FFF05a4828f07fb05a4828f0 /* Source */, + FFEE5a4828f07fb05a4828f0 /* Products */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFF05820b1507fcd5820b150 /* Source */ = { + FFF05a4828f07fb05a4828f0 /* Source */ = { isa = PBXGroup; children = ( - FFFB56fa61a07fcd56fa61a0, - FFFB5b986ca07fcd5b986ca0, - FFFB56e3cde07fcd56e3cde0, - FFFB586bc1607fcd586bc160, - FFFB5bb033e07fcd5bb033e0, - FFFB5bb075b07fcd5bb075b0, - FFFB5b98d5507fcd5b98d550, - FFFB56e143207fcd56e14320, - FFFB585016d07fcd585016d0, - FFFB582fabb07fcd582fabb0, - FFFB56cac0107fcd56cac010, - FFFB5879adc07fcd5879adc0, - FFFB56dc69f07fcd56dc69f0, - FFFB58692f107fcd58692f10, - FFFB585295c07fcd585295c0, - FFFB585c9d007fcd585c9d00, - FFFB580eddd07fcd580eddd0, + FFFB5cb2e4807fb05cb2e480, + FFFB5cb4fa707fb05cb4fa70, + FFFB5cb50f307fb05cb50f30, + FFFB5cb609d07fb05cb609d0, + FFFB5cb732c07fb05cb732c0, + FFFB5cb778e07fb05cb778e0, + FFFB5cb7c7007fb05cb7c700, + FFFB5b2fb4e07fb05b2fb4e0, + FFFB5b080a507fb05b080a50, + FFFB5b4338707fb05b433870, + FFFB5b308fd07fb05b308fd0, + FFFB5c8058807fb05c805880, + FFFB5b45afc07fb05b45afc0, + FFFB5c8281f07fb05c8281f0, + FFFB5b322ac07fb05b322ac0, + FFFB5c8302207fb05c830220, + FFFB5cb3a3f07fb05cb3a3f0, ); name = Source; sourceTree = "<group>"; }; - FFEE5820b1507fcd5820b150 /* Products */ = { + FFEE5a4828f07fb05a4828f0 /* Products */ = { isa = PBXGroup; children = ( - FFFD56fa61a07fcd56fa61a0, - FFFD5b986ca07fcd5b986ca0, - FFFD56e3cde07fcd56e3cde0, - FFFD586bc1607fcd586bc160, - FFFD5bb033e07fcd5bb033e0, - FFFD5bb075b07fcd5bb075b0, - FFFD5b98d5507fcd5b98d550, - FFFD56e143207fcd56e14320, - FFFD585016d07fcd585016d0, - FFFD582fabb07fcd582fabb0, - FFFD56cac0107fcd56cac010, - FFFD5879adc07fcd5879adc0, - FFFD56dc69f07fcd56dc69f0, - FFFD58692f107fcd58692f10, - FFFD585295c07fcd585295c0, - FFFD585c9d007fcd585c9d00, - FFFD580eddd07fcd580eddd0, + FFFD5cb2e4807fb05cb2e480, + FFFD5cb4fa707fb05cb4fa70, + FFFD5cb50f307fb05cb50f30, + FFFD5cb609d07fb05cb609d0, + FFFD5cb732c07fb05cb732c0, + FFFD5cb778e07fb05cb778e0, + FFFD5cb7c7007fb05cb7c700, + FFFD5b2fb4e07fb05b2fb4e0, + FFFD5b080a507fb05b080a50, + FFFD5b4338707fb05b433870, + FFFD5b308fd07fb05b308fd0, + FFFD5c8058807fb05c805880, + FFFD5b45afc07fb05b45afc0, + FFFD5c8281f07fb05c8281f0, + FFFD5b322ac07fb05b322ac0, + FFFD5c8302207fb05c830220, + FFFD5cb3a3f07fb05cb3a3f0, ); name = Products; sourceTree = "<group>"; }; - FFFB56fa61a07fcd56fa61a0 /* PhysX */ = { + FFFB5cb2e4807fb05cb2e480 /* PhysX */ = { isa = PBXGroup; children = ( - FFFB5b980a107fcd5b980a10 /* src */, - FFFB5b980a387fcd5b980a38 /* include */, - FFFB5b980a607fcd5b980a60 /* metadata */, + FFFB5cb578807fb05cb57880 /* src */, + FFFB5cb578a87fb05cb578a8 /* include */, + FFFB5cb578d07fb05cb578d0 /* metadata */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFFB5b980a107fcd5b980a10 /* src */ = { + FFFB5cb578807fb05cb57880 /* src */ = { isa = PBXGroup; children = ( - FFFD5785c6007fcd5785c600 /* NpActor.h */, - FFFD5785c6687fcd5785c668 /* NpActorTemplate.h */, - FFFD5785c6d07fcd5785c6d0 /* NpAggregate.h */, - FFFD5785c7387fcd5785c738 /* NpArticulation.h */, - FFFD5785c7a07fcd5785c7a0 /* NpArticulationJoint.h */, - FFFD5785c8087fcd5785c808 /* NpArticulationLink.h */, - FFFD5785c8707fcd5785c870 /* NpBatchQuery.h */, - FFFD5785c8d87fcd5785c8d8 /* NpCast.h */, - FFFD5785c9407fcd5785c940 /* NpConnector.h */, - FFFD5785c9a87fcd5785c9a8 /* NpConstraint.h */, - FFFD5785ca107fcd5785ca10 /* NpFactory.h */, - FFFD5785ca787fcd5785ca78 /* NpMaterial.h */, - FFFD5785cae07fcd5785cae0 /* NpMaterialManager.h */, - FFFD5785cb487fcd5785cb48 /* NpPhysics.h */, - FFFD5785cbb07fcd5785cbb0 /* NpPhysicsInsertionCallback.h */, - FFFD5785cc187fcd5785cc18 /* NpPtrTableStorageManager.h */, - FFFD5785cc807fcd5785cc80 /* NpPvdSceneQueryCollector.h */, - FFFD5785cce87fcd5785cce8 /* NpQueryShared.h */, - FFFD5785cd507fcd5785cd50 /* NpReadCheck.h */, - FFFD5785cdb87fcd5785cdb8 /* NpRigidActorTemplate.h */, - FFFD5785ce207fcd5785ce20 /* NpRigidActorTemplateInternal.h */, - FFFD5785ce887fcd5785ce88 /* NpRigidBodyTemplate.h */, - FFFD5785cef07fcd5785cef0 /* NpRigidDynamic.h */, - FFFD5785cf587fcd5785cf58 /* NpRigidStatic.h */, - FFFD5785cfc07fcd5785cfc0 /* NpScene.h */, - FFFD5785d0287fcd5785d028 /* NpSceneQueries.h */, - FFFD5785d0907fcd5785d090 /* NpShape.h */, - FFFD5785d0f87fcd5785d0f8 /* NpShapeManager.h */, - FFFD5785d1607fcd5785d160 /* NpSpatialIndex.h */, - FFFD5785d1c87fcd5785d1c8 /* NpVolumeCache.h */, - FFFD5785d2307fcd5785d230 /* NpWriteCheck.h */, - FFFD5785d2987fcd5785d298 /* PvdMetaDataBindingData.h */, - FFFD5785d3007fcd5785d300 /* PvdMetaDataPvdBinding.h */, - FFFD5785d3687fcd5785d368 /* PvdPhysicsClient.h */, - FFFD5785d3d07fcd5785d3d0 /* PvdTypeNames.h */, - FFFD5785d4387fcd5785d438 /* NpActor.cpp */, - FFFD5785d4a07fcd5785d4a0 /* NpAggregate.cpp */, - FFFD5785d5087fcd5785d508 /* NpArticulation.cpp */, - FFFD5785d5707fcd5785d570 /* NpArticulationJoint.cpp */, - FFFD5785d5d87fcd5785d5d8 /* NpArticulationLink.cpp */, - FFFD5785d6407fcd5785d640 /* NpBatchQuery.cpp */, - FFFD5785d6a87fcd5785d6a8 /* NpConstraint.cpp */, - FFFD5785d7107fcd5785d710 /* NpFactory.cpp */, - FFFD5785d7787fcd5785d778 /* NpMaterial.cpp */, - FFFD5785d7e07fcd5785d7e0 /* NpMetaData.cpp */, - FFFD5785d8487fcd5785d848 /* NpPhysics.cpp */, - FFFD5785d8b07fcd5785d8b0 /* NpPvdSceneQueryCollector.cpp */, - FFFD5785d9187fcd5785d918 /* NpReadCheck.cpp */, - FFFD5785d9807fcd5785d980 /* NpRigidDynamic.cpp */, - FFFD5785d9e87fcd5785d9e8 /* NpRigidStatic.cpp */, - FFFD5785da507fcd5785da50 /* NpScene.cpp */, - FFFD5785dab87fcd5785dab8 /* NpSceneQueries.cpp */, - FFFD5785db207fcd5785db20 /* NpSerializerAdapter.cpp */, - FFFD5785db887fcd5785db88 /* NpShape.cpp */, - FFFD5785dbf07fcd5785dbf0 /* NpShapeManager.cpp */, - FFFD5785dc587fcd5785dc58 /* NpSpatialIndex.cpp */, - FFFD5785dcc07fcd5785dcc0 /* NpVolumeCache.cpp */, - FFFD5785dd287fcd5785dd28 /* NpWriteCheck.cpp */, - FFFD5785dd907fcd5785dd90 /* PvdMetaDataPvdBinding.cpp */, - FFFD5785ddf87fcd5785ddf8 /* PvdPhysicsClient.cpp */, - FFFD5785de607fcd5785de60 /* particles/NpParticleBaseTemplate.h */, - FFFD5785dec87fcd5785dec8 /* particles/NpParticleFluid.h */, - FFFD5785df307fcd5785df30 /* particles/NpParticleFluidReadData.h */, - FFFD5785df987fcd5785df98 /* particles/NpParticleSystem.h */, - FFFD5785e0007fcd5785e000 /* particles/NpParticleFluid.cpp */, - FFFD5785e0687fcd5785e068 /* particles/NpParticleSystem.cpp */, - FFFD5785e0d07fcd5785e0d0 /* buffering/ScbActor.h */, - FFFD5785e1387fcd5785e138 /* buffering/ScbAggregate.h */, - FFFD5785e1a07fcd5785e1a0 /* buffering/ScbArticulation.h */, - FFFD5785e2087fcd5785e208 /* buffering/ScbArticulationJoint.h */, - FFFD5785e2707fcd5785e270 /* buffering/ScbBase.h */, - FFFD5785e2d87fcd5785e2d8 /* buffering/ScbBody.h */, - FFFD5785e3407fcd5785e340 /* buffering/ScbCloth.h */, - FFFD5785e3a87fcd5785e3a8 /* buffering/ScbConstraint.h */, - FFFD5785e4107fcd5785e410 /* buffering/ScbDefs.h */, - FFFD5785e4787fcd5785e478 /* buffering/ScbNpDeps.h */, - FFFD5785e4e07fcd5785e4e0 /* buffering/ScbParticleSystem.h */, - FFFD5785e5487fcd5785e548 /* buffering/ScbRigidObject.h */, - FFFD5785e5b07fcd5785e5b0 /* buffering/ScbRigidStatic.h */, - FFFD5785e6187fcd5785e618 /* buffering/ScbScene.h */, - FFFD5785e6807fcd5785e680 /* buffering/ScbSceneBuffer.h */, - FFFD5785e6e87fcd5785e6e8 /* buffering/ScbScenePvdClient.h */, - FFFD5785e7507fcd5785e750 /* buffering/ScbShape.h */, - FFFD5785e7b87fcd5785e7b8 /* buffering/ScbType.h */, - FFFD5785e8207fcd5785e820 /* buffering/ScbActor.cpp */, - FFFD5785e8887fcd5785e888 /* buffering/ScbAggregate.cpp */, - FFFD5785e8f07fcd5785e8f0 /* buffering/ScbBase.cpp */, - FFFD5785e9587fcd5785e958 /* buffering/ScbCloth.cpp */, - FFFD5785e9c07fcd5785e9c0 /* buffering/ScbMetaData.cpp */, - FFFD5785ea287fcd5785ea28 /* buffering/ScbParticleSystem.cpp */, - FFFD5785ea907fcd5785ea90 /* buffering/ScbScene.cpp */, - FFFD5785eaf87fcd5785eaf8 /* buffering/ScbScenePvdClient.cpp */, - FFFD5785eb607fcd5785eb60 /* buffering/ScbShape.cpp */, - FFFD5785ebc87fcd5785ebc8 /* cloth/NpCloth.h */, - FFFD5785ec307fcd5785ec30 /* cloth/NpClothFabric.h */, - FFFD5785ec987fcd5785ec98 /* cloth/NpClothParticleData.h */, - FFFD5785ed007fcd5785ed00 /* cloth/NpCloth.cpp */, - FFFD5785ed687fcd5785ed68 /* cloth/NpClothFabric.cpp */, - FFFD5785edd07fcd5785edd0 /* cloth/NpClothParticleData.cpp */, - FFFD5785ee387fcd5785ee38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, + FFFD5a9e32007fb05a9e3200 /* NpActor.h */, + FFFD5a9e32687fb05a9e3268 /* NpActorTemplate.h */, + FFFD5a9e32d07fb05a9e32d0 /* NpAggregate.h */, + FFFD5a9e33387fb05a9e3338 /* NpArticulation.h */, + FFFD5a9e33a07fb05a9e33a0 /* NpArticulationJoint.h */, + FFFD5a9e34087fb05a9e3408 /* NpArticulationLink.h */, + FFFD5a9e34707fb05a9e3470 /* NpBatchQuery.h */, + FFFD5a9e34d87fb05a9e34d8 /* NpCast.h */, + FFFD5a9e35407fb05a9e3540 /* NpConnector.h */, + FFFD5a9e35a87fb05a9e35a8 /* NpConstraint.h */, + FFFD5a9e36107fb05a9e3610 /* NpFactory.h */, + FFFD5a9e36787fb05a9e3678 /* NpMaterial.h */, + FFFD5a9e36e07fb05a9e36e0 /* NpMaterialManager.h */, + FFFD5a9e37487fb05a9e3748 /* NpPhysics.h */, + FFFD5a9e37b07fb05a9e37b0 /* NpPhysicsInsertionCallback.h */, + FFFD5a9e38187fb05a9e3818 /* NpPtrTableStorageManager.h */, + FFFD5a9e38807fb05a9e3880 /* NpPvdSceneQueryCollector.h */, + FFFD5a9e38e87fb05a9e38e8 /* NpQueryShared.h */, + FFFD5a9e39507fb05a9e3950 /* NpReadCheck.h */, + FFFD5a9e39b87fb05a9e39b8 /* NpRigidActorTemplate.h */, + FFFD5a9e3a207fb05a9e3a20 /* NpRigidActorTemplateInternal.h */, + FFFD5a9e3a887fb05a9e3a88 /* NpRigidBodyTemplate.h */, + FFFD5a9e3af07fb05a9e3af0 /* NpRigidDynamic.h */, + FFFD5a9e3b587fb05a9e3b58 /* NpRigidStatic.h */, + FFFD5a9e3bc07fb05a9e3bc0 /* NpScene.h */, + FFFD5a9e3c287fb05a9e3c28 /* NpSceneQueries.h */, + FFFD5a9e3c907fb05a9e3c90 /* NpShape.h */, + FFFD5a9e3cf87fb05a9e3cf8 /* NpShapeManager.h */, + FFFD5a9e3d607fb05a9e3d60 /* NpSpatialIndex.h */, + FFFD5a9e3dc87fb05a9e3dc8 /* NpVolumeCache.h */, + FFFD5a9e3e307fb05a9e3e30 /* NpWriteCheck.h */, + FFFD5a9e3e987fb05a9e3e98 /* PvdMetaDataBindingData.h */, + FFFD5a9e3f007fb05a9e3f00 /* PvdMetaDataPvdBinding.h */, + FFFD5a9e3f687fb05a9e3f68 /* PvdPhysicsClient.h */, + FFFD5a9e3fd07fb05a9e3fd0 /* PvdTypeNames.h */, + FFFD5a9e40387fb05a9e4038 /* NpActor.cpp */, + FFFD5a9e40a07fb05a9e40a0 /* NpAggregate.cpp */, + FFFD5a9e41087fb05a9e4108 /* NpArticulation.cpp */, + FFFD5a9e41707fb05a9e4170 /* NpArticulationJoint.cpp */, + FFFD5a9e41d87fb05a9e41d8 /* NpArticulationLink.cpp */, + FFFD5a9e42407fb05a9e4240 /* NpBatchQuery.cpp */, + FFFD5a9e42a87fb05a9e42a8 /* NpConstraint.cpp */, + FFFD5a9e43107fb05a9e4310 /* NpFactory.cpp */, + FFFD5a9e43787fb05a9e4378 /* NpMaterial.cpp */, + FFFD5a9e43e07fb05a9e43e0 /* NpMetaData.cpp */, + FFFD5a9e44487fb05a9e4448 /* NpPhysics.cpp */, + FFFD5a9e44b07fb05a9e44b0 /* NpPvdSceneQueryCollector.cpp */, + FFFD5a9e45187fb05a9e4518 /* NpReadCheck.cpp */, + FFFD5a9e45807fb05a9e4580 /* NpRigidDynamic.cpp */, + FFFD5a9e45e87fb05a9e45e8 /* NpRigidStatic.cpp */, + FFFD5a9e46507fb05a9e4650 /* NpScene.cpp */, + FFFD5a9e46b87fb05a9e46b8 /* NpSceneQueries.cpp */, + FFFD5a9e47207fb05a9e4720 /* NpSerializerAdapter.cpp */, + FFFD5a9e47887fb05a9e4788 /* NpShape.cpp */, + FFFD5a9e47f07fb05a9e47f0 /* NpShapeManager.cpp */, + FFFD5a9e48587fb05a9e4858 /* NpSpatialIndex.cpp */, + FFFD5a9e48c07fb05a9e48c0 /* NpVolumeCache.cpp */, + FFFD5a9e49287fb05a9e4928 /* NpWriteCheck.cpp */, + FFFD5a9e49907fb05a9e4990 /* PvdMetaDataPvdBinding.cpp */, + FFFD5a9e49f87fb05a9e49f8 /* PvdPhysicsClient.cpp */, + FFFD5a9e4a607fb05a9e4a60 /* particles/NpParticleBaseTemplate.h */, + FFFD5a9e4ac87fb05a9e4ac8 /* particles/NpParticleFluid.h */, + FFFD5a9e4b307fb05a9e4b30 /* particles/NpParticleFluidReadData.h */, + FFFD5a9e4b987fb05a9e4b98 /* particles/NpParticleSystem.h */, + FFFD5a9e4c007fb05a9e4c00 /* particles/NpParticleFluid.cpp */, + FFFD5a9e4c687fb05a9e4c68 /* particles/NpParticleSystem.cpp */, + FFFD5a9e4cd07fb05a9e4cd0 /* buffering/ScbActor.h */, + FFFD5a9e4d387fb05a9e4d38 /* buffering/ScbAggregate.h */, + FFFD5a9e4da07fb05a9e4da0 /* buffering/ScbArticulation.h */, + FFFD5a9e4e087fb05a9e4e08 /* buffering/ScbArticulationJoint.h */, + FFFD5a9e4e707fb05a9e4e70 /* buffering/ScbBase.h */, + FFFD5a9e4ed87fb05a9e4ed8 /* buffering/ScbBody.h */, + FFFD5a9e4f407fb05a9e4f40 /* buffering/ScbCloth.h */, + FFFD5a9e4fa87fb05a9e4fa8 /* buffering/ScbConstraint.h */, + FFFD5a9e50107fb05a9e5010 /* buffering/ScbDefs.h */, + FFFD5a9e50787fb05a9e5078 /* buffering/ScbNpDeps.h */, + FFFD5a9e50e07fb05a9e50e0 /* buffering/ScbParticleSystem.h */, + FFFD5a9e51487fb05a9e5148 /* buffering/ScbRigidObject.h */, + FFFD5a9e51b07fb05a9e51b0 /* buffering/ScbRigidStatic.h */, + FFFD5a9e52187fb05a9e5218 /* buffering/ScbScene.h */, + FFFD5a9e52807fb05a9e5280 /* buffering/ScbSceneBuffer.h */, + FFFD5a9e52e87fb05a9e52e8 /* buffering/ScbScenePvdClient.h */, + FFFD5a9e53507fb05a9e5350 /* buffering/ScbShape.h */, + FFFD5a9e53b87fb05a9e53b8 /* buffering/ScbType.h */, + FFFD5a9e54207fb05a9e5420 /* buffering/ScbActor.cpp */, + FFFD5a9e54887fb05a9e5488 /* buffering/ScbAggregate.cpp */, + FFFD5a9e54f07fb05a9e54f0 /* buffering/ScbBase.cpp */, + FFFD5a9e55587fb05a9e5558 /* buffering/ScbCloth.cpp */, + FFFD5a9e55c07fb05a9e55c0 /* buffering/ScbMetaData.cpp */, + FFFD5a9e56287fb05a9e5628 /* buffering/ScbParticleSystem.cpp */, + FFFD5a9e56907fb05a9e5690 /* buffering/ScbScene.cpp */, + FFFD5a9e56f87fb05a9e56f8 /* buffering/ScbScenePvdClient.cpp */, + FFFD5a9e57607fb05a9e5760 /* buffering/ScbShape.cpp */, + FFFD5a9e57c87fb05a9e57c8 /* cloth/NpCloth.h */, + FFFD5a9e58307fb05a9e5830 /* cloth/NpClothFabric.h */, + FFFD5a9e58987fb05a9e5898 /* cloth/NpClothParticleData.h */, + FFFD5a9e59007fb05a9e5900 /* cloth/NpCloth.cpp */, + FFFD5a9e59687fb05a9e5968 /* cloth/NpClothFabric.cpp */, + FFFD5a9e59d07fb05a9e59d0 /* cloth/NpClothParticleData.cpp */, + FFFD5a9e5a387fb05a9e5a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b980a387fcd5b980a38 /* include */ = { + FFFB5cb578a87fb05cb578a8 /* include */ = { isa = PBXGroup; children = ( - FFFD57856c007fcd57856c00 /* PxActor.h */, - FFFD57856c687fcd57856c68 /* PxAggregate.h */, - FFFD57856cd07fcd57856cd0 /* PxArticulation.h */, - FFFD57856d387fcd57856d38 /* PxArticulationJoint.h */, - FFFD57856da07fcd57856da0 /* PxArticulationLink.h */, - FFFD57856e087fcd57856e08 /* PxBatchQuery.h */, - FFFD57856e707fcd57856e70 /* PxBatchQueryDesc.h */, - FFFD57856ed87fcd57856ed8 /* PxBroadPhase.h */, - FFFD57856f407fcd57856f40 /* PxClient.h */, - FFFD57856fa87fcd57856fa8 /* PxConstraint.h */, - FFFD578570107fcd57857010 /* PxConstraintDesc.h */, - FFFD578570787fcd57857078 /* PxContact.h */, - FFFD578570e07fcd578570e0 /* PxContactModifyCallback.h */, - FFFD578571487fcd57857148 /* PxDeletionListener.h */, - FFFD578571b07fcd578571b0 /* PxFiltering.h */, - FFFD578572187fcd57857218 /* PxForceMode.h */, - FFFD578572807fcd57857280 /* PxImmediateMode.h */, - FFFD578572e87fcd578572e8 /* PxLockedData.h */, - FFFD578573507fcd57857350 /* PxMaterial.h */, - FFFD578573b87fcd578573b8 /* PxPhysXConfig.h */, - FFFD578574207fcd57857420 /* PxPhysics.h */, - FFFD578574887fcd57857488 /* PxPhysicsAPI.h */, - FFFD578574f07fcd578574f0 /* PxPhysicsSerialization.h */, - FFFD578575587fcd57857558 /* PxPhysicsVersion.h */, - FFFD578575c07fcd578575c0 /* PxPruningStructure.h */, - FFFD578576287fcd57857628 /* PxQueryFiltering.h */, - FFFD578576907fcd57857690 /* PxQueryReport.h */, - FFFD578576f87fcd578576f8 /* PxRigidActor.h */, - FFFD578577607fcd57857760 /* PxRigidBody.h */, - FFFD578577c87fcd578577c8 /* PxRigidDynamic.h */, - FFFD578578307fcd57857830 /* PxRigidStatic.h */, - FFFD578578987fcd57857898 /* PxScene.h */, - FFFD578579007fcd57857900 /* PxSceneDesc.h */, - FFFD578579687fcd57857968 /* PxSceneLock.h */, - FFFD578579d07fcd578579d0 /* PxShape.h */, - FFFD57857a387fcd57857a38 /* PxSimulationEventCallback.h */, - FFFD57857aa07fcd57857aa0 /* PxSimulationStatistics.h */, - FFFD57857b087fcd57857b08 /* PxSpatialIndex.h */, - FFFD57857b707fcd57857b70 /* PxVisualizationParameter.h */, - FFFD57857bd87fcd57857bd8 /* PxVolumeCache.h */, - FFFD57857c407fcd57857c40 /* particles/PxParticleBase.h */, - FFFD57857ca87fcd57857ca8 /* particles/PxParticleBaseFlag.h */, - FFFD57857d107fcd57857d10 /* particles/PxParticleCreationData.h */, - FFFD57857d787fcd57857d78 /* particles/PxParticleFlag.h */, - FFFD57857de07fcd57857de0 /* particles/PxParticleFluid.h */, - FFFD57857e487fcd57857e48 /* particles/PxParticleFluidReadData.h */, - FFFD57857eb07fcd57857eb0 /* particles/PxParticleReadData.h */, - FFFD57857f187fcd57857f18 /* particles/PxParticleSystem.h */, - FFFD57857f807fcd57857f80 /* pvd/PxPvdSceneClient.h */, - FFFD57857fe87fcd57857fe8 /* cloth/PxCloth.h */, - FFFD578580507fcd57858050 /* cloth/PxClothCollisionData.h */, - FFFD578580b87fcd578580b8 /* cloth/PxClothFabric.h */, - FFFD578581207fcd57858120 /* cloth/PxClothParticleData.h */, - FFFD578581887fcd57858188 /* cloth/PxClothTypes.h */, + FFFD5a9e0c007fb05a9e0c00 /* PxActor.h */, + FFFD5a9e0c687fb05a9e0c68 /* PxAggregate.h */, + FFFD5a9e0cd07fb05a9e0cd0 /* PxArticulation.h */, + FFFD5a9e0d387fb05a9e0d38 /* PxArticulationJoint.h */, + FFFD5a9e0da07fb05a9e0da0 /* PxArticulationLink.h */, + FFFD5a9e0e087fb05a9e0e08 /* PxBatchQuery.h */, + FFFD5a9e0e707fb05a9e0e70 /* PxBatchQueryDesc.h */, + FFFD5a9e0ed87fb05a9e0ed8 /* PxBroadPhase.h */, + FFFD5a9e0f407fb05a9e0f40 /* PxClient.h */, + FFFD5a9e0fa87fb05a9e0fa8 /* PxConstraint.h */, + FFFD5a9e10107fb05a9e1010 /* PxConstraintDesc.h */, + FFFD5a9e10787fb05a9e1078 /* PxContact.h */, + FFFD5a9e10e07fb05a9e10e0 /* PxContactModifyCallback.h */, + FFFD5a9e11487fb05a9e1148 /* PxDeletionListener.h */, + FFFD5a9e11b07fb05a9e11b0 /* PxFiltering.h */, + FFFD5a9e12187fb05a9e1218 /* PxForceMode.h */, + FFFD5a9e12807fb05a9e1280 /* PxImmediateMode.h */, + FFFD5a9e12e87fb05a9e12e8 /* PxLockedData.h */, + FFFD5a9e13507fb05a9e1350 /* PxMaterial.h */, + FFFD5a9e13b87fb05a9e13b8 /* PxPhysXConfig.h */, + FFFD5a9e14207fb05a9e1420 /* PxPhysics.h */, + FFFD5a9e14887fb05a9e1488 /* PxPhysicsAPI.h */, + FFFD5a9e14f07fb05a9e14f0 /* PxPhysicsSerialization.h */, + FFFD5a9e15587fb05a9e1558 /* PxPhysicsVersion.h */, + FFFD5a9e15c07fb05a9e15c0 /* PxPruningStructure.h */, + FFFD5a9e16287fb05a9e1628 /* PxQueryFiltering.h */, + FFFD5a9e16907fb05a9e1690 /* PxQueryReport.h */, + FFFD5a9e16f87fb05a9e16f8 /* PxRigidActor.h */, + FFFD5a9e17607fb05a9e1760 /* PxRigidBody.h */, + FFFD5a9e17c87fb05a9e17c8 /* PxRigidDynamic.h */, + FFFD5a9e18307fb05a9e1830 /* PxRigidStatic.h */, + FFFD5a9e18987fb05a9e1898 /* PxScene.h */, + FFFD5a9e19007fb05a9e1900 /* PxSceneDesc.h */, + FFFD5a9e19687fb05a9e1968 /* PxSceneLock.h */, + FFFD5a9e19d07fb05a9e19d0 /* PxShape.h */, + FFFD5a9e1a387fb05a9e1a38 /* PxSimulationEventCallback.h */, + FFFD5a9e1aa07fb05a9e1aa0 /* PxSimulationStatistics.h */, + FFFD5a9e1b087fb05a9e1b08 /* PxSpatialIndex.h */, + FFFD5a9e1b707fb05a9e1b70 /* PxVisualizationParameter.h */, + FFFD5a9e1bd87fb05a9e1bd8 /* PxVolumeCache.h */, + FFFD5a9e1c407fb05a9e1c40 /* particles/PxParticleBase.h */, + FFFD5a9e1ca87fb05a9e1ca8 /* particles/PxParticleBaseFlag.h */, + FFFD5a9e1d107fb05a9e1d10 /* particles/PxParticleCreationData.h */, + FFFD5a9e1d787fb05a9e1d78 /* particles/PxParticleFlag.h */, + FFFD5a9e1de07fb05a9e1de0 /* particles/PxParticleFluid.h */, + FFFD5a9e1e487fb05a9e1e48 /* particles/PxParticleFluidReadData.h */, + FFFD5a9e1eb07fb05a9e1eb0 /* particles/PxParticleReadData.h */, + FFFD5a9e1f187fb05a9e1f18 /* particles/PxParticleSystem.h */, + FFFD5a9e1f807fb05a9e1f80 /* pvd/PxPvdSceneClient.h */, + FFFD5a9e1fe87fb05a9e1fe8 /* cloth/PxCloth.h */, + FFFD5a9e20507fb05a9e2050 /* cloth/PxClothCollisionData.h */, + FFFD5a9e20b87fb05a9e20b8 /* cloth/PxClothFabric.h */, + FFFD5a9e21207fb05a9e2120 /* cloth/PxClothParticleData.h */, + FFFD5a9e21887fb05a9e2188 /* cloth/PxClothTypes.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b980a607fcd5b980a60 /* metadata */ = { + FFFB5cb578d07fb05cb578d0 /* metadata */ = { isa = PBXGroup; children = ( - FFFD5785a0007fcd5785a000 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD5785a0687fcd5785a068 /* core/include/PvdMetaDataExtensions.h */, - FFFD5785a0d07fcd5785a0d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD5785a1387fcd5785a138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD5785a1a07fcd5785a1a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD5785a2087fcd5785a208 /* core/include/PxMetaDataCompare.h */, - FFFD5785a2707fcd5785a270 /* core/include/PxMetaDataCppPrefix.h */, - FFFD5785a2d87fcd5785a2d8 /* core/include/PxMetaDataObjects.h */, - FFFD5785a3407fcd5785a340 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD5785a3a87fcd5785a3a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, - FFFD5785a4107fcd5785a410 /* core/src/PxMetaDataObjects.cpp */, + FFFD5a9e22007fb05a9e2200 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD5a9e22687fb05a9e2268 /* core/include/PvdMetaDataExtensions.h */, + FFFD5a9e22d07fb05a9e22d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD5a9e23387fb05a9e2338 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD5a9e23a07fb05a9e23a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD5a9e24087fb05a9e2408 /* core/include/PxMetaDataCompare.h */, + FFFD5a9e24707fb05a9e2470 /* core/include/PxMetaDataCppPrefix.h */, + FFFD5a9e24d87fb05a9e24d8 /* core/include/PxMetaDataObjects.h */, + FFFD5a9e25407fb05a9e2540 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD5a9e25a87fb05a9e25a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, + FFFD5a9e26107fb05a9e2610 /* core/src/PxMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB5b986ca07fcd5b986ca0 /* PhysXCharacterKinematic */ = { + FFFB5cb4fa707fb05cb4fa70 /* PhysXCharacterKinematic */ = { isa = PBXGroup; children = ( - FFFB56e363d07fcd56e363d0 /* include */, - FFFB56e363f87fcd56e363f8 /* src */, + FFFB5cb561007fb05cb56100 /* include */, + FFFB5cb561287fb05cb56128 /* src */, ); name = "PhysXCharacterKinematic"; sourceTree = "<group>"; }; - FFFB56e363d07fcd56e363d0 /* include */ = { + FFFB5cb561007fb05cb56100 /* include */ = { isa = PBXGroup; children = ( - FFFD56e3c1307fcd56e3c130 /* PxBoxController.h */, - FFFD56e3c1987fcd56e3c198 /* PxCapsuleController.h */, - FFFD56e3c2007fcd56e3c200 /* PxCharacter.h */, - FFFD56e3c2687fcd56e3c268 /* PxController.h */, - FFFD56e3c2d07fcd56e3c2d0 /* PxControllerBehavior.h */, - FFFD56e3c3387fcd56e3c338 /* PxControllerManager.h */, - FFFD56e3c3a07fcd56e3c3a0 /* PxControllerObstacles.h */, - FFFD56e3c4087fcd56e3c408 /* PxExtended.h */, + FFFD5cb56b707fb05cb56b70 /* PxBoxController.h */, + FFFD5cb56bd87fb05cb56bd8 /* PxCapsuleController.h */, + FFFD5cb56c407fb05cb56c40 /* PxCharacter.h */, + FFFD5cb56ca87fb05cb56ca8 /* PxController.h */, + FFFD5cb56d107fb05cb56d10 /* PxControllerBehavior.h */, + FFFD5cb56d787fb05cb56d78 /* PxControllerManager.h */, + FFFD5cb56de07fb05cb56de0 /* PxControllerObstacles.h */, + FFFD5cb56e487fb05cb56e48 /* PxExtended.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB56e363f87fcd56e363f8 /* src */ = { + FFFB5cb561287fb05cb56128 /* src */ = { isa = PBXGroup; children = ( - FFFD5980c8007fcd5980c800 /* CctBoxController.h */, - FFFD5980c8687fcd5980c868 /* CctCapsuleController.h */, - FFFD5980c8d07fcd5980c8d0 /* CctCharacterController.h */, - FFFD5980c9387fcd5980c938 /* CctCharacterControllerManager.h */, - FFFD5980c9a07fcd5980c9a0 /* CctController.h */, - FFFD5980ca087fcd5980ca08 /* CctInternalStructs.h */, - FFFD5980ca707fcd5980ca70 /* CctObstacleContext.h */, - FFFD5980cad87fcd5980cad8 /* CctSweptBox.h */, - FFFD5980cb407fcd5980cb40 /* CctSweptCapsule.h */, - FFFD5980cba87fcd5980cba8 /* CctSweptVolume.h */, - FFFD5980cc107fcd5980cc10 /* CctUtils.h */, - FFFD5980cc787fcd5980cc78 /* CctBoxController.cpp */, - FFFD5980cce07fcd5980cce0 /* CctCapsuleController.cpp */, - FFFD5980cd487fcd5980cd48 /* CctCharacterController.cpp */, - FFFD5980cdb07fcd5980cdb0 /* CctCharacterControllerCallbacks.cpp */, - FFFD5980ce187fcd5980ce18 /* CctCharacterControllerManager.cpp */, - FFFD5980ce807fcd5980ce80 /* CctController.cpp */, - FFFD5980cee87fcd5980cee8 /* CctObstacleContext.cpp */, - FFFD5980cf507fcd5980cf50 /* CctSweptBox.cpp */, - FFFD5980cfb87fcd5980cfb8 /* CctSweptCapsule.cpp */, - FFFD5980d0207fcd5980d020 /* CctSweptVolume.cpp */, + FFFD5a9e9e007fb05a9e9e00 /* CctBoxController.h */, + FFFD5a9e9e687fb05a9e9e68 /* CctCapsuleController.h */, + FFFD5a9e9ed07fb05a9e9ed0 /* CctCharacterController.h */, + FFFD5a9e9f387fb05a9e9f38 /* CctCharacterControllerManager.h */, + FFFD5a9e9fa07fb05a9e9fa0 /* CctController.h */, + FFFD5a9ea0087fb05a9ea008 /* CctInternalStructs.h */, + FFFD5a9ea0707fb05a9ea070 /* CctObstacleContext.h */, + FFFD5a9ea0d87fb05a9ea0d8 /* CctSweptBox.h */, + FFFD5a9ea1407fb05a9ea140 /* CctSweptCapsule.h */, + FFFD5a9ea1a87fb05a9ea1a8 /* CctSweptVolume.h */, + FFFD5a9ea2107fb05a9ea210 /* CctUtils.h */, + FFFD5a9ea2787fb05a9ea278 /* CctBoxController.cpp */, + FFFD5a9ea2e07fb05a9ea2e0 /* CctCapsuleController.cpp */, + FFFD5a9ea3487fb05a9ea348 /* CctCharacterController.cpp */, + FFFD5a9ea3b07fb05a9ea3b0 /* CctCharacterControllerCallbacks.cpp */, + FFFD5a9ea4187fb05a9ea418 /* CctCharacterControllerManager.cpp */, + FFFD5a9ea4807fb05a9ea480 /* CctController.cpp */, + FFFD5a9ea4e87fb05a9ea4e8 /* CctObstacleContext.cpp */, + FFFD5a9ea5507fb05a9ea550 /* CctSweptBox.cpp */, + FFFD5a9ea5b87fb05a9ea5b8 /* CctSweptCapsule.cpp */, + FFFD5a9ea6207fb05a9ea620 /* CctSweptVolume.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB56e3cde07fcd56e3cde0 /* PhysXVehicle */ = { + FFFB5cb50f307fb05cb50f30 /* PhysXVehicle */ = { isa = PBXGroup; children = ( - FFFB586ba7b07fcd586ba7b0 /* include */, - FFFB586ba7d87fcd586ba7d8 /* src */, - FFFB586ba8007fcd586ba800 /* metadata */, + FFFB5cb5f0d07fb05cb5f0d0 /* include */, + FFFB5cb5f0f87fb05cb5f0f8 /* src */, + FFFB5cb5f1207fb05cb5f120 /* metadata */, ); name = "PhysXVehicle"; sourceTree = "<group>"; }; - FFFB586ba7b07fcd586ba7b0 /* include */ = { + FFFB5cb5f0d07fb05cb5f0d0 /* include */ = { isa = PBXGroup; children = ( - FFFD5b0518007fcd5b051800 /* PxVehicleComponents.h */, - FFFD5b0518687fcd5b051868 /* PxVehicleDrive.h */, - FFFD5b0518d07fcd5b0518d0 /* PxVehicleDrive4W.h */, - FFFD5b0519387fcd5b051938 /* PxVehicleDriveNW.h */, - FFFD5b0519a07fcd5b0519a0 /* PxVehicleDriveTank.h */, - FFFD5b051a087fcd5b051a08 /* PxVehicleNoDrive.h */, - FFFD5b051a707fcd5b051a70 /* PxVehicleSDK.h */, - FFFD5b051ad87fcd5b051ad8 /* PxVehicleShaders.h */, - FFFD5b051b407fcd5b051b40 /* PxVehicleTireFriction.h */, - FFFD5b051ba87fcd5b051ba8 /* PxVehicleUpdate.h */, - FFFD5b051c107fcd5b051c10 /* PxVehicleUtil.h */, - FFFD5b051c787fcd5b051c78 /* PxVehicleUtilControl.h */, - FFFD5b051ce07fcd5b051ce0 /* PxVehicleUtilSetup.h */, - FFFD5b051d487fcd5b051d48 /* PxVehicleUtilTelemetry.h */, - FFFD5b051db07fcd5b051db0 /* PxVehicleWheels.h */, + FFFD5a9ecc007fb05a9ecc00 /* PxVehicleComponents.h */, + FFFD5a9ecc687fb05a9ecc68 /* PxVehicleDrive.h */, + FFFD5a9eccd07fb05a9eccd0 /* PxVehicleDrive4W.h */, + FFFD5a9ecd387fb05a9ecd38 /* PxVehicleDriveNW.h */, + FFFD5a9ecda07fb05a9ecda0 /* PxVehicleDriveTank.h */, + FFFD5a9ece087fb05a9ece08 /* PxVehicleNoDrive.h */, + FFFD5a9ece707fb05a9ece70 /* PxVehicleSDK.h */, + FFFD5a9eced87fb05a9eced8 /* PxVehicleShaders.h */, + FFFD5a9ecf407fb05a9ecf40 /* PxVehicleTireFriction.h */, + FFFD5a9ecfa87fb05a9ecfa8 /* PxVehicleUpdate.h */, + FFFD5a9ed0107fb05a9ed010 /* PxVehicleUtil.h */, + FFFD5a9ed0787fb05a9ed078 /* PxVehicleUtilControl.h */, + FFFD5a9ed0e07fb05a9ed0e0 /* PxVehicleUtilSetup.h */, + FFFD5a9ed1487fb05a9ed148 /* PxVehicleUtilTelemetry.h */, + FFFD5a9ed1b07fb05a9ed1b0 /* PxVehicleWheels.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB586ba7d87fcd586ba7d8 /* src */ = { + FFFB5cb5f0f87fb05cb5f0f8 /* src */ = { isa = PBXGroup; children = ( - FFFD5b0528007fcd5b052800 /* PxVehicleDefaults.h */, - FFFD5b0528687fcd5b052868 /* PxVehicleLinearMath.h */, - FFFD5b0528d07fcd5b0528d0 /* PxVehicleSerialization.h */, - FFFD5b0529387fcd5b052938 /* PxVehicleSuspLimitConstraintShader.h */, - FFFD5b0529a07fcd5b0529a0 /* PxVehicleSuspWheelTire4.h */, - FFFD5b052a087fcd5b052a08 /* PxVehicleComponents.cpp */, - FFFD5b052a707fcd5b052a70 /* PxVehicleDrive.cpp */, - FFFD5b052ad87fcd5b052ad8 /* PxVehicleDrive4W.cpp */, - FFFD5b052b407fcd5b052b40 /* PxVehicleDriveNW.cpp */, - FFFD5b052ba87fcd5b052ba8 /* PxVehicleDriveTank.cpp */, - FFFD5b052c107fcd5b052c10 /* PxVehicleMetaData.cpp */, - FFFD5b052c787fcd5b052c78 /* PxVehicleNoDrive.cpp */, - FFFD5b052ce07fcd5b052ce0 /* PxVehicleSDK.cpp */, - FFFD5b052d487fcd5b052d48 /* PxVehicleSerialization.cpp */, - FFFD5b052db07fcd5b052db0 /* PxVehicleSuspWheelTire4.cpp */, - FFFD5b052e187fcd5b052e18 /* PxVehicleTireFriction.cpp */, - FFFD5b052e807fcd5b052e80 /* PxVehicleUpdate.cpp */, - FFFD5b052ee87fcd5b052ee8 /* PxVehicleWheels.cpp */, - FFFD5b052f507fcd5b052f50 /* VehicleUtilControl.cpp */, - FFFD5b052fb87fcd5b052fb8 /* VehicleUtilSetup.cpp */, - FFFD5b0530207fcd5b053020 /* VehicleUtilTelemetry.cpp */, + FFFD5a9eee007fb05a9eee00 /* PxVehicleDefaults.h */, + FFFD5a9eee687fb05a9eee68 /* PxVehicleLinearMath.h */, + FFFD5a9eeed07fb05a9eeed0 /* PxVehicleSerialization.h */, + FFFD5a9eef387fb05a9eef38 /* PxVehicleSuspLimitConstraintShader.h */, + FFFD5a9eefa07fb05a9eefa0 /* PxVehicleSuspWheelTire4.h */, + FFFD5a9ef0087fb05a9ef008 /* PxVehicleComponents.cpp */, + FFFD5a9ef0707fb05a9ef070 /* PxVehicleDrive.cpp */, + FFFD5a9ef0d87fb05a9ef0d8 /* PxVehicleDrive4W.cpp */, + FFFD5a9ef1407fb05a9ef140 /* PxVehicleDriveNW.cpp */, + FFFD5a9ef1a87fb05a9ef1a8 /* PxVehicleDriveTank.cpp */, + FFFD5a9ef2107fb05a9ef210 /* PxVehicleMetaData.cpp */, + FFFD5a9ef2787fb05a9ef278 /* PxVehicleNoDrive.cpp */, + FFFD5a9ef2e07fb05a9ef2e0 /* PxVehicleSDK.cpp */, + FFFD5a9ef3487fb05a9ef348 /* PxVehicleSerialization.cpp */, + FFFD5a9ef3b07fb05a9ef3b0 /* PxVehicleSuspWheelTire4.cpp */, + FFFD5a9ef4187fb05a9ef418 /* PxVehicleTireFriction.cpp */, + FFFD5a9ef4807fb05a9ef480 /* PxVehicleUpdate.cpp */, + FFFD5a9ef4e87fb05a9ef4e8 /* PxVehicleWheels.cpp */, + FFFD5a9ef5507fb05a9ef550 /* VehicleUtilControl.cpp */, + FFFD5a9ef5b87fb05a9ef5b8 /* VehicleUtilSetup.cpp */, + FFFD5a9ef6207fb05a9ef620 /* VehicleUtilTelemetry.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB586ba8007fcd586ba800 /* metadata */ = { + FFFB5cb5f1207fb05cb5f120 /* metadata */ = { isa = PBXGroup; children = ( - FFFD586bc5507fcd586bc550 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, - FFFD586bc5b87fcd586bc5b8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, - FFFD586bc6207fcd586bc620 /* include/PxVehicleMetaDataObjects.h */, - FFFD586bc6887fcd586bc688 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, - FFFD586bc6f07fcd586bc6f0 /* src/PxVehicleMetaDataObjects.cpp */, + FFFD5cb628107fb05cb62810 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, + FFFD5cb628787fb05cb62878 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, + FFFD5cb628e07fb05cb628e0 /* include/PxVehicleMetaDataObjects.h */, + FFFD5cb629487fb05cb62948 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, + FFFD5cb629b07fb05cb629b0 /* src/PxVehicleMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB586bc1607fcd586bc160 /* PhysXExtensions */ = { + FFFB5cb609d07fb05cb609d0 /* PhysXExtensions */ = { isa = PBXGroup; children = ( - FFFB5b98a1807fcd5b98a180 /* include */, - FFFB5b98a1a87fcd5b98a1a8 /* src */, - FFFB5b98a1d07fcd5b98a1d0 /* serialization */, - FFFB5b98a1f87fcd5b98a1f8 /* metadata */, + FFFB5cb655f07fb05cb655f0 /* include */, + FFFB5cb656187fb05cb65618 /* src */, + FFFB5cb656407fb05cb65640 /* serialization */, + FFFB5cb656687fb05cb65668 /* metadata */, ); name = "PhysXExtensions"; sourceTree = "<group>"; }; - FFFB5b98a1807fcd5b98a180 /* include */ = { + FFFB5cb655f07fb05cb655f0 /* include */ = { isa = PBXGroup; children = ( - FFFD5785a8007fcd5785a800 /* PxBinaryConverter.h */, - FFFD5785a8687fcd5785a868 /* PxBroadPhaseExt.h */, - FFFD5785a8d07fcd5785a8d0 /* PxClothFabricCooker.h */, - FFFD5785a9387fcd5785a938 /* PxClothMeshDesc.h */, - FFFD5785a9a07fcd5785a9a0 /* PxClothMeshQuadifier.h */, - FFFD5785aa087fcd5785aa08 /* PxClothTetherCooker.h */, - FFFD5785aa707fcd5785aa70 /* PxCollectionExt.h */, - FFFD5785aad87fcd5785aad8 /* PxConstraintExt.h */, - FFFD5785ab407fcd5785ab40 /* PxConvexMeshExt.h */, - FFFD5785aba87fcd5785aba8 /* PxD6Joint.h */, - FFFD5785ac107fcd5785ac10 /* PxDefaultAllocator.h */, - FFFD5785ac787fcd5785ac78 /* PxDefaultCpuDispatcher.h */, - FFFD5785ace07fcd5785ace0 /* PxDefaultErrorCallback.h */, - FFFD5785ad487fcd5785ad48 /* PxDefaultSimulationFilterShader.h */, - FFFD5785adb07fcd5785adb0 /* PxDefaultStreams.h */, - FFFD5785ae187fcd5785ae18 /* PxDistanceJoint.h */, - FFFD5785ae807fcd5785ae80 /* PxExtensionsAPI.h */, - FFFD5785aee87fcd5785aee8 /* PxFixedJoint.h */, - FFFD5785af507fcd5785af50 /* PxJoint.h */, - FFFD5785afb87fcd5785afb8 /* PxJointLimit.h */, - FFFD5785b0207fcd5785b020 /* PxJointRepXSerializer.h */, - FFFD5785b0887fcd5785b088 /* PxMassProperties.h */, - FFFD5785b0f07fcd5785b0f0 /* PxParticleExt.h */, - FFFD5785b1587fcd5785b158 /* PxPrismaticJoint.h */, - FFFD5785b1c07fcd5785b1c0 /* PxRaycastCCD.h */, - FFFD5785b2287fcd5785b228 /* PxRepXSerializer.h */, - FFFD5785b2907fcd5785b290 /* PxRepXSimpleType.h */, - FFFD5785b2f87fcd5785b2f8 /* PxRevoluteJoint.h */, - FFFD5785b3607fcd5785b360 /* PxRigidActorExt.h */, - FFFD5785b3c87fcd5785b3c8 /* PxRigidBodyExt.h */, - FFFD5785b4307fcd5785b430 /* PxSceneQueryExt.h */, - FFFD5785b4987fcd5785b498 /* PxSerialization.h */, - FFFD5785b5007fcd5785b500 /* PxShapeExt.h */, - FFFD5785b5687fcd5785b568 /* PxSimpleFactory.h */, - FFFD5785b5d07fcd5785b5d0 /* PxSmoothNormals.h */, - FFFD5785b6387fcd5785b638 /* PxSphericalJoint.h */, - FFFD5785b6a07fcd5785b6a0 /* PxStringTableExt.h */, - FFFD5785b7087fcd5785b708 /* PxTriangleMeshExt.h */, + FFFD5a9f1e007fb05a9f1e00 /* PxBinaryConverter.h */, + FFFD5a9f1e687fb05a9f1e68 /* PxBroadPhaseExt.h */, + FFFD5a9f1ed07fb05a9f1ed0 /* PxClothFabricCooker.h */, + FFFD5a9f1f387fb05a9f1f38 /* PxClothMeshDesc.h */, + FFFD5a9f1fa07fb05a9f1fa0 /* PxClothMeshQuadifier.h */, + FFFD5a9f20087fb05a9f2008 /* PxClothTetherCooker.h */, + FFFD5a9f20707fb05a9f2070 /* PxCollectionExt.h */, + FFFD5a9f20d87fb05a9f20d8 /* PxConstraintExt.h */, + FFFD5a9f21407fb05a9f2140 /* PxConvexMeshExt.h */, + FFFD5a9f21a87fb05a9f21a8 /* PxD6Joint.h */, + FFFD5a9f22107fb05a9f2210 /* PxDefaultAllocator.h */, + FFFD5a9f22787fb05a9f2278 /* PxDefaultCpuDispatcher.h */, + FFFD5a9f22e07fb05a9f22e0 /* PxDefaultErrorCallback.h */, + FFFD5a9f23487fb05a9f2348 /* PxDefaultSimulationFilterShader.h */, + FFFD5a9f23b07fb05a9f23b0 /* PxDefaultStreams.h */, + FFFD5a9f24187fb05a9f2418 /* PxDistanceJoint.h */, + FFFD5a9f24807fb05a9f2480 /* PxExtensionsAPI.h */, + FFFD5a9f24e87fb05a9f24e8 /* PxFixedJoint.h */, + FFFD5a9f25507fb05a9f2550 /* PxJoint.h */, + FFFD5a9f25b87fb05a9f25b8 /* PxJointLimit.h */, + FFFD5a9f26207fb05a9f2620 /* PxJointRepXSerializer.h */, + FFFD5a9f26887fb05a9f2688 /* PxMassProperties.h */, + FFFD5a9f26f07fb05a9f26f0 /* PxParticleExt.h */, + FFFD5a9f27587fb05a9f2758 /* PxPrismaticJoint.h */, + FFFD5a9f27c07fb05a9f27c0 /* PxRaycastCCD.h */, + FFFD5a9f28287fb05a9f2828 /* PxRepXSerializer.h */, + FFFD5a9f28907fb05a9f2890 /* PxRepXSimpleType.h */, + FFFD5a9f28f87fb05a9f28f8 /* PxRevoluteJoint.h */, + FFFD5a9f29607fb05a9f2960 /* PxRigidActorExt.h */, + FFFD5a9f29c87fb05a9f29c8 /* PxRigidBodyExt.h */, + FFFD5a9f2a307fb05a9f2a30 /* PxSceneQueryExt.h */, + FFFD5a9f2a987fb05a9f2a98 /* PxSerialization.h */, + FFFD5a9f2b007fb05a9f2b00 /* PxShapeExt.h */, + FFFD5a9f2b687fb05a9f2b68 /* PxSimpleFactory.h */, + FFFD5a9f2bd07fb05a9f2bd0 /* PxSmoothNormals.h */, + FFFD5a9f2c387fb05a9f2c38 /* PxSphericalJoint.h */, + FFFD5a9f2ca07fb05a9f2ca0 /* PxStringTableExt.h */, + FFFD5a9f2d087fb05a9f2d08 /* PxTriangleMeshExt.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b98a1a87fcd5b98a1a8 /* src */ = { + FFFB5cb656187fb05cb65618 /* src */ = { isa = PBXGroup; children = ( - FFFD578618007fcd57861800 /* ExtConstraintHelper.h */, - FFFD578618687fcd57861868 /* ExtCpuWorkerThread.h */, - FFFD578618d07fcd578618d0 /* ExtD6Joint.h */, - FFFD578619387fcd57861938 /* ExtDefaultCpuDispatcher.h */, - FFFD578619a07fcd578619a0 /* ExtDistanceJoint.h */, - FFFD57861a087fcd57861a08 /* ExtFixedJoint.h */, - FFFD57861a707fcd57861a70 /* ExtInertiaTensor.h */, - FFFD57861ad87fcd57861ad8 /* ExtJoint.h */, - FFFD57861b407fcd57861b40 /* ExtJointMetaDataExtensions.h */, - FFFD57861ba87fcd57861ba8 /* ExtPlatform.h */, - FFFD57861c107fcd57861c10 /* ExtPrismaticJoint.h */, - FFFD57861c787fcd57861c78 /* ExtPvd.h */, - FFFD57861ce07fcd57861ce0 /* ExtRevoluteJoint.h */, - FFFD57861d487fcd57861d48 /* ExtSerialization.h */, - FFFD57861db07fcd57861db0 /* ExtSharedQueueEntryPool.h */, - FFFD57861e187fcd57861e18 /* ExtSphericalJoint.h */, - FFFD57861e807fcd57861e80 /* ExtTaskQueueHelper.h */, - FFFD57861ee87fcd57861ee8 /* ExtBroadPhase.cpp */, - FFFD57861f507fcd57861f50 /* ExtClothFabricCooker.cpp */, - FFFD57861fb87fcd57861fb8 /* ExtClothGeodesicTetherCooker.cpp */, - FFFD578620207fcd57862020 /* ExtClothMeshQuadifier.cpp */, - FFFD578620887fcd57862088 /* ExtClothSimpleTetherCooker.cpp */, - FFFD578620f07fcd578620f0 /* ExtCollection.cpp */, - FFFD578621587fcd57862158 /* ExtConvexMeshExt.cpp */, - FFFD578621c07fcd578621c0 /* ExtCpuWorkerThread.cpp */, - FFFD578622287fcd57862228 /* ExtD6Joint.cpp */, - FFFD578622907fcd57862290 /* ExtD6JointSolverPrep.cpp */, - FFFD578622f87fcd578622f8 /* ExtDefaultCpuDispatcher.cpp */, - FFFD578623607fcd57862360 /* ExtDefaultErrorCallback.cpp */, - FFFD578623c87fcd578623c8 /* ExtDefaultSimulationFilterShader.cpp */, - FFFD578624307fcd57862430 /* ExtDefaultStreams.cpp */, - FFFD578624987fcd57862498 /* ExtDistanceJoint.cpp */, - FFFD578625007fcd57862500 /* ExtDistanceJointSolverPrep.cpp */, - FFFD578625687fcd57862568 /* ExtExtensions.cpp */, - FFFD578625d07fcd578625d0 /* ExtFixedJoint.cpp */, - FFFD578626387fcd57862638 /* ExtFixedJointSolverPrep.cpp */, - FFFD578626a07fcd578626a0 /* ExtJoint.cpp */, - FFFD578627087fcd57862708 /* ExtMetaData.cpp */, - FFFD578627707fcd57862770 /* ExtParticleExt.cpp */, - FFFD578627d87fcd578627d8 /* ExtPrismaticJoint.cpp */, - FFFD578628407fcd57862840 /* ExtPrismaticJointSolverPrep.cpp */, - FFFD578628a87fcd578628a8 /* ExtPvd.cpp */, - FFFD578629107fcd57862910 /* ExtPxStringTable.cpp */, - FFFD578629787fcd57862978 /* ExtRaycastCCD.cpp */, - FFFD578629e07fcd578629e0 /* ExtRevoluteJoint.cpp */, - FFFD57862a487fcd57862a48 /* ExtRevoluteJointSolverPrep.cpp */, - FFFD57862ab07fcd57862ab0 /* ExtRigidBodyExt.cpp */, - FFFD57862b187fcd57862b18 /* ExtSceneQueryExt.cpp */, - FFFD57862b807fcd57862b80 /* ExtSimpleFactory.cpp */, - FFFD57862be87fcd57862be8 /* ExtSmoothNormals.cpp */, - FFFD57862c507fcd57862c50 /* ExtSphericalJoint.cpp */, - FFFD57862cb87fcd57862cb8 /* ExtSphericalJointSolverPrep.cpp */, - FFFD57862d207fcd57862d20 /* ExtTriangleMeshExt.cpp */, + FFFD5a9f08007fb05a9f0800 /* ExtConstraintHelper.h */, + FFFD5a9f08687fb05a9f0868 /* ExtCpuWorkerThread.h */, + FFFD5a9f08d07fb05a9f08d0 /* ExtD6Joint.h */, + FFFD5a9f09387fb05a9f0938 /* ExtDefaultCpuDispatcher.h */, + FFFD5a9f09a07fb05a9f09a0 /* ExtDistanceJoint.h */, + FFFD5a9f0a087fb05a9f0a08 /* ExtFixedJoint.h */, + FFFD5a9f0a707fb05a9f0a70 /* ExtInertiaTensor.h */, + FFFD5a9f0ad87fb05a9f0ad8 /* ExtJoint.h */, + FFFD5a9f0b407fb05a9f0b40 /* ExtJointMetaDataExtensions.h */, + FFFD5a9f0ba87fb05a9f0ba8 /* ExtPlatform.h */, + FFFD5a9f0c107fb05a9f0c10 /* ExtPrismaticJoint.h */, + FFFD5a9f0c787fb05a9f0c78 /* ExtPvd.h */, + FFFD5a9f0ce07fb05a9f0ce0 /* ExtRevoluteJoint.h */, + FFFD5a9f0d487fb05a9f0d48 /* ExtSerialization.h */, + FFFD5a9f0db07fb05a9f0db0 /* ExtSharedQueueEntryPool.h */, + FFFD5a9f0e187fb05a9f0e18 /* ExtSphericalJoint.h */, + FFFD5a9f0e807fb05a9f0e80 /* ExtTaskQueueHelper.h */, + FFFD5a9f0ee87fb05a9f0ee8 /* ExtBroadPhase.cpp */, + FFFD5a9f0f507fb05a9f0f50 /* ExtClothFabricCooker.cpp */, + FFFD5a9f0fb87fb05a9f0fb8 /* ExtClothGeodesicTetherCooker.cpp */, + FFFD5a9f10207fb05a9f1020 /* ExtClothMeshQuadifier.cpp */, + FFFD5a9f10887fb05a9f1088 /* ExtClothSimpleTetherCooker.cpp */, + FFFD5a9f10f07fb05a9f10f0 /* ExtCollection.cpp */, + FFFD5a9f11587fb05a9f1158 /* ExtConvexMeshExt.cpp */, + FFFD5a9f11c07fb05a9f11c0 /* ExtCpuWorkerThread.cpp */, + FFFD5a9f12287fb05a9f1228 /* ExtD6Joint.cpp */, + FFFD5a9f12907fb05a9f1290 /* ExtD6JointSolverPrep.cpp */, + FFFD5a9f12f87fb05a9f12f8 /* ExtDefaultCpuDispatcher.cpp */, + FFFD5a9f13607fb05a9f1360 /* ExtDefaultErrorCallback.cpp */, + FFFD5a9f13c87fb05a9f13c8 /* ExtDefaultSimulationFilterShader.cpp */, + FFFD5a9f14307fb05a9f1430 /* ExtDefaultStreams.cpp */, + FFFD5a9f14987fb05a9f1498 /* ExtDistanceJoint.cpp */, + FFFD5a9f15007fb05a9f1500 /* ExtDistanceJointSolverPrep.cpp */, + FFFD5a9f15687fb05a9f1568 /* ExtExtensions.cpp */, + FFFD5a9f15d07fb05a9f15d0 /* ExtFixedJoint.cpp */, + FFFD5a9f16387fb05a9f1638 /* ExtFixedJointSolverPrep.cpp */, + FFFD5a9f16a07fb05a9f16a0 /* ExtJoint.cpp */, + FFFD5a9f17087fb05a9f1708 /* ExtMetaData.cpp */, + FFFD5a9f17707fb05a9f1770 /* ExtParticleExt.cpp */, + FFFD5a9f17d87fb05a9f17d8 /* ExtPrismaticJoint.cpp */, + FFFD5a9f18407fb05a9f1840 /* ExtPrismaticJointSolverPrep.cpp */, + FFFD5a9f18a87fb05a9f18a8 /* ExtPvd.cpp */, + FFFD5a9f19107fb05a9f1910 /* ExtPxStringTable.cpp */, + FFFD5a9f19787fb05a9f1978 /* ExtRaycastCCD.cpp */, + FFFD5a9f19e07fb05a9f19e0 /* ExtRevoluteJoint.cpp */, + FFFD5a9f1a487fb05a9f1a48 /* ExtRevoluteJointSolverPrep.cpp */, + FFFD5a9f1ab07fb05a9f1ab0 /* ExtRigidBodyExt.cpp */, + FFFD5a9f1b187fb05a9f1b18 /* ExtSceneQueryExt.cpp */, + FFFD5a9f1b807fb05a9f1b80 /* ExtSimpleFactory.cpp */, + FFFD5a9f1be87fb05a9f1be8 /* ExtSmoothNormals.cpp */, + FFFD5a9f1c507fb05a9f1c50 /* ExtSphericalJoint.cpp */, + FFFD5a9f1cb87fb05a9f1cb8 /* ExtSphericalJointSolverPrep.cpp */, + FFFD5a9f1d207fb05a9f1d20 /* ExtTriangleMeshExt.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b98a1d07fcd5b98a1d0 /* serialization */ = { + FFFB5cb656407fb05cb65640 /* serialization */ = { isa = PBXGroup; children = ( - FFFD5a06cc007fcd5a06cc00 /* SnSerialUtils.h */, - FFFD5a06cc687fcd5a06cc68 /* SnSerializationRegistry.h */, - FFFD5a06ccd07fcd5a06ccd0 /* SnSerialUtils.cpp */, - FFFD5a06cd387fcd5a06cd38 /* SnSerialization.cpp */, - FFFD5a06cda07fcd5a06cda0 /* SnSerializationRegistry.cpp */, - FFFD5a06ce087fcd5a06ce08 /* Binary/SnConvX.h */, - FFFD5a06ce707fcd5a06ce70 /* Binary/SnConvX_Align.h */, - FFFD5a06ced87fcd5a06ced8 /* Binary/SnConvX_Common.h */, - FFFD5a06cf407fcd5a06cf40 /* Binary/SnConvX_MetaData.h */, - FFFD5a06cfa87fcd5a06cfa8 /* Binary/SnConvX_Output.h */, - FFFD5a06d0107fcd5a06d010 /* Binary/SnConvX_Union.h */, - FFFD5a06d0787fcd5a06d078 /* Binary/SnSerializationContext.h */, - FFFD5a06d0e07fcd5a06d0e0 /* Binary/SnBinaryDeserialization.cpp */, - FFFD5a06d1487fcd5a06d148 /* Binary/SnBinarySerialization.cpp */, - FFFD5a06d1b07fcd5a06d1b0 /* Binary/SnConvX.cpp */, - FFFD5a06d2187fcd5a06d218 /* Binary/SnConvX_Align.cpp */, - FFFD5a06d2807fcd5a06d280 /* Binary/SnConvX_Convert.cpp */, - FFFD5a06d2e87fcd5a06d2e8 /* Binary/SnConvX_Error.cpp */, - FFFD5a06d3507fcd5a06d350 /* Binary/SnConvX_MetaData.cpp */, - FFFD5a06d3b87fcd5a06d3b8 /* Binary/SnConvX_Output.cpp */, - FFFD5a06d4207fcd5a06d420 /* Binary/SnConvX_Union.cpp */, - FFFD5a06d4887fcd5a06d488 /* Binary/SnSerializationContext.cpp */, - FFFD5a06d4f07fcd5a06d4f0 /* Xml/SnPxStreamOperators.h */, - FFFD5a06d5587fcd5a06d558 /* Xml/SnRepX1_0Defaults.h */, - FFFD5a06d5c07fcd5a06d5c0 /* Xml/SnRepX3_1Defaults.h */, - FFFD5a06d6287fcd5a06d628 /* Xml/SnRepX3_2Defaults.h */, - FFFD5a06d6907fcd5a06d690 /* Xml/SnRepXCollection.h */, - FFFD5a06d6f87fcd5a06d6f8 /* Xml/SnRepXCoreSerializer.h */, - FFFD5a06d7607fcd5a06d760 /* Xml/SnRepXSerializerImpl.h */, - FFFD5a06d7c87fcd5a06d7c8 /* Xml/SnRepXUpgrader.h */, - FFFD5a06d8307fcd5a06d830 /* Xml/SnSimpleXmlWriter.h */, - FFFD5a06d8987fcd5a06d898 /* Xml/SnXmlDeserializer.h */, - FFFD5a06d9007fcd5a06d900 /* Xml/SnXmlImpl.h */, - FFFD5a06d9687fcd5a06d968 /* Xml/SnXmlMemoryAllocator.h */, - FFFD5a06d9d07fcd5a06d9d0 /* Xml/SnXmlMemoryPool.h */, - FFFD5a06da387fcd5a06da38 /* Xml/SnXmlMemoryPoolStreams.h */, - FFFD5a06daa07fcd5a06daa0 /* Xml/SnXmlReader.h */, - FFFD5a06db087fcd5a06db08 /* Xml/SnXmlSerializer.h */, - FFFD5a06db707fcd5a06db70 /* Xml/SnXmlSimpleXmlWriter.h */, - FFFD5a06dbd87fcd5a06dbd8 /* Xml/SnXmlStringToType.h */, - FFFD5a06dc407fcd5a06dc40 /* Xml/SnXmlVisitorReader.h */, - FFFD5a06dca87fcd5a06dca8 /* Xml/SnXmlVisitorWriter.h */, - FFFD5a06dd107fcd5a06dd10 /* Xml/SnXmlWriter.h */, - FFFD5a06dd787fcd5a06dd78 /* Xml/SnJointRepXSerializer.cpp */, - FFFD5a06dde07fcd5a06dde0 /* Xml/SnRepXCoreSerializer.cpp */, - FFFD5a06de487fcd5a06de48 /* Xml/SnRepXUpgrader.cpp */, - FFFD5a06deb07fcd5a06deb0 /* Xml/SnXmlSerialization.cpp */, - FFFD5a06df187fcd5a06df18 /* File/SnFile.h */, + FFFD5a9f52007fb05a9f5200 /* SnSerialUtils.h */, + FFFD5a9f52687fb05a9f5268 /* SnSerializationRegistry.h */, + FFFD5a9f52d07fb05a9f52d0 /* SnSerialUtils.cpp */, + FFFD5a9f53387fb05a9f5338 /* SnSerialization.cpp */, + FFFD5a9f53a07fb05a9f53a0 /* SnSerializationRegistry.cpp */, + FFFD5a9f54087fb05a9f5408 /* Binary/SnConvX.h */, + FFFD5a9f54707fb05a9f5470 /* Binary/SnConvX_Align.h */, + FFFD5a9f54d87fb05a9f54d8 /* Binary/SnConvX_Common.h */, + FFFD5a9f55407fb05a9f5540 /* Binary/SnConvX_MetaData.h */, + FFFD5a9f55a87fb05a9f55a8 /* Binary/SnConvX_Output.h */, + FFFD5a9f56107fb05a9f5610 /* Binary/SnConvX_Union.h */, + FFFD5a9f56787fb05a9f5678 /* Binary/SnSerializationContext.h */, + FFFD5a9f56e07fb05a9f56e0 /* Binary/SnBinaryDeserialization.cpp */, + FFFD5a9f57487fb05a9f5748 /* Binary/SnBinarySerialization.cpp */, + FFFD5a9f57b07fb05a9f57b0 /* Binary/SnConvX.cpp */, + FFFD5a9f58187fb05a9f5818 /* Binary/SnConvX_Align.cpp */, + FFFD5a9f58807fb05a9f5880 /* Binary/SnConvX_Convert.cpp */, + FFFD5a9f58e87fb05a9f58e8 /* Binary/SnConvX_Error.cpp */, + FFFD5a9f59507fb05a9f5950 /* Binary/SnConvX_MetaData.cpp */, + FFFD5a9f59b87fb05a9f59b8 /* Binary/SnConvX_Output.cpp */, + FFFD5a9f5a207fb05a9f5a20 /* Binary/SnConvX_Union.cpp */, + FFFD5a9f5a887fb05a9f5a88 /* Binary/SnSerializationContext.cpp */, + FFFD5a9f5af07fb05a9f5af0 /* Xml/SnPxStreamOperators.h */, + FFFD5a9f5b587fb05a9f5b58 /* Xml/SnRepX1_0Defaults.h */, + FFFD5a9f5bc07fb05a9f5bc0 /* Xml/SnRepX3_1Defaults.h */, + FFFD5a9f5c287fb05a9f5c28 /* Xml/SnRepX3_2Defaults.h */, + FFFD5a9f5c907fb05a9f5c90 /* Xml/SnRepXCollection.h */, + FFFD5a9f5cf87fb05a9f5cf8 /* Xml/SnRepXCoreSerializer.h */, + FFFD5a9f5d607fb05a9f5d60 /* Xml/SnRepXSerializerImpl.h */, + FFFD5a9f5dc87fb05a9f5dc8 /* Xml/SnRepXUpgrader.h */, + FFFD5a9f5e307fb05a9f5e30 /* Xml/SnSimpleXmlWriter.h */, + FFFD5a9f5e987fb05a9f5e98 /* Xml/SnXmlDeserializer.h */, + FFFD5a9f5f007fb05a9f5f00 /* Xml/SnXmlImpl.h */, + FFFD5a9f5f687fb05a9f5f68 /* Xml/SnXmlMemoryAllocator.h */, + FFFD5a9f5fd07fb05a9f5fd0 /* Xml/SnXmlMemoryPool.h */, + FFFD5a9f60387fb05a9f6038 /* Xml/SnXmlMemoryPoolStreams.h */, + FFFD5a9f60a07fb05a9f60a0 /* Xml/SnXmlReader.h */, + FFFD5a9f61087fb05a9f6108 /* Xml/SnXmlSerializer.h */, + FFFD5a9f61707fb05a9f6170 /* Xml/SnXmlSimpleXmlWriter.h */, + FFFD5a9f61d87fb05a9f61d8 /* Xml/SnXmlStringToType.h */, + FFFD5a9f62407fb05a9f6240 /* Xml/SnXmlVisitorReader.h */, + FFFD5a9f62a87fb05a9f62a8 /* Xml/SnXmlVisitorWriter.h */, + FFFD5a9f63107fb05a9f6310 /* Xml/SnXmlWriter.h */, + FFFD5a9f63787fb05a9f6378 /* Xml/SnJointRepXSerializer.cpp */, + FFFD5a9f63e07fb05a9f63e0 /* Xml/SnRepXCoreSerializer.cpp */, + FFFD5a9f64487fb05a9f6448 /* Xml/SnRepXUpgrader.cpp */, + FFFD5a9f64b07fb05a9f64b0 /* Xml/SnXmlSerialization.cpp */, + FFFD5a9f65187fb05a9f6518 /* File/SnFile.h */, ); name = "serialization"; sourceTree = SOURCE_ROOT; }; - FFFB5b98a1f87fcd5b98a1f8 /* metadata */ = { + FFFB5cb656687fb05cb65668 /* metadata */ = { isa = PBXGroup; children = ( - FFFD570030007fcd57003000 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD570030687fcd57003068 /* core/include/PvdMetaDataExtensions.h */, - FFFD570030d07fcd570030d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD570031387fcd57003138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD570031a07fcd570031a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD570032087fcd57003208 /* core/include/PxMetaDataCompare.h */, - FFFD570032707fcd57003270 /* core/include/PxMetaDataCppPrefix.h */, - FFFD570032d87fcd570032d8 /* core/include/PxMetaDataObjects.h */, - FFFD570033407fcd57003340 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD570033a87fcd570033a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, - FFFD570034107fcd57003410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, - FFFD570034787fcd57003478 /* extensions/include/PxExtensionMetaDataObjects.h */, - FFFD570034e07fcd570034e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, + FFFD5a9f2e007fb05a9f2e00 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD5a9f2e687fb05a9f2e68 /* core/include/PvdMetaDataExtensions.h */, + FFFD5a9f2ed07fb05a9f2ed0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD5a9f2f387fb05a9f2f38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD5a9f2fa07fb05a9f2fa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD5a9f30087fb05a9f3008 /* core/include/PxMetaDataCompare.h */, + FFFD5a9f30707fb05a9f3070 /* core/include/PxMetaDataCppPrefix.h */, + FFFD5a9f30d87fb05a9f30d8 /* core/include/PxMetaDataObjects.h */, + FFFD5a9f31407fb05a9f3140 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD5a9f31a87fb05a9f31a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, + FFFD5a9f32107fb05a9f3210 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, + FFFD5a9f32787fb05a9f3278 /* extensions/include/PxExtensionMetaDataObjects.h */, + FFFD5a9f32e07fb05a9f32e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB5bb033e07fcd5bb033e0 /* SceneQuery */ = { + FFFB5cb732c07fb05cb732c0 /* SceneQuery */ = { isa = PBXGroup; children = ( - FFFB5bb04cb07fcd5bb04cb0 /* src */, - FFFB5bb04cd87fcd5bb04cd8 /* include */, + FFFB5cb763307fb05cb76330 /* src */, + FFFB5cb763587fb05cb76358 /* include */, ); name = "SceneQuery"; sourceTree = "<group>"; }; - FFFB5bb04cb07fcd5bb04cb0 /* src */ = { + FFFB5cb763307fb05cb76330 /* src */ = { isa = PBXGroup; children = ( - FFFD57013c007fcd57013c00 /* SqAABBPruner.cpp */, - FFFD57013c687fcd57013c68 /* SqAABBTree.cpp */, - FFFD57013cd07fcd57013cd0 /* SqAABBTreeUpdateMap.cpp */, - FFFD57013d387fcd57013d38 /* SqBounds.cpp */, - FFFD57013da07fcd57013da0 /* SqBucketPruner.cpp */, - FFFD57013e087fcd57013e08 /* SqExtendedBucketPruner.cpp */, - FFFD57013e707fcd57013e70 /* SqMetaData.cpp */, - FFFD57013ed87fcd57013ed8 /* SqPruningPool.cpp */, - FFFD57013f407fcd57013f40 /* SqPruningStructure.cpp */, - FFFD57013fa87fcd57013fa8 /* SqSceneQueryManager.cpp */, - FFFD570140107fcd57014010 /* SqAABBPruner.h */, - FFFD570140787fcd57014078 /* SqAABBTree.h */, - FFFD570140e07fcd570140e0 /* SqAABBTreeQuery.h */, - FFFD570141487fcd57014148 /* SqAABBTreeUpdateMap.h */, - FFFD570141b07fcd570141b0 /* SqBounds.h */, - FFFD570142187fcd57014218 /* SqBucketPruner.h */, - FFFD570142807fcd57014280 /* SqExtendedBucketPruner.h */, - FFFD570142e87fcd570142e8 /* SqPrunerTestsSIMD.h */, - FFFD570143507fcd57014350 /* SqPruningPool.h */, - FFFD570143b87fcd570143b8 /* SqTypedef.h */, + FFFD5a9f92007fb05a9f9200 /* SqAABBPruner.cpp */, + FFFD5a9f92687fb05a9f9268 /* SqAABBTree.cpp */, + FFFD5a9f92d07fb05a9f92d0 /* SqAABBTreeUpdateMap.cpp */, + FFFD5a9f93387fb05a9f9338 /* SqBounds.cpp */, + FFFD5a9f93a07fb05a9f93a0 /* SqBucketPruner.cpp */, + FFFD5a9f94087fb05a9f9408 /* SqExtendedBucketPruner.cpp */, + FFFD5a9f94707fb05a9f9470 /* SqMetaData.cpp */, + FFFD5a9f94d87fb05a9f94d8 /* SqPruningPool.cpp */, + FFFD5a9f95407fb05a9f9540 /* SqPruningStructure.cpp */, + FFFD5a9f95a87fb05a9f95a8 /* SqSceneQueryManager.cpp */, + FFFD5a9f96107fb05a9f9610 /* SqAABBPruner.h */, + FFFD5a9f96787fb05a9f9678 /* SqAABBTree.h */, + FFFD5a9f96e07fb05a9f96e0 /* SqAABBTreeQuery.h */, + FFFD5a9f97487fb05a9f9748 /* SqAABBTreeUpdateMap.h */, + FFFD5a9f97b07fb05a9f97b0 /* SqBounds.h */, + FFFD5a9f98187fb05a9f9818 /* SqBucketPruner.h */, + FFFD5a9f98807fb05a9f9880 /* SqExtendedBucketPruner.h */, + FFFD5a9f98e87fb05a9f98e8 /* SqPrunerTestsSIMD.h */, + FFFD5a9f99507fb05a9f9950 /* SqPruningPool.h */, + FFFD5a9f99b87fb05a9f99b8 /* SqTypedef.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5bb04cd87fcd5bb04cd8 /* include */ = { + FFFB5cb763587fb05cb76358 /* include */ = { isa = PBXGroup; children = ( - FFFD5bb072f07fcd5bb072f0 /* SqPruner.h */, - FFFD5bb073587fcd5bb07358 /* SqPrunerMergeData.h */, - FFFD5bb073c07fcd5bb073c0 /* SqPruningStructure.h */, - FFFD5bb074287fcd5bb07428 /* SqSceneQueryManager.h */, + FFFD5cb776207fb05cb77620 /* SqPruner.h */, + FFFD5cb776887fb05cb77688 /* SqPrunerMergeData.h */, + FFFD5cb776f07fb05cb776f0 /* SqPruningStructure.h */, + FFFD5cb777587fb05cb77758 /* SqSceneQueryManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5bb075b07fcd5bb075b0 /* SimulationController */ = { + FFFB5cb778e07fb05cb778e0 /* SimulationController */ = { isa = PBXGroup; children = ( - FFFB5bb093a07fcd5bb093a0 /* include */, - FFFB5bb093c87fcd5bb093c8 /* src */, + FFFB5cb7b2e07fb05cb7b2e0 /* include */, + FFFB5cb7b3087fb05cb7b308 /* src */, ); name = "SimulationController"; sourceTree = "<group>"; }; - FFFB5bb093a07fcd5bb093a0 /* include */ = { + FFFB5cb7b2e07fb05cb7b2e0 /* include */ = { isa = PBXGroup; children = ( - FFFD570166007fcd57016600 /* ScActorCore.h */, - FFFD570166687fcd57016668 /* ScArticulationCore.h */, - FFFD570166d07fcd570166d0 /* ScArticulationJointCore.h */, - FFFD570167387fcd57016738 /* ScBodyCore.h */, - FFFD570167a07fcd570167a0 /* ScClothCore.h */, - FFFD570168087fcd57016808 /* ScClothFabricCore.h */, - FFFD570168707fcd57016870 /* ScConstraintCore.h */, - FFFD570168d87fcd570168d8 /* ScIterators.h */, - FFFD570169407fcd57016940 /* ScMaterialCore.h */, - FFFD570169a87fcd570169a8 /* ScParticleSystemCore.h */, - FFFD57016a107fcd57016a10 /* ScPhysics.h */, - FFFD57016a787fcd57016a78 /* ScRigidCore.h */, - FFFD57016ae07fcd57016ae0 /* ScScene.h */, - FFFD57016b487fcd57016b48 /* ScShapeCore.h */, - FFFD57016bb07fcd57016bb0 /* ScStaticCore.h */, + FFFD5a9fbc007fb05a9fbc00 /* ScActorCore.h */, + FFFD5a9fbc687fb05a9fbc68 /* ScArticulationCore.h */, + FFFD5a9fbcd07fb05a9fbcd0 /* ScArticulationJointCore.h */, + FFFD5a9fbd387fb05a9fbd38 /* ScBodyCore.h */, + FFFD5a9fbda07fb05a9fbda0 /* ScClothCore.h */, + FFFD5a9fbe087fb05a9fbe08 /* ScClothFabricCore.h */, + FFFD5a9fbe707fb05a9fbe70 /* ScConstraintCore.h */, + FFFD5a9fbed87fb05a9fbed8 /* ScIterators.h */, + FFFD5a9fbf407fb05a9fbf40 /* ScMaterialCore.h */, + FFFD5a9fbfa87fb05a9fbfa8 /* ScParticleSystemCore.h */, + FFFD5a9fc0107fb05a9fc010 /* ScPhysics.h */, + FFFD5a9fc0787fb05a9fc078 /* ScRigidCore.h */, + FFFD5a9fc0e07fb05a9fc0e0 /* ScScene.h */, + FFFD5a9fc1487fb05a9fc148 /* ScShapeCore.h */, + FFFD5a9fc1b07fb05a9fc1b0 /* ScStaticCore.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5bb093c87fcd5bb093c8 /* src */ = { + FFFB5cb7b3087fb05cb7b308 /* src */ = { isa = PBXGroup; children = ( - FFFD570198007fcd57019800 /* ScActorElementPair.h */, - FFFD570198687fcd57019868 /* ScActorInteraction.h */, - FFFD570198d07fcd570198d0 /* ScActorPair.h */, - FFFD570199387fcd57019938 /* ScActorSim.h */, - FFFD570199a07fcd570199a0 /* ScArticulationJointSim.h */, - FFFD57019a087fcd57019a08 /* ScArticulationSim.h */, - FFFD57019a707fcd57019a70 /* ScBodySim.h */, - FFFD57019ad87fcd57019ad8 /* ScClient.h */, - FFFD57019b407fcd57019b40 /* ScConstraintGroupNode.h */, - FFFD57019ba87fcd57019ba8 /* ScConstraintInteraction.h */, - FFFD57019c107fcd57019c10 /* ScConstraintProjectionManager.h */, - FFFD57019c787fcd57019c78 /* ScConstraintProjectionTree.h */, - FFFD57019ce07fcd57019ce0 /* ScConstraintSim.h */, - FFFD57019d487fcd57019d48 /* ScContactReportBuffer.h */, - FFFD57019db07fcd57019db0 /* ScContactStream.h */, - FFFD57019e187fcd57019e18 /* ScElementInteractionMarker.h */, - FFFD57019e807fcd57019e80 /* ScElementSim.h */, - FFFD57019ee87fcd57019ee8 /* ScElementSimInteraction.h */, - FFFD57019f507fcd57019f50 /* ScInteraction.h */, - FFFD57019fb87fcd57019fb8 /* ScInteractionFlags.h */, - FFFD5701a0207fcd5701a020 /* ScNPhaseCore.h */, - FFFD5701a0887fcd5701a088 /* ScObjectIDTracker.h */, - FFFD5701a0f07fcd5701a0f0 /* ScRbElementInteraction.h */, - FFFD5701a1587fcd5701a158 /* ScRigidSim.h */, - FFFD5701a1c07fcd5701a1c0 /* ScShapeInteraction.h */, - FFFD5701a2287fcd5701a228 /* ScShapeIterator.h */, - FFFD5701a2907fcd5701a290 /* ScShapeSim.h */, - FFFD5701a2f87fcd5701a2f8 /* ScSimStateData.h */, - FFFD5701a3607fcd5701a360 /* ScSimStats.h */, - FFFD5701a3c87fcd5701a3c8 /* ScSimulationController.h */, - FFFD5701a4307fcd5701a430 /* ScSqBoundsManager.h */, - FFFD5701a4987fcd5701a498 /* ScStaticSim.h */, - FFFD5701a5007fcd5701a500 /* ScTriggerInteraction.h */, - FFFD5701a5687fcd5701a568 /* ScTriggerPairs.h */, - FFFD5701a5d07fcd5701a5d0 /* ScActorCore.cpp */, - FFFD5701a6387fcd5701a638 /* ScActorSim.cpp */, - FFFD5701a6a07fcd5701a6a0 /* ScArticulationCore.cpp */, - FFFD5701a7087fcd5701a708 /* ScArticulationJointCore.cpp */, - FFFD5701a7707fcd5701a770 /* ScArticulationJointSim.cpp */, - FFFD5701a7d87fcd5701a7d8 /* ScArticulationSim.cpp */, - FFFD5701a8407fcd5701a840 /* ScBodyCore.cpp */, - FFFD5701a8a87fcd5701a8a8 /* ScBodyCoreKinematic.cpp */, - FFFD5701a9107fcd5701a910 /* ScBodySim.cpp */, - FFFD5701a9787fcd5701a978 /* ScConstraintCore.cpp */, - FFFD5701a9e07fcd5701a9e0 /* ScConstraintGroupNode.cpp */, - FFFD5701aa487fcd5701aa48 /* ScConstraintInteraction.cpp */, - FFFD5701aab07fcd5701aab0 /* ScConstraintProjectionManager.cpp */, - FFFD5701ab187fcd5701ab18 /* ScConstraintProjectionTree.cpp */, - FFFD5701ab807fcd5701ab80 /* ScConstraintSim.cpp */, - FFFD5701abe87fcd5701abe8 /* ScElementInteractionMarker.cpp */, - FFFD5701ac507fcd5701ac50 /* ScElementSim.cpp */, - FFFD5701acb87fcd5701acb8 /* ScInteraction.cpp */, - FFFD5701ad207fcd5701ad20 /* ScIterators.cpp */, - FFFD5701ad887fcd5701ad88 /* ScMaterialCore.cpp */, - FFFD5701adf07fcd5701adf0 /* ScMetaData.cpp */, - FFFD5701ae587fcd5701ae58 /* ScNPhaseCore.cpp */, - FFFD5701aec07fcd5701aec0 /* ScPhysics.cpp */, - FFFD5701af287fcd5701af28 /* ScRigidCore.cpp */, - FFFD5701af907fcd5701af90 /* ScRigidSim.cpp */, - FFFD5701aff87fcd5701aff8 /* ScScene.cpp */, - FFFD5701b0607fcd5701b060 /* ScShapeCore.cpp */, - FFFD5701b0c87fcd5701b0c8 /* ScShapeInteraction.cpp */, - FFFD5701b1307fcd5701b130 /* ScShapeSim.cpp */, - FFFD5701b1987fcd5701b198 /* ScSimStats.cpp */, - FFFD5701b2007fcd5701b200 /* ScSimulationController.cpp */, - FFFD5701b2687fcd5701b268 /* ScSqBoundsManager.cpp */, - FFFD5701b2d07fcd5701b2d0 /* ScStaticCore.cpp */, - FFFD5701b3387fcd5701b338 /* ScStaticSim.cpp */, - FFFD5701b3a07fcd5701b3a0 /* ScTriggerInteraction.cpp */, - FFFD5701b4087fcd5701b408 /* particles/ScParticleBodyInteraction.h */, - FFFD5701b4707fcd5701b470 /* particles/ScParticlePacketShape.h */, - FFFD5701b4d87fcd5701b4d8 /* particles/ScParticleSystemSim.h */, - FFFD5701b5407fcd5701b540 /* particles/ScParticleBodyInteraction.cpp */, - FFFD5701b5a87fcd5701b5a8 /* particles/ScParticlePacketShape.cpp */, - FFFD5701b6107fcd5701b610 /* particles/ScParticleSystemCore.cpp */, - FFFD5701b6787fcd5701b678 /* particles/ScParticleSystemSim.cpp */, - FFFD5701b6e07fcd5701b6e0 /* cloth/ScClothShape.h */, - FFFD5701b7487fcd5701b748 /* cloth/ScClothSim.h */, - FFFD5701b7b07fcd5701b7b0 /* cloth/ScClothCore.cpp */, - FFFD5701b8187fcd5701b818 /* cloth/ScClothFabricCore.cpp */, - FFFD5701b8807fcd5701b880 /* cloth/ScClothShape.cpp */, - FFFD5701b8e87fcd5701b8e8 /* cloth/ScClothSim.cpp */, + FFFD5a9fee007fb05a9fee00 /* ScActorElementPair.h */, + FFFD5a9fee687fb05a9fee68 /* ScActorInteraction.h */, + FFFD5a9feed07fb05a9feed0 /* ScActorPair.h */, + FFFD5a9fef387fb05a9fef38 /* ScActorSim.h */, + FFFD5a9fefa07fb05a9fefa0 /* ScArticulationJointSim.h */, + FFFD5a9ff0087fb05a9ff008 /* ScArticulationSim.h */, + FFFD5a9ff0707fb05a9ff070 /* ScBodySim.h */, + FFFD5a9ff0d87fb05a9ff0d8 /* ScClient.h */, + FFFD5a9ff1407fb05a9ff140 /* ScConstraintGroupNode.h */, + FFFD5a9ff1a87fb05a9ff1a8 /* ScConstraintInteraction.h */, + FFFD5a9ff2107fb05a9ff210 /* ScConstraintProjectionManager.h */, + FFFD5a9ff2787fb05a9ff278 /* ScConstraintProjectionTree.h */, + FFFD5a9ff2e07fb05a9ff2e0 /* ScConstraintSim.h */, + FFFD5a9ff3487fb05a9ff348 /* ScContactReportBuffer.h */, + FFFD5a9ff3b07fb05a9ff3b0 /* ScContactStream.h */, + FFFD5a9ff4187fb05a9ff418 /* ScElementInteractionMarker.h */, + FFFD5a9ff4807fb05a9ff480 /* ScElementSim.h */, + FFFD5a9ff4e87fb05a9ff4e8 /* ScElementSimInteraction.h */, + FFFD5a9ff5507fb05a9ff550 /* ScInteraction.h */, + FFFD5a9ff5b87fb05a9ff5b8 /* ScInteractionFlags.h */, + FFFD5a9ff6207fb05a9ff620 /* ScNPhaseCore.h */, + FFFD5a9ff6887fb05a9ff688 /* ScObjectIDTracker.h */, + FFFD5a9ff6f07fb05a9ff6f0 /* ScRbElementInteraction.h */, + FFFD5a9ff7587fb05a9ff758 /* ScRigidSim.h */, + FFFD5a9ff7c07fb05a9ff7c0 /* ScShapeInteraction.h */, + FFFD5a9ff8287fb05a9ff828 /* ScShapeIterator.h */, + FFFD5a9ff8907fb05a9ff890 /* ScShapeSim.h */, + FFFD5a9ff8f87fb05a9ff8f8 /* ScSimStateData.h */, + FFFD5a9ff9607fb05a9ff960 /* ScSimStats.h */, + FFFD5a9ff9c87fb05a9ff9c8 /* ScSimulationController.h */, + FFFD5a9ffa307fb05a9ffa30 /* ScSqBoundsManager.h */, + FFFD5a9ffa987fb05a9ffa98 /* ScStaticSim.h */, + FFFD5a9ffb007fb05a9ffb00 /* ScTriggerInteraction.h */, + FFFD5a9ffb687fb05a9ffb68 /* ScTriggerPairs.h */, + FFFD5a9ffbd07fb05a9ffbd0 /* ScActorCore.cpp */, + FFFD5a9ffc387fb05a9ffc38 /* ScActorSim.cpp */, + FFFD5a9ffca07fb05a9ffca0 /* ScArticulationCore.cpp */, + FFFD5a9ffd087fb05a9ffd08 /* ScArticulationJointCore.cpp */, + FFFD5a9ffd707fb05a9ffd70 /* ScArticulationJointSim.cpp */, + FFFD5a9ffdd87fb05a9ffdd8 /* ScArticulationSim.cpp */, + FFFD5a9ffe407fb05a9ffe40 /* ScBodyCore.cpp */, + FFFD5a9ffea87fb05a9ffea8 /* ScBodyCoreKinematic.cpp */, + FFFD5a9fff107fb05a9fff10 /* ScBodySim.cpp */, + FFFD5a9fff787fb05a9fff78 /* ScConstraintCore.cpp */, + FFFD5a9fffe07fb05a9fffe0 /* ScConstraintGroupNode.cpp */, + FFFD5aa000487fb05aa00048 /* ScConstraintInteraction.cpp */, + FFFD5aa000b07fb05aa000b0 /* ScConstraintProjectionManager.cpp */, + FFFD5aa001187fb05aa00118 /* ScConstraintProjectionTree.cpp */, + FFFD5aa001807fb05aa00180 /* ScConstraintSim.cpp */, + FFFD5aa001e87fb05aa001e8 /* ScElementInteractionMarker.cpp */, + FFFD5aa002507fb05aa00250 /* ScElementSim.cpp */, + FFFD5aa002b87fb05aa002b8 /* ScInteraction.cpp */, + FFFD5aa003207fb05aa00320 /* ScIterators.cpp */, + FFFD5aa003887fb05aa00388 /* ScMaterialCore.cpp */, + FFFD5aa003f07fb05aa003f0 /* ScMetaData.cpp */, + FFFD5aa004587fb05aa00458 /* ScNPhaseCore.cpp */, + FFFD5aa004c07fb05aa004c0 /* ScPhysics.cpp */, + FFFD5aa005287fb05aa00528 /* ScRigidCore.cpp */, + FFFD5aa005907fb05aa00590 /* ScRigidSim.cpp */, + FFFD5aa005f87fb05aa005f8 /* ScScene.cpp */, + FFFD5aa006607fb05aa00660 /* ScShapeCore.cpp */, + FFFD5aa006c87fb05aa006c8 /* ScShapeInteraction.cpp */, + FFFD5aa007307fb05aa00730 /* ScShapeSim.cpp */, + FFFD5aa007987fb05aa00798 /* ScSimStats.cpp */, + FFFD5aa008007fb05aa00800 /* ScSimulationController.cpp */, + FFFD5aa008687fb05aa00868 /* ScSqBoundsManager.cpp */, + FFFD5aa008d07fb05aa008d0 /* ScStaticCore.cpp */, + FFFD5aa009387fb05aa00938 /* ScStaticSim.cpp */, + FFFD5aa009a07fb05aa009a0 /* ScTriggerInteraction.cpp */, + FFFD5aa00a087fb05aa00a08 /* particles/ScParticleBodyInteraction.h */, + FFFD5aa00a707fb05aa00a70 /* particles/ScParticlePacketShape.h */, + FFFD5aa00ad87fb05aa00ad8 /* particles/ScParticleSystemSim.h */, + FFFD5aa00b407fb05aa00b40 /* particles/ScParticleBodyInteraction.cpp */, + FFFD5aa00ba87fb05aa00ba8 /* particles/ScParticlePacketShape.cpp */, + FFFD5aa00c107fb05aa00c10 /* particles/ScParticleSystemCore.cpp */, + FFFD5aa00c787fb05aa00c78 /* particles/ScParticleSystemSim.cpp */, + FFFD5aa00ce07fb05aa00ce0 /* cloth/ScClothShape.h */, + FFFD5aa00d487fb05aa00d48 /* cloth/ScClothSim.h */, + FFFD5aa00db07fb05aa00db0 /* cloth/ScClothCore.cpp */, + FFFD5aa00e187fb05aa00e18 /* cloth/ScClothFabricCore.cpp */, + FFFD5aa00e807fb05aa00e80 /* cloth/ScClothShape.cpp */, + FFFD5aa00ee87fb05aa00ee8 /* cloth/ScClothSim.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b98d5507fcd5b98d550 /* PhysXCooking */ = { + FFFB5cb7c7007fb05cb7c700 /* PhysXCooking */ = { isa = PBXGroup; children = ( - FFFB5bb116207fcd5bb11620 /* include */, - FFFB5bb116487fcd5bb11648 /* src */, + FFFB5cb801207fb05cb80120 /* include */, + FFFB5cb801487fb05cb80148 /* src */, ); name = "PhysXCooking"; sourceTree = "<group>"; }; - FFFB5bb116207fcd5bb11620 /* include */ = { + FFFB5cb801207fb05cb80120 /* include */ = { isa = PBXGroup; children = ( - FFFD5bb0c3207fcd5bb0c320 /* PxBVH33MidphaseDesc.h */, - FFFD5bb0c3887fcd5bb0c388 /* PxBVH34MidphaseDesc.h */, - FFFD5bb0c3f07fcd5bb0c3f0 /* PxConvexMeshDesc.h */, - FFFD5bb0c4587fcd5bb0c458 /* PxCooking.h */, - FFFD5bb0c4c07fcd5bb0c4c0 /* PxMidphaseDesc.h */, - FFFD5bb0c5287fcd5bb0c528 /* PxTriangleMeshDesc.h */, - FFFD5bb0c5907fcd5bb0c590 /* Pxc.h */, + FFFD5cb85f007fb05cb85f00 /* PxBVH33MidphaseDesc.h */, + FFFD5cb85f687fb05cb85f68 /* PxBVH34MidphaseDesc.h */, + FFFD5cb85fd07fb05cb85fd0 /* PxConvexMeshDesc.h */, + FFFD5cb860387fb05cb86038 /* PxCooking.h */, + FFFD5cb860a07fb05cb860a0 /* PxMidphaseDesc.h */, + FFFD5cb861087fb05cb86108 /* PxTriangleMeshDesc.h */, + FFFD5cb861707fb05cb86170 /* Pxc.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5bb116487fcd5bb11648 /* src */ = { + FFFB5cb801487fb05cb80148 /* src */ = { isa = PBXGroup; children = ( - FFFD588190007fcd58819000 /* Adjacencies.cpp */, - FFFD588190687fcd58819068 /* Cooking.cpp */, - FFFD588190d07fcd588190d0 /* CookingUtils.cpp */, - FFFD588191387fcd58819138 /* EdgeList.cpp */, - FFFD588191a07fcd588191a0 /* MeshCleaner.cpp */, - FFFD588192087fcd58819208 /* Quantizer.cpp */, - FFFD588192707fcd58819270 /* Adjacencies.h */, - FFFD588192d87fcd588192d8 /* Cooking.h */, - FFFD588193407fcd58819340 /* CookingUtils.h */, - FFFD588193a87fcd588193a8 /* EdgeList.h */, - FFFD588194107fcd58819410 /* MeshCleaner.h */, - FFFD588194787fcd58819478 /* Quantizer.h */, - FFFD588194e07fcd588194e0 /* mesh/GrbTriangleMeshCooking.cpp */, - FFFD588195487fcd58819548 /* mesh/HeightFieldCooking.cpp */, - FFFD588195b07fcd588195b0 /* mesh/RTreeCooking.cpp */, - FFFD588196187fcd58819618 /* mesh/TriangleMeshBuilder.cpp */, - FFFD588196807fcd58819680 /* mesh/GrbTriangleMeshCooking.h */, - FFFD588196e87fcd588196e8 /* mesh/HeightFieldCooking.h */, - FFFD588197507fcd58819750 /* mesh/QuickSelect.h */, - FFFD588197b87fcd588197b8 /* mesh/RTreeCooking.h */, - FFFD588198207fcd58819820 /* mesh/TriangleMeshBuilder.h */, - FFFD588198887fcd58819888 /* convex/BigConvexDataBuilder.cpp */, - FFFD588198f07fcd588198f0 /* convex/ConvexHullBuilder.cpp */, - FFFD588199587fcd58819958 /* convex/ConvexHullLib.cpp */, - FFFD588199c07fcd588199c0 /* convex/ConvexHullUtils.cpp */, - FFFD58819a287fcd58819a28 /* convex/ConvexMeshBuilder.cpp */, - FFFD58819a907fcd58819a90 /* convex/ConvexPolygonsBuilder.cpp */, - FFFD58819af87fcd58819af8 /* convex/InflationConvexHullLib.cpp */, - FFFD58819b607fcd58819b60 /* convex/QuickHullConvexHullLib.cpp */, - FFFD58819bc87fcd58819bc8 /* convex/VolumeIntegration.cpp */, - FFFD58819c307fcd58819c30 /* convex/BigConvexDataBuilder.h */, - FFFD58819c987fcd58819c98 /* convex/ConvexHullBuilder.h */, - FFFD58819d007fcd58819d00 /* convex/ConvexHullLib.h */, - FFFD58819d687fcd58819d68 /* convex/ConvexHullUtils.h */, - FFFD58819dd07fcd58819dd0 /* convex/ConvexMeshBuilder.h */, - FFFD58819e387fcd58819e38 /* convex/ConvexPolygonsBuilder.h */, - FFFD58819ea07fcd58819ea0 /* convex/InflationConvexHullLib.h */, - FFFD58819f087fcd58819f08 /* convex/QuickHullConvexHullLib.h */, - FFFD58819f707fcd58819f70 /* convex/VolumeIntegration.h */, + FFFD5aa030007fb05aa03000 /* Adjacencies.cpp */, + FFFD5aa030687fb05aa03068 /* Cooking.cpp */, + FFFD5aa030d07fb05aa030d0 /* CookingUtils.cpp */, + FFFD5aa031387fb05aa03138 /* EdgeList.cpp */, + FFFD5aa031a07fb05aa031a0 /* MeshCleaner.cpp */, + FFFD5aa032087fb05aa03208 /* Quantizer.cpp */, + FFFD5aa032707fb05aa03270 /* Adjacencies.h */, + FFFD5aa032d87fb05aa032d8 /* Cooking.h */, + FFFD5aa033407fb05aa03340 /* CookingUtils.h */, + FFFD5aa033a87fb05aa033a8 /* EdgeList.h */, + FFFD5aa034107fb05aa03410 /* MeshCleaner.h */, + FFFD5aa034787fb05aa03478 /* Quantizer.h */, + FFFD5aa034e07fb05aa034e0 /* mesh/GrbTriangleMeshCooking.cpp */, + FFFD5aa035487fb05aa03548 /* mesh/HeightFieldCooking.cpp */, + FFFD5aa035b07fb05aa035b0 /* mesh/RTreeCooking.cpp */, + FFFD5aa036187fb05aa03618 /* mesh/TriangleMeshBuilder.cpp */, + FFFD5aa036807fb05aa03680 /* mesh/GrbTriangleMeshCooking.h */, + FFFD5aa036e87fb05aa036e8 /* mesh/HeightFieldCooking.h */, + FFFD5aa037507fb05aa03750 /* mesh/QuickSelect.h */, + FFFD5aa037b87fb05aa037b8 /* mesh/RTreeCooking.h */, + FFFD5aa038207fb05aa03820 /* mesh/TriangleMeshBuilder.h */, + FFFD5aa038887fb05aa03888 /* convex/BigConvexDataBuilder.cpp */, + FFFD5aa038f07fb05aa038f0 /* convex/ConvexHullBuilder.cpp */, + FFFD5aa039587fb05aa03958 /* convex/ConvexHullLib.cpp */, + FFFD5aa039c07fb05aa039c0 /* convex/ConvexHullUtils.cpp */, + FFFD5aa03a287fb05aa03a28 /* convex/ConvexMeshBuilder.cpp */, + FFFD5aa03a907fb05aa03a90 /* convex/ConvexPolygonsBuilder.cpp */, + FFFD5aa03af87fb05aa03af8 /* convex/InflationConvexHullLib.cpp */, + FFFD5aa03b607fb05aa03b60 /* convex/QuickHullConvexHullLib.cpp */, + FFFD5aa03bc87fb05aa03bc8 /* convex/VolumeIntegration.cpp */, + FFFD5aa03c307fb05aa03c30 /* convex/BigConvexDataBuilder.h */, + FFFD5aa03c987fb05aa03c98 /* convex/ConvexHullBuilder.h */, + FFFD5aa03d007fb05aa03d00 /* convex/ConvexHullLib.h */, + FFFD5aa03d687fb05aa03d68 /* convex/ConvexHullUtils.h */, + FFFD5aa03dd07fb05aa03dd0 /* convex/ConvexMeshBuilder.h */, + FFFD5aa03e387fb05aa03e38 /* convex/ConvexPolygonsBuilder.h */, + FFFD5aa03ea07fb05aa03ea0 /* convex/InflationConvexHullLib.h */, + FFFD5aa03f087fb05aa03f08 /* convex/QuickHullConvexHullLib.h */, + FFFD5aa03f707fb05aa03f70 /* convex/VolumeIntegration.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB56e143207fcd56e14320 /* PhysXCommon */ = { + FFFB5b2fb4e07fb05b2fb4e0 /* PhysXCommon */ = { isa = PBXGroup; children = ( - FFFB580aab407fcd580aab40 /* include */, - FFFB580aab687fcd580aab68 /* common */, - FFFB580aab907fcd580aab90 /* geomutils */, + FFFB5b0981607fb05b098160 /* include */, + FFFB5b0981887fb05b098188 /* common */, + FFFB5b0981b07fb05b0981b0 /* geomutils */, ); name = "PhysXCommon"; sourceTree = "<group>"; }; - FFFB580aab407fcd580aab40 /* include */ = { + FFFB5b0981607fb05b098160 /* include */ = { isa = PBXGroup; children = ( - FFFD5b03ae007fcd5b03ae00 /* common/PxBase.h */, - FFFD5b03ae687fcd5b03ae68 /* common/PxCollection.h */, - FFFD5b03aed07fcd5b03aed0 /* common/PxCoreUtilityTypes.h */, - FFFD5b03af387fcd5b03af38 /* common/PxMetaData.h */, - FFFD5b03afa07fcd5b03afa0 /* common/PxMetaDataFlags.h */, - FFFD5b03b0087fcd5b03b008 /* common/PxPhysXCommonConfig.h */, - FFFD5b03b0707fcd5b03b070 /* common/PxPhysicsInsertionCallback.h */, - FFFD5b03b0d87fcd5b03b0d8 /* common/PxRenderBuffer.h */, - FFFD5b03b1407fcd5b03b140 /* common/PxSerialFramework.h */, - FFFD5b03b1a87fcd5b03b1a8 /* common/PxSerializer.h */, - FFFD5b03b2107fcd5b03b210 /* common/PxStringTable.h */, - FFFD5b03b2787fcd5b03b278 /* common/PxTolerancesScale.h */, - FFFD5b03b2e07fcd5b03b2e0 /* common/PxTypeInfo.h */, - FFFD5b03b3487fcd5b03b348 /* geometry/PxBoxGeometry.h */, - FFFD5b03b3b07fcd5b03b3b0 /* geometry/PxCapsuleGeometry.h */, - FFFD5b03b4187fcd5b03b418 /* geometry/PxConvexMesh.h */, - FFFD5b03b4807fcd5b03b480 /* geometry/PxConvexMeshGeometry.h */, - FFFD5b03b4e87fcd5b03b4e8 /* geometry/PxGeometry.h */, - FFFD5b03b5507fcd5b03b550 /* geometry/PxGeometryHelpers.h */, - FFFD5b03b5b87fcd5b03b5b8 /* geometry/PxGeometryQuery.h */, - FFFD5b03b6207fcd5b03b620 /* geometry/PxHeightField.h */, - FFFD5b03b6887fcd5b03b688 /* geometry/PxHeightFieldDesc.h */, - FFFD5b03b6f07fcd5b03b6f0 /* geometry/PxHeightFieldFlag.h */, - FFFD5b03b7587fcd5b03b758 /* geometry/PxHeightFieldGeometry.h */, - FFFD5b03b7c07fcd5b03b7c0 /* geometry/PxHeightFieldSample.h */, - FFFD5b03b8287fcd5b03b828 /* geometry/PxMeshQuery.h */, - FFFD5b03b8907fcd5b03b890 /* geometry/PxMeshScale.h */, - FFFD5b03b8f87fcd5b03b8f8 /* geometry/PxPlaneGeometry.h */, - FFFD5b03b9607fcd5b03b960 /* geometry/PxSimpleTriangleMesh.h */, - FFFD5b03b9c87fcd5b03b9c8 /* geometry/PxSphereGeometry.h */, - FFFD5b03ba307fcd5b03ba30 /* geometry/PxTriangle.h */, - FFFD5b03ba987fcd5b03ba98 /* geometry/PxTriangleMesh.h */, - FFFD5b03bb007fcd5b03bb00 /* geometry/PxTriangleMeshGeometry.h */, + FFFD5b80ec007fb05b80ec00 /* common/PxBase.h */, + FFFD5b80ec687fb05b80ec68 /* common/PxCollection.h */, + FFFD5b80ecd07fb05b80ecd0 /* common/PxCoreUtilityTypes.h */, + FFFD5b80ed387fb05b80ed38 /* common/PxMetaData.h */, + FFFD5b80eda07fb05b80eda0 /* common/PxMetaDataFlags.h */, + FFFD5b80ee087fb05b80ee08 /* common/PxPhysXCommonConfig.h */, + FFFD5b80ee707fb05b80ee70 /* common/PxPhysicsInsertionCallback.h */, + FFFD5b80eed87fb05b80eed8 /* common/PxRenderBuffer.h */, + FFFD5b80ef407fb05b80ef40 /* common/PxSerialFramework.h */, + FFFD5b80efa87fb05b80efa8 /* common/PxSerializer.h */, + FFFD5b80f0107fb05b80f010 /* common/PxStringTable.h */, + FFFD5b80f0787fb05b80f078 /* common/PxTolerancesScale.h */, + FFFD5b80f0e07fb05b80f0e0 /* common/PxTypeInfo.h */, + FFFD5b80f1487fb05b80f148 /* geometry/PxBoxGeometry.h */, + FFFD5b80f1b07fb05b80f1b0 /* geometry/PxCapsuleGeometry.h */, + FFFD5b80f2187fb05b80f218 /* geometry/PxConvexMesh.h */, + FFFD5b80f2807fb05b80f280 /* geometry/PxConvexMeshGeometry.h */, + FFFD5b80f2e87fb05b80f2e8 /* geometry/PxGeometry.h */, + FFFD5b80f3507fb05b80f350 /* geometry/PxGeometryHelpers.h */, + FFFD5b80f3b87fb05b80f3b8 /* geometry/PxGeometryQuery.h */, + FFFD5b80f4207fb05b80f420 /* geometry/PxHeightField.h */, + FFFD5b80f4887fb05b80f488 /* geometry/PxHeightFieldDesc.h */, + FFFD5b80f4f07fb05b80f4f0 /* geometry/PxHeightFieldFlag.h */, + FFFD5b80f5587fb05b80f558 /* geometry/PxHeightFieldGeometry.h */, + FFFD5b80f5c07fb05b80f5c0 /* geometry/PxHeightFieldSample.h */, + FFFD5b80f6287fb05b80f628 /* geometry/PxMeshQuery.h */, + FFFD5b80f6907fb05b80f690 /* geometry/PxMeshScale.h */, + FFFD5b80f6f87fb05b80f6f8 /* geometry/PxPlaneGeometry.h */, + FFFD5b80f7607fb05b80f760 /* geometry/PxSimpleTriangleMesh.h */, + FFFD5b80f7c87fb05b80f7c8 /* geometry/PxSphereGeometry.h */, + FFFD5b80f8307fb05b80f830 /* geometry/PxTriangle.h */, + FFFD5b80f8987fb05b80f898 /* geometry/PxTriangleMesh.h */, + FFFD5b80f9007fb05b80f900 /* geometry/PxTriangleMeshGeometry.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB580aab687fcd580aab68 /* common */ = { + FFFB5b0981887fb05b098188 /* common */ = { isa = PBXGroup; children = ( - FFFD5880ec007fcd5880ec00 /* src/CmBoxPruning.cpp */, - FFFD5880ec687fcd5880ec68 /* src/CmCollection.cpp */, - FFFD5880ecd07fcd5880ecd0 /* src/CmMathUtils.cpp */, - FFFD5880ed387fcd5880ed38 /* src/CmPtrTable.cpp */, - FFFD5880eda07fcd5880eda0 /* src/CmRadixSort.cpp */, - FFFD5880ee087fcd5880ee08 /* src/CmRadixSortBuffered.cpp */, - FFFD5880ee707fcd5880ee70 /* src/CmRenderOutput.cpp */, - FFFD5880eed87fcd5880eed8 /* src/CmVisualization.cpp */, - FFFD5880ef407fcd5880ef40 /* src/CmBitMap.h */, - FFFD5880efa87fcd5880efa8 /* src/CmBoxPruning.h */, - FFFD5880f0107fcd5880f010 /* src/CmCollection.h */, - FFFD5880f0787fcd5880f078 /* src/CmConeLimitHelper.h */, - FFFD5880f0e07fcd5880f0e0 /* src/CmFlushPool.h */, - FFFD5880f1487fcd5880f148 /* src/CmIDPool.h */, - FFFD5880f1b07fcd5880f1b0 /* src/CmIO.h */, - FFFD5880f2187fcd5880f218 /* src/CmMatrix34.h */, - FFFD5880f2807fcd5880f280 /* src/CmPhysXCommon.h */, - FFFD5880f2e87fcd5880f2e8 /* src/CmPool.h */, - FFFD5880f3507fcd5880f350 /* src/CmPreallocatingPool.h */, - FFFD5880f3b87fcd5880f3b8 /* src/CmPriorityQueue.h */, - FFFD5880f4207fcd5880f420 /* src/CmPtrTable.h */, - FFFD5880f4887fcd5880f488 /* src/CmQueue.h */, - FFFD5880f4f07fcd5880f4f0 /* src/CmRadixSort.h */, - FFFD5880f5587fcd5880f558 /* src/CmRadixSortBuffered.h */, - FFFD5880f5c07fcd5880f5c0 /* src/CmReaderWriterLock.h */, - FFFD5880f6287fcd5880f628 /* src/CmRefCountable.h */, - FFFD5880f6907fcd5880f690 /* src/CmRenderBuffer.h */, - FFFD5880f6f87fcd5880f6f8 /* src/CmRenderOutput.h */, - FFFD5880f7607fcd5880f760 /* src/CmScaling.h */, - FFFD5880f7c87fcd5880f7c8 /* src/CmSpatialVector.h */, - FFFD5880f8307fcd5880f830 /* src/CmTask.h */, - FFFD5880f8987fcd5880f898 /* src/CmTaskPool.h */, - FFFD5880f9007fcd5880f900 /* src/CmTmpMem.h */, - FFFD5880f9687fcd5880f968 /* src/CmTransformUtils.h */, - FFFD5880f9d07fcd5880f9d0 /* src/CmUtils.h */, - FFFD5880fa387fcd5880fa38 /* src/CmVisualization.h */, + FFFD5a9a22007fb05a9a2200 /* src/CmBoxPruning.cpp */, + FFFD5a9a22687fb05a9a2268 /* src/CmCollection.cpp */, + FFFD5a9a22d07fb05a9a22d0 /* src/CmMathUtils.cpp */, + FFFD5a9a23387fb05a9a2338 /* src/CmPtrTable.cpp */, + FFFD5a9a23a07fb05a9a23a0 /* src/CmRadixSort.cpp */, + FFFD5a9a24087fb05a9a2408 /* src/CmRadixSortBuffered.cpp */, + FFFD5a9a24707fb05a9a2470 /* src/CmRenderOutput.cpp */, + FFFD5a9a24d87fb05a9a24d8 /* src/CmVisualization.cpp */, + FFFD5a9a25407fb05a9a2540 /* src/CmBitMap.h */, + FFFD5a9a25a87fb05a9a25a8 /* src/CmBoxPruning.h */, + FFFD5a9a26107fb05a9a2610 /* src/CmCollection.h */, + FFFD5a9a26787fb05a9a2678 /* src/CmConeLimitHelper.h */, + FFFD5a9a26e07fb05a9a26e0 /* src/CmFlushPool.h */, + FFFD5a9a27487fb05a9a2748 /* src/CmIDPool.h */, + FFFD5a9a27b07fb05a9a27b0 /* src/CmIO.h */, + FFFD5a9a28187fb05a9a2818 /* src/CmMatrix34.h */, + FFFD5a9a28807fb05a9a2880 /* src/CmPhysXCommon.h */, + FFFD5a9a28e87fb05a9a28e8 /* src/CmPool.h */, + FFFD5a9a29507fb05a9a2950 /* src/CmPreallocatingPool.h */, + FFFD5a9a29b87fb05a9a29b8 /* src/CmPriorityQueue.h */, + FFFD5a9a2a207fb05a9a2a20 /* src/CmPtrTable.h */, + FFFD5a9a2a887fb05a9a2a88 /* src/CmQueue.h */, + FFFD5a9a2af07fb05a9a2af0 /* src/CmRadixSort.h */, + FFFD5a9a2b587fb05a9a2b58 /* src/CmRadixSortBuffered.h */, + FFFD5a9a2bc07fb05a9a2bc0 /* src/CmReaderWriterLock.h */, + FFFD5a9a2c287fb05a9a2c28 /* src/CmRefCountable.h */, + FFFD5a9a2c907fb05a9a2c90 /* src/CmRenderBuffer.h */, + FFFD5a9a2cf87fb05a9a2cf8 /* src/CmRenderOutput.h */, + FFFD5a9a2d607fb05a9a2d60 /* src/CmScaling.h */, + FFFD5a9a2dc87fb05a9a2dc8 /* src/CmSpatialVector.h */, + FFFD5a9a2e307fb05a9a2e30 /* src/CmTask.h */, + FFFD5a9a2e987fb05a9a2e98 /* src/CmTaskPool.h */, + FFFD5a9a2f007fb05a9a2f00 /* src/CmTmpMem.h */, + FFFD5a9a2f687fb05a9a2f68 /* src/CmTransformUtils.h */, + FFFD5a9a2fd07fb05a9a2fd0 /* src/CmUtils.h */, + FFFD5a9a30387fb05a9a3038 /* src/CmVisualization.h */, ); name = "common"; sourceTree = SOURCE_ROOT; }; - FFFB580aab907fcd580aab90 /* geomutils */ = { + FFFB5b0981b07fb05b0981b0 /* geomutils */ = { isa = PBXGroup; children = ( - FFFD5b0448007fcd5b044800 /* headers/GuAxes.h */, - FFFD5b0448687fcd5b044868 /* headers/GuBox.h */, - FFFD5b0448d07fcd5b0448d0 /* headers/GuDistanceSegmentBox.h */, - FFFD5b0449387fcd5b044938 /* headers/GuDistanceSegmentSegment.h */, - FFFD5b0449a07fcd5b0449a0 /* headers/GuIntersectionBoxBox.h */, - FFFD5b044a087fcd5b044a08 /* headers/GuIntersectionTriangleBox.h */, - FFFD5b044a707fcd5b044a70 /* headers/GuRaycastTests.h */, - FFFD5b044ad87fcd5b044ad8 /* headers/GuSIMDHelpers.h */, - FFFD5b044b407fcd5b044b40 /* headers/GuSegment.h */, - FFFD5b044ba87fcd5b044ba8 /* ../../Include/GeomUtils */, - FFFD5b044c107fcd5b044c10 /* src/GuBounds.h */, - FFFD5b044c787fcd5b044c78 /* src/GuCapsule.h */, - FFFD5b044ce07fcd5b044ce0 /* src/GuCenterExtents.h */, - FFFD5b044d487fcd5b044d48 /* src/GuGeometryUnion.h */, - FFFD5b044db07fcd5b044db0 /* src/GuInternal.h */, - FFFD5b044e187fcd5b044e18 /* src/GuMTD.h */, - FFFD5b044e807fcd5b044e80 /* src/GuMeshFactory.h */, - FFFD5b044ee87fcd5b044ee8 /* src/GuOverlapTests.h */, - FFFD5b044f507fcd5b044f50 /* src/GuSerialize.h */, - FFFD5b044fb87fcd5b044fb8 /* src/GuSphere.h */, - FFFD5b0450207fcd5b045020 /* src/GuSweepMTD.h */, - FFFD5b0450887fcd5b045088 /* src/GuSweepSharedTests.h */, - FFFD5b0450f07fcd5b0450f0 /* src/GuSweepTests.h */, - FFFD5b0451587fcd5b045158 /* src/contact/GuContactMethodImpl.h */, - FFFD5b0451c07fcd5b0451c0 /* src/contact/GuContactPolygonPolygon.h */, - FFFD5b0452287fcd5b045228 /* src/contact/GuFeatureCode.h */, - FFFD5b0452907fcd5b045290 /* src/contact/GuLegacyTraceLineCallback.h */, - FFFD5b0452f87fcd5b0452f8 /* src/common/GuBarycentricCoordinates.h */, - FFFD5b0453607fcd5b045360 /* src/common/GuBoxConversion.h */, - FFFD5b0453c87fcd5b0453c8 /* src/common/GuEdgeCache.h */, - FFFD5b0454307fcd5b045430 /* src/common/GuEdgeListData.h */, - FFFD5b0454987fcd5b045498 /* src/common/GuSeparatingAxes.h */, - FFFD5b0455007fcd5b045500 /* src/convex/GuBigConvexData.h */, - FFFD5b0455687fcd5b045568 /* src/convex/GuBigConvexData2.h */, - FFFD5b0455d07fcd5b0455d0 /* src/convex/GuConvexEdgeFlags.h */, - FFFD5b0456387fcd5b045638 /* src/convex/GuConvexHelper.h */, - FFFD5b0456a07fcd5b0456a0 /* src/convex/GuConvexMesh.h */, - FFFD5b0457087fcd5b045708 /* src/convex/GuConvexMeshData.h */, - FFFD5b0457707fcd5b045770 /* src/convex/GuConvexSupportTable.h */, - FFFD5b0457d87fcd5b0457d8 /* src/convex/GuConvexUtilsInternal.h */, - FFFD5b0458407fcd5b045840 /* src/convex/GuCubeIndex.h */, - FFFD5b0458a87fcd5b0458a8 /* src/convex/GuHillClimbing.h */, - FFFD5b0459107fcd5b045910 /* src/convex/GuShapeConvex.h */, - FFFD5b0459787fcd5b045978 /* src/distance/GuDistancePointBox.h */, - FFFD5b0459e07fcd5b0459e0 /* src/distance/GuDistancePointSegment.h */, - FFFD5b045a487fcd5b045a48 /* src/distance/GuDistancePointTriangle.h */, - FFFD5b045ab07fcd5b045ab0 /* src/distance/GuDistancePointTriangleSIMD.h */, - FFFD5b045b187fcd5b045b18 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, - FFFD5b045b807fcd5b045b80 /* src/distance/GuDistanceSegmentTriangle.h */, - FFFD5b045be87fcd5b045be8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, - FFFD5b045c507fcd5b045c50 /* src/sweep/GuSweepBoxBox.h */, - FFFD5b045cb87fcd5b045cb8 /* src/sweep/GuSweepBoxSphere.h */, - FFFD5b045d207fcd5b045d20 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, - FFFD5b045d887fcd5b045d88 /* src/sweep/GuSweepBoxTriangle_SAT.h */, - FFFD5b045df07fcd5b045df0 /* src/sweep/GuSweepCapsuleBox.h */, - FFFD5b045e587fcd5b045e58 /* src/sweep/GuSweepCapsuleCapsule.h */, - FFFD5b045ec07fcd5b045ec0 /* src/sweep/GuSweepCapsuleTriangle.h */, - FFFD5b045f287fcd5b045f28 /* src/sweep/GuSweepSphereCapsule.h */, - FFFD5b045f907fcd5b045f90 /* src/sweep/GuSweepSphereSphere.h */, - FFFD5b045ff87fcd5b045ff8 /* src/sweep/GuSweepSphereTriangle.h */, - FFFD5b0460607fcd5b046060 /* src/sweep/GuSweepTriangleUtils.h */, - FFFD5b0460c87fcd5b0460c8 /* src/gjk/GuEPA.h */, - FFFD5b0461307fcd5b046130 /* src/gjk/GuEPAFacet.h */, - FFFD5b0461987fcd5b046198 /* src/gjk/GuGJK.h */, - FFFD5b0462007fcd5b046200 /* src/gjk/GuGJKPenetration.h */, - FFFD5b0462687fcd5b046268 /* src/gjk/GuGJKRaycast.h */, - FFFD5b0462d07fcd5b0462d0 /* src/gjk/GuGJKSimplex.h */, - FFFD5b0463387fcd5b046338 /* src/gjk/GuGJKTest.h */, - FFFD5b0463a07fcd5b0463a0 /* src/gjk/GuGJKType.h */, - FFFD5b0464087fcd5b046408 /* src/gjk/GuGJKUtil.h */, - FFFD5b0464707fcd5b046470 /* src/gjk/GuVecBox.h */, - FFFD5b0464d87fcd5b0464d8 /* src/gjk/GuVecCapsule.h */, - FFFD5b0465407fcd5b046540 /* src/gjk/GuVecConvex.h */, - FFFD5b0465a87fcd5b0465a8 /* src/gjk/GuVecConvexHull.h */, - FFFD5b0466107fcd5b046610 /* src/gjk/GuVecConvexHullNoScale.h */, - FFFD5b0466787fcd5b046678 /* src/gjk/GuVecPlane.h */, - FFFD5b0466e07fcd5b0466e0 /* src/gjk/GuVecShrunkBox.h */, - FFFD5b0467487fcd5b046748 /* src/gjk/GuVecShrunkConvexHull.h */, - FFFD5b0467b07fcd5b0467b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, - FFFD5b0468187fcd5b046818 /* src/gjk/GuVecSphere.h */, - FFFD5b0468807fcd5b046880 /* src/gjk/GuVecTriangle.h */, - FFFD5b0468e87fcd5b0468e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, - FFFD5b0469507fcd5b046950 /* src/intersection/GuIntersectionEdgeEdge.h */, - FFFD5b0469b87fcd5b0469b8 /* src/intersection/GuIntersectionRay.h */, - FFFD5b046a207fcd5b046a20 /* src/intersection/GuIntersectionRayBox.h */, - FFFD5b046a887fcd5b046a88 /* src/intersection/GuIntersectionRayBoxSIMD.h */, - FFFD5b046af07fcd5b046af0 /* src/intersection/GuIntersectionRayCapsule.h */, - FFFD5b046b587fcd5b046b58 /* src/intersection/GuIntersectionRayPlane.h */, - FFFD5b046bc07fcd5b046bc0 /* src/intersection/GuIntersectionRaySphere.h */, - FFFD5b046c287fcd5b046c28 /* src/intersection/GuIntersectionRayTriangle.h */, - FFFD5b046c907fcd5b046c90 /* src/intersection/GuIntersectionSphereBox.h */, - FFFD5b046cf87fcd5b046cf8 /* src/mesh/GuBV32.h */, - FFFD5b046d607fcd5b046d60 /* src/mesh/GuBV32Build.h */, - FFFD5b046dc87fcd5b046dc8 /* src/mesh/GuBV4.h */, - FFFD5b046e307fcd5b046e30 /* src/mesh/GuBV4Build.h */, - FFFD5b046e987fcd5b046e98 /* src/mesh/GuBV4Settings.h */, - FFFD5b046f007fcd5b046f00 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, - FFFD5b046f687fcd5b046f68 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, - FFFD5b046fd07fcd5b046fd0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, - FFFD5b0470387fcd5b047038 /* src/mesh/GuBV4_BoxSweep_Internal.h */, - FFFD5b0470a07fcd5b0470a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, - FFFD5b0471087fcd5b047108 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, - FFFD5b0471707fcd5b047170 /* src/mesh/GuBV4_Common.h */, - FFFD5b0471d87fcd5b0471d8 /* src/mesh/GuBV4_Internal.h */, - FFFD5b0472407fcd5b047240 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, - FFFD5b0472a87fcd5b0472a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, - FFFD5b0473107fcd5b047310 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, - FFFD5b0473787fcd5b047378 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, - FFFD5b0473e07fcd5b0473e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, - FFFD5b0474487fcd5b047448 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, - FFFD5b0474b07fcd5b0474b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, - FFFD5b0475187fcd5b047518 /* src/mesh/GuBV4_Slabs.h */, - FFFD5b0475807fcd5b047580 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, - FFFD5b0475e87fcd5b0475e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, - FFFD5b0476507fcd5b047650 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, - FFFD5b0476b87fcd5b0476b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, - FFFD5b0477207fcd5b047720 /* src/mesh/GuBVConstants.h */, - FFFD5b0477887fcd5b047788 /* src/mesh/GuMeshData.h */, - FFFD5b0477f07fcd5b0477f0 /* src/mesh/GuMidphaseInterface.h */, - FFFD5b0478587fcd5b047858 /* src/mesh/GuRTree.h */, - FFFD5b0478c07fcd5b0478c0 /* src/mesh/GuSweepConvexTri.h */, - FFFD5b0479287fcd5b047928 /* src/mesh/GuSweepMesh.h */, - FFFD5b0479907fcd5b047990 /* src/mesh/GuTriangle32.h */, - FFFD5b0479f87fcd5b0479f8 /* src/mesh/GuTriangleCache.h */, - FFFD5b047a607fcd5b047a60 /* src/mesh/GuTriangleMesh.h */, - FFFD5b047ac87fcd5b047ac8 /* src/mesh/GuTriangleMeshBV4.h */, - FFFD5b047b307fcd5b047b30 /* src/mesh/GuTriangleMeshRTree.h */, - FFFD5b047b987fcd5b047b98 /* src/mesh/GuTriangleVertexPointers.h */, - FFFD5b047c007fcd5b047c00 /* src/hf/GuEntityReport.h */, - FFFD5b047c687fcd5b047c68 /* src/hf/GuHeightField.h */, - FFFD5b047cd07fcd5b047cd0 /* src/hf/GuHeightFieldData.h */, - FFFD5b047d387fcd5b047d38 /* src/hf/GuHeightFieldUtil.h */, - FFFD5b047da07fcd5b047da0 /* src/pcm/GuPCMContactConvexCommon.h */, - FFFD5b047e087fcd5b047e08 /* src/pcm/GuPCMContactGen.h */, - FFFD5b047e707fcd5b047e70 /* src/pcm/GuPCMContactGenUtil.h */, - FFFD5b047ed87fcd5b047ed8 /* src/pcm/GuPCMContactMeshCallback.h */, - FFFD5b047f407fcd5b047f40 /* src/pcm/GuPCMShapeConvex.h */, - FFFD5b047fa87fcd5b047fa8 /* src/pcm/GuPCMTriangleContactGen.h */, - FFFD5b0480107fcd5b048010 /* src/pcm/GuPersistentContactManifold.h */, - FFFD5b0480787fcd5b048078 /* src/ccd/GuCCDSweepConvexMesh.h */, - FFFD5b0480e07fcd5b0480e0 /* src/GuBounds.cpp */, - FFFD5b0481487fcd5b048148 /* src/GuBox.cpp */, - FFFD5b0481b07fcd5b0481b0 /* src/GuCCTSweepTests.cpp */, - FFFD5b0482187fcd5b048218 /* src/GuCapsule.cpp */, - FFFD5b0482807fcd5b048280 /* src/GuGeometryQuery.cpp */, - FFFD5b0482e87fcd5b0482e8 /* src/GuGeometryUnion.cpp */, - FFFD5b0483507fcd5b048350 /* src/GuInternal.cpp */, - FFFD5b0483b87fcd5b0483b8 /* src/GuMTD.cpp */, - FFFD5b0484207fcd5b048420 /* src/GuMeshFactory.cpp */, - FFFD5b0484887fcd5b048488 /* src/GuMetaData.cpp */, - FFFD5b0484f07fcd5b0484f0 /* src/GuOverlapTests.cpp */, - FFFD5b0485587fcd5b048558 /* src/GuRaycastTests.cpp */, - FFFD5b0485c07fcd5b0485c0 /* src/GuSerialize.cpp */, - FFFD5b0486287fcd5b048628 /* src/GuSweepMTD.cpp */, - FFFD5b0486907fcd5b048690 /* src/GuSweepSharedTests.cpp */, - FFFD5b0486f87fcd5b0486f8 /* src/GuSweepTests.cpp */, - FFFD5b0487607fcd5b048760 /* src/contact/GuContactBoxBox.cpp */, - FFFD5b0487c87fcd5b0487c8 /* src/contact/GuContactCapsuleBox.cpp */, - FFFD5b0488307fcd5b048830 /* src/contact/GuContactCapsuleCapsule.cpp */, - FFFD5b0488987fcd5b048898 /* src/contact/GuContactCapsuleConvex.cpp */, - FFFD5b0489007fcd5b048900 /* src/contact/GuContactCapsuleMesh.cpp */, - FFFD5b0489687fcd5b048968 /* src/contact/GuContactConvexConvex.cpp */, - FFFD5b0489d07fcd5b0489d0 /* src/contact/GuContactConvexMesh.cpp */, - FFFD5b048a387fcd5b048a38 /* src/contact/GuContactPlaneBox.cpp */, - FFFD5b048aa07fcd5b048aa0 /* src/contact/GuContactPlaneCapsule.cpp */, - FFFD5b048b087fcd5b048b08 /* src/contact/GuContactPlaneConvex.cpp */, - FFFD5b048b707fcd5b048b70 /* src/contact/GuContactPolygonPolygon.cpp */, - FFFD5b048bd87fcd5b048bd8 /* src/contact/GuContactSphereBox.cpp */, - FFFD5b048c407fcd5b048c40 /* src/contact/GuContactSphereCapsule.cpp */, - FFFD5b048ca87fcd5b048ca8 /* src/contact/GuContactSphereMesh.cpp */, - FFFD5b048d107fcd5b048d10 /* src/contact/GuContactSpherePlane.cpp */, - FFFD5b048d787fcd5b048d78 /* src/contact/GuContactSphereSphere.cpp */, - FFFD5b048de07fcd5b048de0 /* src/contact/GuFeatureCode.cpp */, - FFFD5b048e487fcd5b048e48 /* src/contact/GuLegacyContactBoxHeightField.cpp */, - FFFD5b048eb07fcd5b048eb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, - FFFD5b048f187fcd5b048f18 /* src/contact/GuLegacyContactConvexHeightField.cpp */, - FFFD5b048f807fcd5b048f80 /* src/contact/GuLegacyContactSphereHeightField.cpp */, - FFFD5b048fe87fcd5b048fe8 /* src/common/GuBarycentricCoordinates.cpp */, - FFFD5b0490507fcd5b049050 /* src/common/GuSeparatingAxes.cpp */, - FFFD5b0490b87fcd5b0490b8 /* src/convex/GuBigConvexData.cpp */, - FFFD5b0491207fcd5b049120 /* src/convex/GuConvexHelper.cpp */, - FFFD5b0491887fcd5b049188 /* src/convex/GuConvexMesh.cpp */, - FFFD5b0491f07fcd5b0491f0 /* src/convex/GuConvexSupportTable.cpp */, - FFFD5b0492587fcd5b049258 /* src/convex/GuConvexUtilsInternal.cpp */, - FFFD5b0492c07fcd5b0492c0 /* src/convex/GuHillClimbing.cpp */, - FFFD5b0493287fcd5b049328 /* src/convex/GuShapeConvex.cpp */, - FFFD5b0493907fcd5b049390 /* src/distance/GuDistancePointBox.cpp */, - FFFD5b0493f87fcd5b0493f8 /* src/distance/GuDistancePointTriangle.cpp */, - FFFD5b0494607fcd5b049460 /* src/distance/GuDistanceSegmentBox.cpp */, - FFFD5b0494c87fcd5b0494c8 /* src/distance/GuDistanceSegmentSegment.cpp */, - FFFD5b0495307fcd5b049530 /* src/distance/GuDistanceSegmentTriangle.cpp */, - FFFD5b0495987fcd5b049598 /* src/sweep/GuSweepBoxBox.cpp */, - FFFD5b0496007fcd5b049600 /* src/sweep/GuSweepBoxSphere.cpp */, - FFFD5b0496687fcd5b049668 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, - FFFD5b0496d07fcd5b0496d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, - FFFD5b0497387fcd5b049738 /* src/sweep/GuSweepCapsuleBox.cpp */, - FFFD5b0497a07fcd5b0497a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, - FFFD5b0498087fcd5b049808 /* src/sweep/GuSweepCapsuleTriangle.cpp */, - FFFD5b0498707fcd5b049870 /* src/sweep/GuSweepSphereCapsule.cpp */, - FFFD5b0498d87fcd5b0498d8 /* src/sweep/GuSweepSphereSphere.cpp */, - FFFD5b0499407fcd5b049940 /* src/sweep/GuSweepSphereTriangle.cpp */, - FFFD5b0499a87fcd5b0499a8 /* src/sweep/GuSweepTriangleUtils.cpp */, - FFFD5b049a107fcd5b049a10 /* src/gjk/GuEPA.cpp */, - FFFD5b049a787fcd5b049a78 /* src/gjk/GuGJKSimplex.cpp */, - FFFD5b049ae07fcd5b049ae0 /* src/gjk/GuGJKTest.cpp */, - FFFD5b049b487fcd5b049b48 /* src/intersection/GuIntersectionBoxBox.cpp */, - FFFD5b049bb07fcd5b049bb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, - FFFD5b049c187fcd5b049c18 /* src/intersection/GuIntersectionEdgeEdge.cpp */, - FFFD5b049c807fcd5b049c80 /* src/intersection/GuIntersectionRayBox.cpp */, - FFFD5b049ce87fcd5b049ce8 /* src/intersection/GuIntersectionRayCapsule.cpp */, - FFFD5b049d507fcd5b049d50 /* src/intersection/GuIntersectionRaySphere.cpp */, - FFFD5b049db87fcd5b049db8 /* src/intersection/GuIntersectionSphereBox.cpp */, - FFFD5b049e207fcd5b049e20 /* src/intersection/GuIntersectionTriangleBox.cpp */, - FFFD5b049e887fcd5b049e88 /* src/mesh/GuBV32.cpp */, - FFFD5b049ef07fcd5b049ef0 /* src/mesh/GuBV32Build.cpp */, - FFFD5b049f587fcd5b049f58 /* src/mesh/GuBV4.cpp */, - FFFD5b049fc07fcd5b049fc0 /* src/mesh/GuBV4Build.cpp */, - FFFD5b04a0287fcd5b04a028 /* src/mesh/GuBV4_AABBSweep.cpp */, - FFFD5b04a0907fcd5b04a090 /* src/mesh/GuBV4_BoxOverlap.cpp */, - FFFD5b04a0f87fcd5b04a0f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, - FFFD5b04a1607fcd5b04a160 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, - FFFD5b04a1c87fcd5b04a1c8 /* src/mesh/GuBV4_OBBSweep.cpp */, - FFFD5b04a2307fcd5b04a230 /* src/mesh/GuBV4_Raycast.cpp */, - FFFD5b04a2987fcd5b04a298 /* src/mesh/GuBV4_SphereOverlap.cpp */, - FFFD5b04a3007fcd5b04a300 /* src/mesh/GuBV4_SphereSweep.cpp */, - FFFD5b04a3687fcd5b04a368 /* src/mesh/GuMeshQuery.cpp */, - FFFD5b04a3d07fcd5b04a3d0 /* src/mesh/GuMidphaseBV4.cpp */, - FFFD5b04a4387fcd5b04a438 /* src/mesh/GuMidphaseRTree.cpp */, - FFFD5b04a4a07fcd5b04a4a0 /* src/mesh/GuOverlapTestsMesh.cpp */, - FFFD5b04a5087fcd5b04a508 /* src/mesh/GuRTree.cpp */, - FFFD5b04a5707fcd5b04a570 /* src/mesh/GuRTreeQueries.cpp */, - FFFD5b04a5d87fcd5b04a5d8 /* src/mesh/GuSweepsMesh.cpp */, - FFFD5b04a6407fcd5b04a640 /* src/mesh/GuTriangleMesh.cpp */, - FFFD5b04a6a87fcd5b04a6a8 /* src/mesh/GuTriangleMeshBV4.cpp */, - FFFD5b04a7107fcd5b04a710 /* src/mesh/GuTriangleMeshRTree.cpp */, - FFFD5b04a7787fcd5b04a778 /* src/hf/GuHeightField.cpp */, - FFFD5b04a7e07fcd5b04a7e0 /* src/hf/GuHeightFieldUtil.cpp */, - FFFD5b04a8487fcd5b04a848 /* src/hf/GuOverlapTestsHF.cpp */, - FFFD5b04a8b07fcd5b04a8b0 /* src/hf/GuSweepsHF.cpp */, - FFFD5b04a9187fcd5b04a918 /* src/pcm/GuPCMContactBoxBox.cpp */, - FFFD5b04a9807fcd5b04a980 /* src/pcm/GuPCMContactBoxConvex.cpp */, - FFFD5b04a9e87fcd5b04a9e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, - FFFD5b04aa507fcd5b04aa50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, - FFFD5b04aab87fcd5b04aab8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, - FFFD5b04ab207fcd5b04ab20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, - FFFD5b04ab887fcd5b04ab88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, - FFFD5b04abf07fcd5b04abf0 /* src/pcm/GuPCMContactConvexCommon.cpp */, - FFFD5b04ac587fcd5b04ac58 /* src/pcm/GuPCMContactConvexConvex.cpp */, - FFFD5b04acc07fcd5b04acc0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, - FFFD5b04ad287fcd5b04ad28 /* src/pcm/GuPCMContactConvexMesh.cpp */, - FFFD5b04ad907fcd5b04ad90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, - FFFD5b04adf87fcd5b04adf8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, - FFFD5b04ae607fcd5b04ae60 /* src/pcm/GuPCMContactPlaneBox.cpp */, - FFFD5b04aec87fcd5b04aec8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, - FFFD5b04af307fcd5b04af30 /* src/pcm/GuPCMContactPlaneConvex.cpp */, - FFFD5b04af987fcd5b04af98 /* src/pcm/GuPCMContactSphereBox.cpp */, - FFFD5b04b0007fcd5b04b000 /* src/pcm/GuPCMContactSphereCapsule.cpp */, - FFFD5b04b0687fcd5b04b068 /* src/pcm/GuPCMContactSphereConvex.cpp */, - FFFD5b04b0d07fcd5b04b0d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, - FFFD5b04b1387fcd5b04b138 /* src/pcm/GuPCMContactSphereMesh.cpp */, - FFFD5b04b1a07fcd5b04b1a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, - FFFD5b04b2087fcd5b04b208 /* src/pcm/GuPCMContactSphereSphere.cpp */, - FFFD5b04b2707fcd5b04b270 /* src/pcm/GuPCMShapeConvex.cpp */, - FFFD5b04b2d87fcd5b04b2d8 /* src/pcm/GuPCMTriangleContactGen.cpp */, - FFFD5b04b3407fcd5b04b340 /* src/pcm/GuPersistentContactManifold.cpp */, - FFFD5b04b3a87fcd5b04b3a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, - FFFD5b04b4107fcd5b04b410 /* src/ccd/GuCCDSweepPrimitives.cpp */, + FFFD5b8010007fb05b801000 /* headers/GuAxes.h */, + FFFD5b8010687fb05b801068 /* headers/GuBox.h */, + FFFD5b8010d07fb05b8010d0 /* headers/GuDistanceSegmentBox.h */, + FFFD5b8011387fb05b801138 /* headers/GuDistanceSegmentSegment.h */, + FFFD5b8011a07fb05b8011a0 /* headers/GuIntersectionBoxBox.h */, + FFFD5b8012087fb05b801208 /* headers/GuIntersectionTriangleBox.h */, + FFFD5b8012707fb05b801270 /* headers/GuRaycastTests.h */, + FFFD5b8012d87fb05b8012d8 /* headers/GuSIMDHelpers.h */, + FFFD5b8013407fb05b801340 /* headers/GuSegment.h */, + FFFD5b8013a87fb05b8013a8 /* ../../Include/GeomUtils */, + FFFD5b8014107fb05b801410 /* src/GuBounds.h */, + FFFD5b8014787fb05b801478 /* src/GuCapsule.h */, + FFFD5b8014e07fb05b8014e0 /* src/GuCenterExtents.h */, + FFFD5b8015487fb05b801548 /* src/GuGeometryUnion.h */, + FFFD5b8015b07fb05b8015b0 /* src/GuInternal.h */, + FFFD5b8016187fb05b801618 /* src/GuMTD.h */, + FFFD5b8016807fb05b801680 /* src/GuMeshFactory.h */, + FFFD5b8016e87fb05b8016e8 /* src/GuOverlapTests.h */, + FFFD5b8017507fb05b801750 /* src/GuSerialize.h */, + FFFD5b8017b87fb05b8017b8 /* src/GuSphere.h */, + FFFD5b8018207fb05b801820 /* src/GuSweepMTD.h */, + FFFD5b8018887fb05b801888 /* src/GuSweepSharedTests.h */, + FFFD5b8018f07fb05b8018f0 /* src/GuSweepTests.h */, + FFFD5b8019587fb05b801958 /* src/contact/GuContactMethodImpl.h */, + FFFD5b8019c07fb05b8019c0 /* src/contact/GuContactPolygonPolygon.h */, + FFFD5b801a287fb05b801a28 /* src/contact/GuFeatureCode.h */, + FFFD5b801a907fb05b801a90 /* src/contact/GuLegacyTraceLineCallback.h */, + FFFD5b801af87fb05b801af8 /* src/common/GuBarycentricCoordinates.h */, + FFFD5b801b607fb05b801b60 /* src/common/GuBoxConversion.h */, + FFFD5b801bc87fb05b801bc8 /* src/common/GuEdgeCache.h */, + FFFD5b801c307fb05b801c30 /* src/common/GuEdgeListData.h */, + FFFD5b801c987fb05b801c98 /* src/common/GuSeparatingAxes.h */, + FFFD5b801d007fb05b801d00 /* src/convex/GuBigConvexData.h */, + FFFD5b801d687fb05b801d68 /* src/convex/GuBigConvexData2.h */, + FFFD5b801dd07fb05b801dd0 /* src/convex/GuConvexEdgeFlags.h */, + FFFD5b801e387fb05b801e38 /* src/convex/GuConvexHelper.h */, + FFFD5b801ea07fb05b801ea0 /* src/convex/GuConvexMesh.h */, + FFFD5b801f087fb05b801f08 /* src/convex/GuConvexMeshData.h */, + FFFD5b801f707fb05b801f70 /* src/convex/GuConvexSupportTable.h */, + FFFD5b801fd87fb05b801fd8 /* src/convex/GuConvexUtilsInternal.h */, + FFFD5b8020407fb05b802040 /* src/convex/GuCubeIndex.h */, + FFFD5b8020a87fb05b8020a8 /* src/convex/GuHillClimbing.h */, + FFFD5b8021107fb05b802110 /* src/convex/GuShapeConvex.h */, + FFFD5b8021787fb05b802178 /* src/distance/GuDistancePointBox.h */, + FFFD5b8021e07fb05b8021e0 /* src/distance/GuDistancePointSegment.h */, + FFFD5b8022487fb05b802248 /* src/distance/GuDistancePointTriangle.h */, + FFFD5b8022b07fb05b8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, + FFFD5b8023187fb05b802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, + FFFD5b8023807fb05b802380 /* src/distance/GuDistanceSegmentTriangle.h */, + FFFD5b8023e87fb05b8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, + FFFD5b8024507fb05b802450 /* src/sweep/GuSweepBoxBox.h */, + FFFD5b8024b87fb05b8024b8 /* src/sweep/GuSweepBoxSphere.h */, + FFFD5b8025207fb05b802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, + FFFD5b8025887fb05b802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, + FFFD5b8025f07fb05b8025f0 /* src/sweep/GuSweepCapsuleBox.h */, + FFFD5b8026587fb05b802658 /* src/sweep/GuSweepCapsuleCapsule.h */, + FFFD5b8026c07fb05b8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, + FFFD5b8027287fb05b802728 /* src/sweep/GuSweepSphereCapsule.h */, + FFFD5b8027907fb05b802790 /* src/sweep/GuSweepSphereSphere.h */, + FFFD5b8027f87fb05b8027f8 /* src/sweep/GuSweepSphereTriangle.h */, + FFFD5b8028607fb05b802860 /* src/sweep/GuSweepTriangleUtils.h */, + FFFD5b8028c87fb05b8028c8 /* src/gjk/GuEPA.h */, + FFFD5b8029307fb05b802930 /* src/gjk/GuEPAFacet.h */, + FFFD5b8029987fb05b802998 /* src/gjk/GuGJK.h */, + FFFD5b802a007fb05b802a00 /* src/gjk/GuGJKPenetration.h */, + FFFD5b802a687fb05b802a68 /* src/gjk/GuGJKRaycast.h */, + FFFD5b802ad07fb05b802ad0 /* src/gjk/GuGJKSimplex.h */, + FFFD5b802b387fb05b802b38 /* src/gjk/GuGJKTest.h */, + FFFD5b802ba07fb05b802ba0 /* src/gjk/GuGJKType.h */, + FFFD5b802c087fb05b802c08 /* src/gjk/GuGJKUtil.h */, + FFFD5b802c707fb05b802c70 /* src/gjk/GuVecBox.h */, + FFFD5b802cd87fb05b802cd8 /* src/gjk/GuVecCapsule.h */, + FFFD5b802d407fb05b802d40 /* src/gjk/GuVecConvex.h */, + FFFD5b802da87fb05b802da8 /* src/gjk/GuVecConvexHull.h */, + FFFD5b802e107fb05b802e10 /* src/gjk/GuVecConvexHullNoScale.h */, + FFFD5b802e787fb05b802e78 /* src/gjk/GuVecPlane.h */, + FFFD5b802ee07fb05b802ee0 /* src/gjk/GuVecShrunkBox.h */, + FFFD5b802f487fb05b802f48 /* src/gjk/GuVecShrunkConvexHull.h */, + FFFD5b802fb07fb05b802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, + FFFD5b8030187fb05b803018 /* src/gjk/GuVecSphere.h */, + FFFD5b8030807fb05b803080 /* src/gjk/GuVecTriangle.h */, + FFFD5b8030e87fb05b8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, + FFFD5b8031507fb05b803150 /* src/intersection/GuIntersectionEdgeEdge.h */, + FFFD5b8031b87fb05b8031b8 /* src/intersection/GuIntersectionRay.h */, + FFFD5b8032207fb05b803220 /* src/intersection/GuIntersectionRayBox.h */, + FFFD5b8032887fb05b803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, + FFFD5b8032f07fb05b8032f0 /* src/intersection/GuIntersectionRayCapsule.h */, + FFFD5b8033587fb05b803358 /* src/intersection/GuIntersectionRayPlane.h */, + FFFD5b8033c07fb05b8033c0 /* src/intersection/GuIntersectionRaySphere.h */, + FFFD5b8034287fb05b803428 /* src/intersection/GuIntersectionRayTriangle.h */, + FFFD5b8034907fb05b803490 /* src/intersection/GuIntersectionSphereBox.h */, + FFFD5b8034f87fb05b8034f8 /* src/mesh/GuBV32.h */, + FFFD5b8035607fb05b803560 /* src/mesh/GuBV32Build.h */, + FFFD5b8035c87fb05b8035c8 /* src/mesh/GuBV4.h */, + FFFD5b8036307fb05b803630 /* src/mesh/GuBV4Build.h */, + FFFD5b8036987fb05b803698 /* src/mesh/GuBV4Settings.h */, + FFFD5b8037007fb05b803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, + FFFD5b8037687fb05b803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, + FFFD5b8037d07fb05b8037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, + FFFD5b8038387fb05b803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, + FFFD5b8038a07fb05b8038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, + FFFD5b8039087fb05b803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, + FFFD5b8039707fb05b803970 /* src/mesh/GuBV4_Common.h */, + FFFD5b8039d87fb05b8039d8 /* src/mesh/GuBV4_Internal.h */, + FFFD5b803a407fb05b803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, + FFFD5b803aa87fb05b803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, + FFFD5b803b107fb05b803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, + FFFD5b803b787fb05b803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, + FFFD5b803be07fb05b803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, + FFFD5b803c487fb05b803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, + FFFD5b803cb07fb05b803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, + FFFD5b803d187fb05b803d18 /* src/mesh/GuBV4_Slabs.h */, + FFFD5b803d807fb05b803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, + FFFD5b803de87fb05b803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, + FFFD5b803e507fb05b803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, + FFFD5b803eb87fb05b803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, + FFFD5b803f207fb05b803f20 /* src/mesh/GuBVConstants.h */, + FFFD5b803f887fb05b803f88 /* src/mesh/GuMeshData.h */, + FFFD5b803ff07fb05b803ff0 /* src/mesh/GuMidphaseInterface.h */, + FFFD5b8040587fb05b804058 /* src/mesh/GuRTree.h */, + FFFD5b8040c07fb05b8040c0 /* src/mesh/GuSweepConvexTri.h */, + FFFD5b8041287fb05b804128 /* src/mesh/GuSweepMesh.h */, + FFFD5b8041907fb05b804190 /* src/mesh/GuTriangle32.h */, + FFFD5b8041f87fb05b8041f8 /* src/mesh/GuTriangleCache.h */, + FFFD5b8042607fb05b804260 /* src/mesh/GuTriangleMesh.h */, + FFFD5b8042c87fb05b8042c8 /* src/mesh/GuTriangleMeshBV4.h */, + FFFD5b8043307fb05b804330 /* src/mesh/GuTriangleMeshRTree.h */, + FFFD5b8043987fb05b804398 /* src/mesh/GuTriangleVertexPointers.h */, + FFFD5b8044007fb05b804400 /* src/hf/GuEntityReport.h */, + FFFD5b8044687fb05b804468 /* src/hf/GuHeightField.h */, + FFFD5b8044d07fb05b8044d0 /* src/hf/GuHeightFieldData.h */, + FFFD5b8045387fb05b804538 /* src/hf/GuHeightFieldUtil.h */, + FFFD5b8045a07fb05b8045a0 /* src/pcm/GuPCMContactConvexCommon.h */, + FFFD5b8046087fb05b804608 /* src/pcm/GuPCMContactGen.h */, + FFFD5b8046707fb05b804670 /* src/pcm/GuPCMContactGenUtil.h */, + FFFD5b8046d87fb05b8046d8 /* src/pcm/GuPCMContactMeshCallback.h */, + FFFD5b8047407fb05b804740 /* src/pcm/GuPCMShapeConvex.h */, + FFFD5b8047a87fb05b8047a8 /* src/pcm/GuPCMTriangleContactGen.h */, + FFFD5b8048107fb05b804810 /* src/pcm/GuPersistentContactManifold.h */, + FFFD5b8048787fb05b804878 /* src/ccd/GuCCDSweepConvexMesh.h */, + FFFD5b8048e07fb05b8048e0 /* src/GuBounds.cpp */, + FFFD5b8049487fb05b804948 /* src/GuBox.cpp */, + FFFD5b8049b07fb05b8049b0 /* src/GuCCTSweepTests.cpp */, + FFFD5b804a187fb05b804a18 /* src/GuCapsule.cpp */, + FFFD5b804a807fb05b804a80 /* src/GuGeometryQuery.cpp */, + FFFD5b804ae87fb05b804ae8 /* src/GuGeometryUnion.cpp */, + FFFD5b804b507fb05b804b50 /* src/GuInternal.cpp */, + FFFD5b804bb87fb05b804bb8 /* src/GuMTD.cpp */, + FFFD5b804c207fb05b804c20 /* src/GuMeshFactory.cpp */, + FFFD5b804c887fb05b804c88 /* src/GuMetaData.cpp */, + FFFD5b804cf07fb05b804cf0 /* src/GuOverlapTests.cpp */, + FFFD5b804d587fb05b804d58 /* src/GuRaycastTests.cpp */, + FFFD5b804dc07fb05b804dc0 /* src/GuSerialize.cpp */, + FFFD5b804e287fb05b804e28 /* src/GuSweepMTD.cpp */, + FFFD5b804e907fb05b804e90 /* src/GuSweepSharedTests.cpp */, + FFFD5b804ef87fb05b804ef8 /* src/GuSweepTests.cpp */, + FFFD5b804f607fb05b804f60 /* src/contact/GuContactBoxBox.cpp */, + FFFD5b804fc87fb05b804fc8 /* src/contact/GuContactCapsuleBox.cpp */, + FFFD5b8050307fb05b805030 /* src/contact/GuContactCapsuleCapsule.cpp */, + FFFD5b8050987fb05b805098 /* src/contact/GuContactCapsuleConvex.cpp */, + FFFD5b8051007fb05b805100 /* src/contact/GuContactCapsuleMesh.cpp */, + FFFD5b8051687fb05b805168 /* src/contact/GuContactConvexConvex.cpp */, + FFFD5b8051d07fb05b8051d0 /* src/contact/GuContactConvexMesh.cpp */, + FFFD5b8052387fb05b805238 /* src/contact/GuContactPlaneBox.cpp */, + FFFD5b8052a07fb05b8052a0 /* src/contact/GuContactPlaneCapsule.cpp */, + FFFD5b8053087fb05b805308 /* src/contact/GuContactPlaneConvex.cpp */, + FFFD5b8053707fb05b805370 /* src/contact/GuContactPolygonPolygon.cpp */, + FFFD5b8053d87fb05b8053d8 /* src/contact/GuContactSphereBox.cpp */, + FFFD5b8054407fb05b805440 /* src/contact/GuContactSphereCapsule.cpp */, + FFFD5b8054a87fb05b8054a8 /* src/contact/GuContactSphereMesh.cpp */, + FFFD5b8055107fb05b805510 /* src/contact/GuContactSpherePlane.cpp */, + FFFD5b8055787fb05b805578 /* src/contact/GuContactSphereSphere.cpp */, + FFFD5b8055e07fb05b8055e0 /* src/contact/GuFeatureCode.cpp */, + FFFD5b8056487fb05b805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, + FFFD5b8056b07fb05b8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, + FFFD5b8057187fb05b805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, + FFFD5b8057807fb05b805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, + FFFD5b8057e87fb05b8057e8 /* src/common/GuBarycentricCoordinates.cpp */, + FFFD5b8058507fb05b805850 /* src/common/GuSeparatingAxes.cpp */, + FFFD5b8058b87fb05b8058b8 /* src/convex/GuBigConvexData.cpp */, + FFFD5b8059207fb05b805920 /* src/convex/GuConvexHelper.cpp */, + FFFD5b8059887fb05b805988 /* src/convex/GuConvexMesh.cpp */, + FFFD5b8059f07fb05b8059f0 /* src/convex/GuConvexSupportTable.cpp */, + FFFD5b805a587fb05b805a58 /* src/convex/GuConvexUtilsInternal.cpp */, + FFFD5b805ac07fb05b805ac0 /* src/convex/GuHillClimbing.cpp */, + FFFD5b805b287fb05b805b28 /* src/convex/GuShapeConvex.cpp */, + FFFD5b805b907fb05b805b90 /* src/distance/GuDistancePointBox.cpp */, + FFFD5b805bf87fb05b805bf8 /* src/distance/GuDistancePointTriangle.cpp */, + FFFD5b805c607fb05b805c60 /* src/distance/GuDistanceSegmentBox.cpp */, + FFFD5b805cc87fb05b805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, + FFFD5b805d307fb05b805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, + FFFD5b805d987fb05b805d98 /* src/sweep/GuSweepBoxBox.cpp */, + FFFD5b805e007fb05b805e00 /* src/sweep/GuSweepBoxSphere.cpp */, + FFFD5b805e687fb05b805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, + FFFD5b805ed07fb05b805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, + FFFD5b805f387fb05b805f38 /* src/sweep/GuSweepCapsuleBox.cpp */, + FFFD5b805fa07fb05b805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, + FFFD5b8060087fb05b806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, + FFFD5b8060707fb05b806070 /* src/sweep/GuSweepSphereCapsule.cpp */, + FFFD5b8060d87fb05b8060d8 /* src/sweep/GuSweepSphereSphere.cpp */, + FFFD5b8061407fb05b806140 /* src/sweep/GuSweepSphereTriangle.cpp */, + FFFD5b8061a87fb05b8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, + FFFD5b8062107fb05b806210 /* src/gjk/GuEPA.cpp */, + FFFD5b8062787fb05b806278 /* src/gjk/GuGJKSimplex.cpp */, + FFFD5b8062e07fb05b8062e0 /* src/gjk/GuGJKTest.cpp */, + FFFD5b8063487fb05b806348 /* src/intersection/GuIntersectionBoxBox.cpp */, + FFFD5b8063b07fb05b8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, + FFFD5b8064187fb05b806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, + FFFD5b8064807fb05b806480 /* src/intersection/GuIntersectionRayBox.cpp */, + FFFD5b8064e87fb05b8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, + FFFD5b8065507fb05b806550 /* src/intersection/GuIntersectionRaySphere.cpp */, + FFFD5b8065b87fb05b8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, + FFFD5b8066207fb05b806620 /* src/intersection/GuIntersectionTriangleBox.cpp */, + FFFD5b8066887fb05b806688 /* src/mesh/GuBV32.cpp */, + FFFD5b8066f07fb05b8066f0 /* src/mesh/GuBV32Build.cpp */, + FFFD5b8067587fb05b806758 /* src/mesh/GuBV4.cpp */, + FFFD5b8067c07fb05b8067c0 /* src/mesh/GuBV4Build.cpp */, + FFFD5b8068287fb05b806828 /* src/mesh/GuBV4_AABBSweep.cpp */, + FFFD5b8068907fb05b806890 /* src/mesh/GuBV4_BoxOverlap.cpp */, + FFFD5b8068f87fb05b8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, + FFFD5b8069607fb05b806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, + FFFD5b8069c87fb05b8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, + FFFD5b806a307fb05b806a30 /* src/mesh/GuBV4_Raycast.cpp */, + FFFD5b806a987fb05b806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, + FFFD5b806b007fb05b806b00 /* src/mesh/GuBV4_SphereSweep.cpp */, + FFFD5b806b687fb05b806b68 /* src/mesh/GuMeshQuery.cpp */, + FFFD5b806bd07fb05b806bd0 /* src/mesh/GuMidphaseBV4.cpp */, + FFFD5b806c387fb05b806c38 /* src/mesh/GuMidphaseRTree.cpp */, + FFFD5b806ca07fb05b806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, + FFFD5b806d087fb05b806d08 /* src/mesh/GuRTree.cpp */, + FFFD5b806d707fb05b806d70 /* src/mesh/GuRTreeQueries.cpp */, + FFFD5b806dd87fb05b806dd8 /* src/mesh/GuSweepsMesh.cpp */, + FFFD5b806e407fb05b806e40 /* src/mesh/GuTriangleMesh.cpp */, + FFFD5b806ea87fb05b806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, + FFFD5b806f107fb05b806f10 /* src/mesh/GuTriangleMeshRTree.cpp */, + FFFD5b806f787fb05b806f78 /* src/hf/GuHeightField.cpp */, + FFFD5b806fe07fb05b806fe0 /* src/hf/GuHeightFieldUtil.cpp */, + FFFD5b8070487fb05b807048 /* src/hf/GuOverlapTestsHF.cpp */, + FFFD5b8070b07fb05b8070b0 /* src/hf/GuSweepsHF.cpp */, + FFFD5b8071187fb05b807118 /* src/pcm/GuPCMContactBoxBox.cpp */, + FFFD5b8071807fb05b807180 /* src/pcm/GuPCMContactBoxConvex.cpp */, + FFFD5b8071e87fb05b8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, + FFFD5b8072507fb05b807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, + FFFD5b8072b87fb05b8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, + FFFD5b8073207fb05b807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, + FFFD5b8073887fb05b807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, + FFFD5b8073f07fb05b8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, + FFFD5b8074587fb05b807458 /* src/pcm/GuPCMContactConvexConvex.cpp */, + FFFD5b8074c07fb05b8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, + FFFD5b8075287fb05b807528 /* src/pcm/GuPCMContactConvexMesh.cpp */, + FFFD5b8075907fb05b807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, + FFFD5b8075f87fb05b8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, + FFFD5b8076607fb05b807660 /* src/pcm/GuPCMContactPlaneBox.cpp */, + FFFD5b8076c87fb05b8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, + FFFD5b8077307fb05b807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, + FFFD5b8077987fb05b807798 /* src/pcm/GuPCMContactSphereBox.cpp */, + FFFD5b8078007fb05b807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, + FFFD5b8078687fb05b807868 /* src/pcm/GuPCMContactSphereConvex.cpp */, + FFFD5b8078d07fb05b8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, + FFFD5b8079387fb05b807938 /* src/pcm/GuPCMContactSphereMesh.cpp */, + FFFD5b8079a07fb05b8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, + FFFD5b807a087fb05b807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, + FFFD5b807a707fb05b807a70 /* src/pcm/GuPCMShapeConvex.cpp */, + FFFD5b807ad87fb05b807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, + FFFD5b807b407fb05b807b40 /* src/pcm/GuPersistentContactManifold.cpp */, + FFFD5b807ba87fb05b807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, + FFFD5b807c107fb05b807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, ); name = "geomutils"; sourceTree = SOURCE_ROOT; }; - FFFB585016d07fcd585016d0 /* PxFoundation */ = { + FFFB5b080a507fb05b080a50 /* PxFoundation */ = { isa = PBXGroup; children = ( - FFFB56e12ec07fcd56e12ec0 /* include */, - FFFB56e12ee87fcd56e12ee8 /* src */, + FFFB5b080ee07fb05b080ee0 /* include */, + FFFB5b080f087fb05b080f08 /* src */, ); name = "PxFoundation"; sourceTree = "<group>"; }; - FFFB56e12ec07fcd56e12ec0 /* include */ = { + FFFB5b080ee07fb05b080ee0 /* include */ = { isa = PBXGroup; children = ( - FFFD598048007fcd59804800 /* Px.h */, - FFFD598048687fcd59804868 /* PxAllocatorCallback.h */, - FFFD598048d07fcd598048d0 /* PxAssert.h */, - FFFD598049387fcd59804938 /* PxBitAndData.h */, - FFFD598049a07fcd598049a0 /* PxBounds3.h */, - FFFD59804a087fcd59804a08 /* PxErrorCallback.h */, - FFFD59804a707fcd59804a70 /* PxErrors.h */, - FFFD59804ad87fcd59804ad8 /* PxFlags.h */, - FFFD59804b407fcd59804b40 /* PxFoundation.h */, - FFFD59804ba87fcd59804ba8 /* PxFoundationVersion.h */, - FFFD59804c107fcd59804c10 /* PxIO.h */, - FFFD59804c787fcd59804c78 /* PxIntrinsics.h */, - FFFD59804ce07fcd59804ce0 /* PxMat33.h */, - FFFD59804d487fcd59804d48 /* PxMat44.h */, - FFFD59804db07fcd59804db0 /* PxMath.h */, - FFFD59804e187fcd59804e18 /* PxMathUtils.h */, - FFFD59804e807fcd59804e80 /* PxMemory.h */, - FFFD59804ee87fcd59804ee8 /* PxPlane.h */, - FFFD59804f507fcd59804f50 /* PxPreprocessor.h */, - FFFD59804fb87fcd59804fb8 /* PxProfiler.h */, - FFFD598050207fcd59805020 /* PxQuat.h */, - FFFD598050887fcd59805088 /* PxSimpleTypes.h */, - FFFD598050f07fcd598050f0 /* PxStrideIterator.h */, - FFFD598051587fcd59805158 /* PxTransform.h */, - FFFD598051c07fcd598051c0 /* PxUnionCast.h */, - FFFD598052287fcd59805228 /* PxVec2.h */, - FFFD598052907fcd59805290 /* PxVec3.h */, - FFFD598052f87fcd598052f8 /* PxVec4.h */, - FFFD598053607fcd59805360 /* unix/PxUnixIntrinsics.h */, + FFFD5a9a58007fb05a9a5800 /* Px.h */, + FFFD5a9a58687fb05a9a5868 /* PxAllocatorCallback.h */, + FFFD5a9a58d07fb05a9a58d0 /* PxAssert.h */, + FFFD5a9a59387fb05a9a5938 /* PxBitAndData.h */, + FFFD5a9a59a07fb05a9a59a0 /* PxBounds3.h */, + FFFD5a9a5a087fb05a9a5a08 /* PxErrorCallback.h */, + FFFD5a9a5a707fb05a9a5a70 /* PxErrors.h */, + FFFD5a9a5ad87fb05a9a5ad8 /* PxFlags.h */, + FFFD5a9a5b407fb05a9a5b40 /* PxFoundation.h */, + FFFD5a9a5ba87fb05a9a5ba8 /* PxFoundationVersion.h */, + FFFD5a9a5c107fb05a9a5c10 /* PxIO.h */, + FFFD5a9a5c787fb05a9a5c78 /* PxIntrinsics.h */, + FFFD5a9a5ce07fb05a9a5ce0 /* PxMat33.h */, + FFFD5a9a5d487fb05a9a5d48 /* PxMat44.h */, + FFFD5a9a5db07fb05a9a5db0 /* PxMath.h */, + FFFD5a9a5e187fb05a9a5e18 /* PxMathUtils.h */, + FFFD5a9a5e807fb05a9a5e80 /* PxMemory.h */, + FFFD5a9a5ee87fb05a9a5ee8 /* PxPlane.h */, + FFFD5a9a5f507fb05a9a5f50 /* PxPreprocessor.h */, + FFFD5a9a5fb87fb05a9a5fb8 /* PxProfiler.h */, + FFFD5a9a60207fb05a9a6020 /* PxQuat.h */, + FFFD5a9a60887fb05a9a6088 /* PxSimpleTypes.h */, + FFFD5a9a60f07fb05a9a60f0 /* PxStrideIterator.h */, + FFFD5a9a61587fb05a9a6158 /* PxTransform.h */, + FFFD5a9a61c07fb05a9a61c0 /* PxUnionCast.h */, + FFFD5a9a62287fb05a9a6228 /* PxVec2.h */, + FFFD5a9a62907fb05a9a6290 /* PxVec3.h */, + FFFD5a9a62f87fb05a9a62f8 /* PxVec4.h */, + FFFD5a9a63607fb05a9a6360 /* unix/PxUnixIntrinsics.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB56e12ee87fcd56e12ee8 /* src */ = { + FFFB5b080f087fb05b080f08 /* src */ = { isa = PBXGroup; children = ( - FFFD59808e007fcd59808e00 /* include/Ps.h */, - FFFD59808e687fcd59808e68 /* include/PsAlignedMalloc.h */, - FFFD59808ed07fcd59808ed0 /* include/PsAlloca.h */, - FFFD59808f387fcd59808f38 /* include/PsAllocator.h */, - FFFD59808fa07fcd59808fa0 /* include/PsAoS.h */, - FFFD598090087fcd59809008 /* include/PsArray.h */, - FFFD598090707fcd59809070 /* include/PsAtomic.h */, - FFFD598090d87fcd598090d8 /* include/PsBasicTemplates.h */, - FFFD598091407fcd59809140 /* include/PsBitUtils.h */, - FFFD598091a87fcd598091a8 /* include/PsBroadcast.h */, - FFFD598092107fcd59809210 /* include/PsCpu.h */, - FFFD598092787fcd59809278 /* include/PsFPU.h */, - FFFD598092e07fcd598092e0 /* include/PsFoundation.h */, - FFFD598093487fcd59809348 /* include/PsHash.h */, - FFFD598093b07fcd598093b0 /* include/PsHashInternals.h */, - FFFD598094187fcd59809418 /* include/PsHashMap.h */, - FFFD598094807fcd59809480 /* include/PsHashSet.h */, - FFFD598094e87fcd598094e8 /* include/PsInlineAllocator.h */, - FFFD598095507fcd59809550 /* include/PsInlineAoS.h */, - FFFD598095b87fcd598095b8 /* include/PsInlineArray.h */, - FFFD598096207fcd59809620 /* include/PsIntrinsics.h */, - FFFD598096887fcd59809688 /* include/PsMathUtils.h */, - FFFD598096f07fcd598096f0 /* include/PsMutex.h */, - FFFD598097587fcd59809758 /* include/PsPool.h */, - FFFD598097c07fcd598097c0 /* include/PsSList.h */, - FFFD598098287fcd59809828 /* include/PsSocket.h */, - FFFD598098907fcd59809890 /* include/PsSort.h */, - FFFD598098f87fcd598098f8 /* include/PsSortInternals.h */, - FFFD598099607fcd59809960 /* include/PsString.h */, - FFFD598099c87fcd598099c8 /* include/PsSync.h */, - FFFD59809a307fcd59809a30 /* include/PsTempAllocator.h */, - FFFD59809a987fcd59809a98 /* include/PsThread.h */, - FFFD59809b007fcd59809b00 /* include/PsTime.h */, - FFFD59809b687fcd59809b68 /* include/PsUserAllocated.h */, - FFFD59809bd07fcd59809bd0 /* include/PsUtilities.h */, - FFFD59809c387fcd59809c38 /* include/PsVecMath.h */, - FFFD59809ca07fcd59809ca0 /* include/PsVecMathAoSScalar.h */, - FFFD59809d087fcd59809d08 /* include/PsVecMathAoSScalarInline.h */, - FFFD59809d707fcd59809d70 /* include/PsVecMathSSE.h */, - FFFD59809dd87fcd59809dd8 /* include/PsVecMathUtilities.h */, - FFFD59809e407fcd59809e40 /* include/PsVecQuat.h */, - FFFD59809ea87fcd59809ea8 /* include/PsVecTransform.h */, - FFFD59809f107fcd59809f10 /* include/unix/PsUnixAoS.h */, - FFFD59809f787fcd59809f78 /* include/unix/PsUnixFPU.h */, - FFFD59809fe07fcd59809fe0 /* include/unix/PsUnixInlineAoS.h */, - FFFD5980a0487fcd5980a048 /* include/unix/PsUnixIntrinsics.h */, - FFFD5980a0b07fcd5980a0b0 /* include/unix/PsUnixTrigConstants.h */, - FFFD5980a1187fcd5980a118 /* src/PsAllocator.cpp */, - FFFD5980a1807fcd5980a180 /* src/PsAssert.cpp */, - FFFD5980a1e87fcd5980a1e8 /* src/PsFoundation.cpp */, - FFFD5980a2507fcd5980a250 /* src/PsMathUtils.cpp */, - FFFD5980a2b87fcd5980a2b8 /* src/PsString.cpp */, - FFFD5980a3207fcd5980a320 /* src/PsTempAllocator.cpp */, - FFFD5980a3887fcd5980a388 /* src/PsUtilities.cpp */, - FFFD5980a3f07fcd5980a3f0 /* src/unix/PsUnixAtomic.cpp */, - FFFD5980a4587fcd5980a458 /* src/unix/PsUnixCpu.cpp */, - FFFD5980a4c07fcd5980a4c0 /* src/unix/PsUnixFPU.cpp */, - FFFD5980a5287fcd5980a528 /* src/unix/PsUnixMutex.cpp */, - FFFD5980a5907fcd5980a590 /* src/unix/PsUnixPrintString.cpp */, - FFFD5980a5f87fcd5980a5f8 /* src/unix/PsUnixSList.cpp */, - FFFD5980a6607fcd5980a660 /* src/unix/PsUnixSocket.cpp */, - FFFD5980a6c87fcd5980a6c8 /* src/unix/PsUnixSync.cpp */, - FFFD5980a7307fcd5980a730 /* src/unix/PsUnixThread.cpp */, - FFFD5980a7987fcd5980a798 /* src/unix/PsUnixTime.cpp */, + FFFD5a993c007fb05a993c00 /* include/Ps.h */, + FFFD5a993c687fb05a993c68 /* include/PsAlignedMalloc.h */, + FFFD5a993cd07fb05a993cd0 /* include/PsAlloca.h */, + FFFD5a993d387fb05a993d38 /* include/PsAllocator.h */, + FFFD5a993da07fb05a993da0 /* include/PsAoS.h */, + FFFD5a993e087fb05a993e08 /* include/PsArray.h */, + FFFD5a993e707fb05a993e70 /* include/PsAtomic.h */, + FFFD5a993ed87fb05a993ed8 /* include/PsBasicTemplates.h */, + FFFD5a993f407fb05a993f40 /* include/PsBitUtils.h */, + FFFD5a993fa87fb05a993fa8 /* include/PsBroadcast.h */, + FFFD5a9940107fb05a994010 /* include/PsCpu.h */, + FFFD5a9940787fb05a994078 /* include/PsFPU.h */, + FFFD5a9940e07fb05a9940e0 /* include/PsFoundation.h */, + FFFD5a9941487fb05a994148 /* include/PsHash.h */, + FFFD5a9941b07fb05a9941b0 /* include/PsHashInternals.h */, + FFFD5a9942187fb05a994218 /* include/PsHashMap.h */, + FFFD5a9942807fb05a994280 /* include/PsHashSet.h */, + FFFD5a9942e87fb05a9942e8 /* include/PsInlineAllocator.h */, + FFFD5a9943507fb05a994350 /* include/PsInlineAoS.h */, + FFFD5a9943b87fb05a9943b8 /* include/PsInlineArray.h */, + FFFD5a9944207fb05a994420 /* include/PsIntrinsics.h */, + FFFD5a9944887fb05a994488 /* include/PsMathUtils.h */, + FFFD5a9944f07fb05a9944f0 /* include/PsMutex.h */, + FFFD5a9945587fb05a994558 /* include/PsPool.h */, + FFFD5a9945c07fb05a9945c0 /* include/PsSList.h */, + FFFD5a9946287fb05a994628 /* include/PsSocket.h */, + FFFD5a9946907fb05a994690 /* include/PsSort.h */, + FFFD5a9946f87fb05a9946f8 /* include/PsSortInternals.h */, + FFFD5a9947607fb05a994760 /* include/PsString.h */, + FFFD5a9947c87fb05a9947c8 /* include/PsSync.h */, + FFFD5a9948307fb05a994830 /* include/PsTempAllocator.h */, + FFFD5a9948987fb05a994898 /* include/PsThread.h */, + FFFD5a9949007fb05a994900 /* include/PsTime.h */, + FFFD5a9949687fb05a994968 /* include/PsUserAllocated.h */, + FFFD5a9949d07fb05a9949d0 /* include/PsUtilities.h */, + FFFD5a994a387fb05a994a38 /* include/PsVecMath.h */, + FFFD5a994aa07fb05a994aa0 /* include/PsVecMathAoSScalar.h */, + FFFD5a994b087fb05a994b08 /* include/PsVecMathAoSScalarInline.h */, + FFFD5a994b707fb05a994b70 /* include/PsVecMathSSE.h */, + FFFD5a994bd87fb05a994bd8 /* include/PsVecMathUtilities.h */, + FFFD5a994c407fb05a994c40 /* include/PsVecQuat.h */, + FFFD5a994ca87fb05a994ca8 /* include/PsVecTransform.h */, + FFFD5a994d107fb05a994d10 /* include/unix/PsUnixAoS.h */, + FFFD5a994d787fb05a994d78 /* include/unix/PsUnixFPU.h */, + FFFD5a994de07fb05a994de0 /* include/unix/PsUnixInlineAoS.h */, + FFFD5a994e487fb05a994e48 /* include/unix/PsUnixIntrinsics.h */, + FFFD5a994eb07fb05a994eb0 /* include/unix/PsUnixTrigConstants.h */, + FFFD5a994f187fb05a994f18 /* src/PsAllocator.cpp */, + FFFD5a994f807fb05a994f80 /* src/PsAssert.cpp */, + FFFD5a994fe87fb05a994fe8 /* src/PsFoundation.cpp */, + FFFD5a9950507fb05a995050 /* src/PsMathUtils.cpp */, + FFFD5a9950b87fb05a9950b8 /* src/PsString.cpp */, + FFFD5a9951207fb05a995120 /* src/PsTempAllocator.cpp */, + FFFD5a9951887fb05a995188 /* src/PsUtilities.cpp */, + FFFD5a9951f07fb05a9951f0 /* src/unix/PsUnixAtomic.cpp */, + FFFD5a9952587fb05a995258 /* src/unix/PsUnixCpu.cpp */, + FFFD5a9952c07fb05a9952c0 /* src/unix/PsUnixFPU.cpp */, + FFFD5a9953287fb05a995328 /* src/unix/PsUnixMutex.cpp */, + FFFD5a9953907fb05a995390 /* src/unix/PsUnixPrintString.cpp */, + FFFD5a9953f87fb05a9953f8 /* src/unix/PsUnixSList.cpp */, + FFFD5a9954607fb05a995460 /* src/unix/PsUnixSocket.cpp */, + FFFD5a9954c87fb05a9954c8 /* src/unix/PsUnixSync.cpp */, + FFFD5a9955307fb05a995530 /* src/unix/PsUnixThread.cpp */, + FFFD5a9955987fb05a995598 /* src/unix/PsUnixTime.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB582fabb07fcd582fabb0 /* PxPvdSDK */ = { + FFFB5b4338707fb05b433870 /* PxPvdSDK */ = { isa = PBXGroup; children = ( - FFFB5866d8807fcd5866d880 /* include */, - FFFB5866d8a87fcd5866d8a8 /* src */, + FFFB5b435e607fb05b435e60 /* include */, + FFFB5b435e887fb05b435e88 /* src */, ); name = "PxPvdSDK"; sourceTree = "<group>"; }; - FFFB5866d8807fcd5866d880 /* include */ = { + FFFB5b435e607fb05b435e60 /* include */ = { isa = PBXGroup; children = ( - FFFD586834507fcd58683450 /* PxPvd.h */, - FFFD586834b87fcd586834b8 /* PxPvdTransport.h */, + FFFD5b4365307fb05b436530 /* PxPvd.h */, + FFFD5b4365987fb05b436598 /* PxPvdTransport.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5866d8a87fcd5866d8a8 /* src */ = { + FFFB5b435e887fb05b435e88 /* src */ = { isa = PBXGroup; children = ( - FFFD5a05d4007fcd5a05d400 /* include/PsPvd.h */, - FFFD5a05d4687fcd5a05d468 /* include/PxProfileAllocatorWrapper.h */, - FFFD5a05d4d07fcd5a05d4d0 /* include/PxPvdClient.h */, - FFFD5a05d5387fcd5a05d538 /* include/PxPvdDataStream.h */, - FFFD5a05d5a07fcd5a05d5a0 /* include/PxPvdDataStreamHelpers.h */, - FFFD5a05d6087fcd5a05d608 /* include/PxPvdErrorCodes.h */, - FFFD5a05d6707fcd5a05d670 /* include/PxPvdObjectModelBaseTypes.h */, - FFFD5a05d6d87fcd5a05d6d8 /* include/PxPvdRenderBuffer.h */, - FFFD5a05d7407fcd5a05d740 /* include/PxPvdUserRenderer.h */, - FFFD5a05d7a87fcd5a05d7a8 /* src/PxProfileEventImpl.cpp */, - FFFD5a05d8107fcd5a05d810 /* src/PxPvd.cpp */, - FFFD5a05d8787fcd5a05d878 /* src/PxPvdDataStream.cpp */, - FFFD5a05d8e07fcd5a05d8e0 /* src/PxPvdDefaultFileTransport.cpp */, - FFFD5a05d9487fcd5a05d948 /* src/PxPvdDefaultSocketTransport.cpp */, - FFFD5a05d9b07fcd5a05d9b0 /* src/PxPvdImpl.cpp */, - FFFD5a05da187fcd5a05da18 /* src/PxPvdMemClient.cpp */, - FFFD5a05da807fcd5a05da80 /* src/PxPvdObjectModelMetaData.cpp */, - FFFD5a05dae87fcd5a05dae8 /* src/PxPvdObjectRegistrar.cpp */, - FFFD5a05db507fcd5a05db50 /* src/PxPvdProfileZoneClient.cpp */, - FFFD5a05dbb87fcd5a05dbb8 /* src/PxPvdUserRenderer.cpp */, - FFFD5a05dc207fcd5a05dc20 /* src/PxProfileBase.h */, - FFFD5a05dc887fcd5a05dc88 /* src/PxProfileCompileTimeEventFilter.h */, - FFFD5a05dcf07fcd5a05dcf0 /* src/PxProfileContextProvider.h */, - FFFD5a05dd587fcd5a05dd58 /* src/PxProfileContextProviderImpl.h */, - FFFD5a05ddc07fcd5a05ddc0 /* src/PxProfileDataBuffer.h */, - FFFD5a05de287fcd5a05de28 /* src/PxProfileDataParsing.h */, - FFFD5a05de907fcd5a05de90 /* src/PxProfileEventBuffer.h */, - FFFD5a05def87fcd5a05def8 /* src/PxProfileEventBufferAtomic.h */, - FFFD5a05df607fcd5a05df60 /* src/PxProfileEventBufferClient.h */, - FFFD5a05dfc87fcd5a05dfc8 /* src/PxProfileEventBufferClientManager.h */, - FFFD5a05e0307fcd5a05e030 /* src/PxProfileEventFilter.h */, - FFFD5a05e0987fcd5a05e098 /* src/PxProfileEventHandler.h */, - FFFD5a05e1007fcd5a05e100 /* src/PxProfileEventId.h */, - FFFD5a05e1687fcd5a05e168 /* src/PxProfileEventMutex.h */, - FFFD5a05e1d07fcd5a05e1d0 /* src/PxProfileEventNames.h */, - FFFD5a05e2387fcd5a05e238 /* src/PxProfileEventParser.h */, - FFFD5a05e2a07fcd5a05e2a0 /* src/PxProfileEventSender.h */, - FFFD5a05e3087fcd5a05e308 /* src/PxProfileEventSerialization.h */, - FFFD5a05e3707fcd5a05e370 /* src/PxProfileEventSystem.h */, - FFFD5a05e3d87fcd5a05e3d8 /* src/PxProfileEvents.h */, - FFFD5a05e4407fcd5a05e440 /* src/PxProfileMemory.h */, - FFFD5a05e4a87fcd5a05e4a8 /* src/PxProfileMemoryBuffer.h */, - FFFD5a05e5107fcd5a05e510 /* src/PxProfileMemoryEventBuffer.h */, - FFFD5a05e5787fcd5a05e578 /* src/PxProfileMemoryEventParser.h */, - FFFD5a05e5e07fcd5a05e5e0 /* src/PxProfileMemoryEventRecorder.h */, - FFFD5a05e6487fcd5a05e648 /* src/PxProfileMemoryEventReflexiveWriter.h */, - FFFD5a05e6b07fcd5a05e6b0 /* src/PxProfileMemoryEventSummarizer.h */, - FFFD5a05e7187fcd5a05e718 /* src/PxProfileMemoryEventTypes.h */, - FFFD5a05e7807fcd5a05e780 /* src/PxProfileMemoryEvents.h */, - FFFD5a05e7e87fcd5a05e7e8 /* src/PxProfileScopedEvent.h */, - FFFD5a05e8507fcd5a05e850 /* src/PxProfileScopedMutexLock.h */, - FFFD5a05e8b87fcd5a05e8b8 /* src/PxProfileZone.h */, - FFFD5a05e9207fcd5a05e920 /* src/PxProfileZoneImpl.h */, - FFFD5a05e9887fcd5a05e988 /* src/PxProfileZoneManager.h */, - FFFD5a05e9f07fcd5a05e9f0 /* src/PxProfileZoneManagerImpl.h */, - FFFD5a05ea587fcd5a05ea58 /* src/PxPvdBits.h */, - FFFD5a05eac07fcd5a05eac0 /* src/PxPvdByteStreams.h */, - FFFD5a05eb287fcd5a05eb28 /* src/PxPvdCommStreamEventSink.h */, - FFFD5a05eb907fcd5a05eb90 /* src/PxPvdCommStreamEvents.h */, - FFFD5a05ebf87fcd5a05ebf8 /* src/PxPvdCommStreamSDKEventTypes.h */, - FFFD5a05ec607fcd5a05ec60 /* src/PxPvdCommStreamTypes.h */, - FFFD5a05ecc87fcd5a05ecc8 /* src/PxPvdDefaultFileTransport.h */, - FFFD5a05ed307fcd5a05ed30 /* src/PxPvdDefaultSocketTransport.h */, - FFFD5a05ed987fcd5a05ed98 /* src/PxPvdFoundation.h */, - FFFD5a05ee007fcd5a05ee00 /* src/PxPvdImpl.h */, - FFFD5a05ee687fcd5a05ee68 /* src/PxPvdInternalByteStreams.h */, - FFFD5a05eed07fcd5a05eed0 /* src/PxPvdMarshalling.h */, - FFFD5a05ef387fcd5a05ef38 /* src/PxPvdMemClient.h */, - FFFD5a05efa07fcd5a05efa0 /* src/PxPvdObjectModel.h */, - FFFD5a05f0087fcd5a05f008 /* src/PxPvdObjectModelInternalTypeDefs.h */, - FFFD5a05f0707fcd5a05f070 /* src/PxPvdObjectModelInternalTypes.h */, - FFFD5a05f0d87fcd5a05f0d8 /* src/PxPvdObjectModelMetaData.h */, - FFFD5a05f1407fcd5a05f140 /* src/PxPvdObjectRegistrar.h */, - FFFD5a05f1a87fcd5a05f1a8 /* src/PxPvdProfileZoneClient.h */, - FFFD5a05f2107fcd5a05f210 /* src/PxPvdUserRenderImpl.h */, - FFFD5a05f2787fcd5a05f278 /* src/PxPvdUserRenderTypes.h */, + FFFD5b81e6007fb05b81e600 /* include/PsPvd.h */, + FFFD5b81e6687fb05b81e668 /* include/PxProfileAllocatorWrapper.h */, + FFFD5b81e6d07fb05b81e6d0 /* include/PxPvdClient.h */, + FFFD5b81e7387fb05b81e738 /* include/PxPvdDataStream.h */, + FFFD5b81e7a07fb05b81e7a0 /* include/PxPvdDataStreamHelpers.h */, + FFFD5b81e8087fb05b81e808 /* include/PxPvdErrorCodes.h */, + FFFD5b81e8707fb05b81e870 /* include/PxPvdObjectModelBaseTypes.h */, + FFFD5b81e8d87fb05b81e8d8 /* include/PxPvdRenderBuffer.h */, + FFFD5b81e9407fb05b81e940 /* include/PxPvdUserRenderer.h */, + FFFD5b81e9a87fb05b81e9a8 /* src/PxProfileEventImpl.cpp */, + FFFD5b81ea107fb05b81ea10 /* src/PxPvd.cpp */, + FFFD5b81ea787fb05b81ea78 /* src/PxPvdDataStream.cpp */, + FFFD5b81eae07fb05b81eae0 /* src/PxPvdDefaultFileTransport.cpp */, + FFFD5b81eb487fb05b81eb48 /* src/PxPvdDefaultSocketTransport.cpp */, + FFFD5b81ebb07fb05b81ebb0 /* src/PxPvdImpl.cpp */, + FFFD5b81ec187fb05b81ec18 /* src/PxPvdMemClient.cpp */, + FFFD5b81ec807fb05b81ec80 /* src/PxPvdObjectModelMetaData.cpp */, + FFFD5b81ece87fb05b81ece8 /* src/PxPvdObjectRegistrar.cpp */, + FFFD5b81ed507fb05b81ed50 /* src/PxPvdProfileZoneClient.cpp */, + FFFD5b81edb87fb05b81edb8 /* src/PxPvdUserRenderer.cpp */, + FFFD5b81ee207fb05b81ee20 /* src/PxProfileBase.h */, + FFFD5b81ee887fb05b81ee88 /* src/PxProfileCompileTimeEventFilter.h */, + FFFD5b81eef07fb05b81eef0 /* src/PxProfileContextProvider.h */, + FFFD5b81ef587fb05b81ef58 /* src/PxProfileContextProviderImpl.h */, + FFFD5b81efc07fb05b81efc0 /* src/PxProfileDataBuffer.h */, + FFFD5b81f0287fb05b81f028 /* src/PxProfileDataParsing.h */, + FFFD5b81f0907fb05b81f090 /* src/PxProfileEventBuffer.h */, + FFFD5b81f0f87fb05b81f0f8 /* src/PxProfileEventBufferAtomic.h */, + FFFD5b81f1607fb05b81f160 /* src/PxProfileEventBufferClient.h */, + FFFD5b81f1c87fb05b81f1c8 /* src/PxProfileEventBufferClientManager.h */, + FFFD5b81f2307fb05b81f230 /* src/PxProfileEventFilter.h */, + FFFD5b81f2987fb05b81f298 /* src/PxProfileEventHandler.h */, + FFFD5b81f3007fb05b81f300 /* src/PxProfileEventId.h */, + FFFD5b81f3687fb05b81f368 /* src/PxProfileEventMutex.h */, + FFFD5b81f3d07fb05b81f3d0 /* src/PxProfileEventNames.h */, + FFFD5b81f4387fb05b81f438 /* src/PxProfileEventParser.h */, + FFFD5b81f4a07fb05b81f4a0 /* src/PxProfileEventSender.h */, + FFFD5b81f5087fb05b81f508 /* src/PxProfileEventSerialization.h */, + FFFD5b81f5707fb05b81f570 /* src/PxProfileEventSystem.h */, + FFFD5b81f5d87fb05b81f5d8 /* src/PxProfileEvents.h */, + FFFD5b81f6407fb05b81f640 /* src/PxProfileMemory.h */, + FFFD5b81f6a87fb05b81f6a8 /* src/PxProfileMemoryBuffer.h */, + FFFD5b81f7107fb05b81f710 /* src/PxProfileMemoryEventBuffer.h */, + FFFD5b81f7787fb05b81f778 /* src/PxProfileMemoryEventParser.h */, + FFFD5b81f7e07fb05b81f7e0 /* src/PxProfileMemoryEventRecorder.h */, + FFFD5b81f8487fb05b81f848 /* src/PxProfileMemoryEventReflexiveWriter.h */, + FFFD5b81f8b07fb05b81f8b0 /* src/PxProfileMemoryEventSummarizer.h */, + FFFD5b81f9187fb05b81f918 /* src/PxProfileMemoryEventTypes.h */, + FFFD5b81f9807fb05b81f980 /* src/PxProfileMemoryEvents.h */, + FFFD5b81f9e87fb05b81f9e8 /* src/PxProfileScopedEvent.h */, + FFFD5b81fa507fb05b81fa50 /* src/PxProfileScopedMutexLock.h */, + FFFD5b81fab87fb05b81fab8 /* src/PxProfileZone.h */, + FFFD5b81fb207fb05b81fb20 /* src/PxProfileZoneImpl.h */, + FFFD5b81fb887fb05b81fb88 /* src/PxProfileZoneManager.h */, + FFFD5b81fbf07fb05b81fbf0 /* src/PxProfileZoneManagerImpl.h */, + FFFD5b81fc587fb05b81fc58 /* src/PxPvdBits.h */, + FFFD5b81fcc07fb05b81fcc0 /* src/PxPvdByteStreams.h */, + FFFD5b81fd287fb05b81fd28 /* src/PxPvdCommStreamEventSink.h */, + FFFD5b81fd907fb05b81fd90 /* src/PxPvdCommStreamEvents.h */, + FFFD5b81fdf87fb05b81fdf8 /* src/PxPvdCommStreamSDKEventTypes.h */, + FFFD5b81fe607fb05b81fe60 /* src/PxPvdCommStreamTypes.h */, + FFFD5b81fec87fb05b81fec8 /* src/PxPvdDefaultFileTransport.h */, + FFFD5b81ff307fb05b81ff30 /* src/PxPvdDefaultSocketTransport.h */, + FFFD5b81ff987fb05b81ff98 /* src/PxPvdFoundation.h */, + FFFD5b8200007fb05b820000 /* src/PxPvdImpl.h */, + FFFD5b8200687fb05b820068 /* src/PxPvdInternalByteStreams.h */, + FFFD5b8200d07fb05b8200d0 /* src/PxPvdMarshalling.h */, + FFFD5b8201387fb05b820138 /* src/PxPvdMemClient.h */, + FFFD5b8201a07fb05b8201a0 /* src/PxPvdObjectModel.h */, + FFFD5b8202087fb05b820208 /* src/PxPvdObjectModelInternalTypeDefs.h */, + FFFD5b8202707fb05b820270 /* src/PxPvdObjectModelInternalTypes.h */, + FFFD5b8202d87fb05b8202d8 /* src/PxPvdObjectModelMetaData.h */, + FFFD5b8203407fb05b820340 /* src/PxPvdObjectRegistrar.h */, + FFFD5b8203a87fb05b8203a8 /* src/PxPvdProfileZoneClient.h */, + FFFD5b8204107fb05b820410 /* src/PxPvdUserRenderImpl.h */, + FFFD5b8204787fb05b820478 /* src/PxPvdUserRenderTypes.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB56cac0107fcd56cac010 /* LowLevel */ = { + FFFB5b308fd07fb05b308fd0 /* LowLevel */ = { isa = PBXGroup; children = ( - FFFB587890407fcd58789040 /* API Source */, - FFFB587890687fcd58789068 /* API Includes */, - FFFB587890907fcd58789090 /* Software Source */, - FFFB587890b87fcd587890b8 /* Software Includes */, - FFFB587890e07fcd587890e0 /* Common Source */, - FFFB587891087fcd58789108 /* Common Includes */, + FFFB5b30b4e07fb05b30b4e0 /* API Source */, + FFFB5b30b5087fb05b30b508 /* API Includes */, + FFFB5b30b5307fb05b30b530 /* Software Source */, + FFFB5b30b5587fb05b30b558 /* Software Includes */, + FFFB5b30b5807fb05b30b580 /* Common Source */, + FFFB5b30b5a87fb05b30b5a8 /* Common Includes */, ); name = "LowLevel"; sourceTree = "<group>"; }; - FFFB587890407fcd58789040 /* API Source */ = { + FFFB5b30b4e07fb05b30b4e0 /* API Source */ = { isa = PBXGroup; children = ( - FFFD58791c907fcd58791c90 /* px_globals.cpp */, + FFFD5b30b4307fb05b30b430 /* px_globals.cpp */, ); name = "API Source"; sourceTree = SOURCE_ROOT; }; - FFFB587890687fcd58789068 /* API Includes */ = { + FFFB5b30b5087fb05b30b508 /* API Includes */ = { isa = PBXGroup; children = ( - FFFD5878a3407fcd5878a340 /* PxsMaterialCore.h */, - FFFD5878a3a87fcd5878a3a8 /* PxsMaterialManager.h */, - FFFD5878a4107fcd5878a410 /* PxvConfig.h */, - FFFD5878a4787fcd5878a478 /* PxvContext.h */, - FFFD5878a4e07fcd5878a4e0 /* PxvDynamics.h */, - FFFD5878a5487fcd5878a548 /* PxvGeometry.h */, - FFFD5878a5b07fcd5878a5b0 /* PxvGlobals.h */, - FFFD5878a6187fcd5878a618 /* PxvManager.h */, - FFFD5878a6807fcd5878a680 /* PxvSimStats.h */, + FFFD5b30cb307fb05b30cb30 /* PxsMaterialCore.h */, + FFFD5b30cb987fb05b30cb98 /* PxsMaterialManager.h */, + FFFD5b30cc007fb05b30cc00 /* PxvConfig.h */, + FFFD5b30cc687fb05b30cc68 /* PxvContext.h */, + FFFD5b30ccd07fb05b30ccd0 /* PxvDynamics.h */, + FFFD5b30cd387fb05b30cd38 /* PxvGeometry.h */, + FFFD5b30cda07fb05b30cda0 /* PxvGlobals.h */, + FFFD5b30ce087fb05b30ce08 /* PxvManager.h */, + FFFD5b30ce707fb05b30ce70 /* PxvSimStats.h */, ); name = "API Includes"; sourceTree = SOURCE_ROOT; }; - FFFB587890907fcd58789090 /* Software Source */ = { + FFFB5b30b5307fb05b30b530 /* Software Source */ = { isa = PBXGroup; children = ( - FFFD5878b4607fcd5878b460 /* PxsCCD.cpp */, - FFFD5878b4c87fcd5878b4c8 /* PxsContactManager.cpp */, - FFFD5878b5307fcd5878b530 /* PxsContext.cpp */, - FFFD5878b5987fcd5878b598 /* PxsDefaultMemoryManager.cpp */, - FFFD5878b6007fcd5878b600 /* PxsIslandSim.cpp */, - FFFD5878b6687fcd5878b668 /* PxsMaterialCombiner.cpp */, - FFFD5878b6d07fcd5878b6d0 /* PxsNphaseImplementationContext.cpp */, - FFFD5878b7387fcd5878b738 /* PxsSimpleIslandManager.cpp */, + FFFD5b30dd107fb05b30dd10 /* PxsCCD.cpp */, + FFFD5b30dd787fb05b30dd78 /* PxsContactManager.cpp */, + FFFD5b30dde07fb05b30dde0 /* PxsContext.cpp */, + FFFD5b30de487fb05b30de48 /* PxsDefaultMemoryManager.cpp */, + FFFD5b30deb07fb05b30deb0 /* PxsIslandSim.cpp */, + FFFD5b30df187fb05b30df18 /* PxsMaterialCombiner.cpp */, + FFFD5b30df807fb05b30df80 /* PxsNphaseImplementationContext.cpp */, + FFFD5b30dfe87fb05b30dfe8 /* PxsSimpleIslandManager.cpp */, ); name = "Software Source"; sourceTree = SOURCE_ROOT; }; - FFFB587890b87fcd587890b8 /* Software Includes */ = { + FFFB5b30b5587fb05b30b558 /* Software Includes */ = { isa = PBXGroup; children = ( - FFFD5900ca007fcd5900ca00 /* PxsBodySim.h */, - FFFD5900ca687fcd5900ca68 /* PxsCCD.h */, - FFFD5900cad07fcd5900cad0 /* PxsContactManager.h */, - FFFD5900cb387fcd5900cb38 /* PxsContactManagerState.h */, - FFFD5900cba07fcd5900cba0 /* PxsContext.h */, - FFFD5900cc087fcd5900cc08 /* PxsDefaultMemoryManager.h */, - FFFD5900cc707fcd5900cc70 /* PxsHeapMemoryAllocator.h */, - FFFD5900ccd87fcd5900ccd8 /* PxsIncrementalConstraintPartitioning.h */, - FFFD5900cd407fcd5900cd40 /* PxsIslandManagerTypes.h */, - FFFD5900cda87fcd5900cda8 /* PxsIslandSim.h */, - FFFD5900ce107fcd5900ce10 /* PxsKernelWrangler.h */, - FFFD5900ce787fcd5900ce78 /* PxsMaterialCombiner.h */, - FFFD5900cee07fcd5900cee0 /* PxsMemoryManager.h */, - FFFD5900cf487fcd5900cf48 /* PxsNphaseImplementationContext.h */, - FFFD5900cfb07fcd5900cfb0 /* PxsRigidBody.h */, - FFFD5900d0187fcd5900d018 /* PxsShapeSim.h */, - FFFD5900d0807fcd5900d080 /* PxsSimpleIslandManager.h */, - FFFD5900d0e87fcd5900d0e8 /* PxsSimulationController.h */, - FFFD5900d1507fcd5900d150 /* PxsTransformCache.h */, - FFFD5900d1b87fcd5900d1b8 /* PxvNphaseImplementationContext.h */, + FFFD5a9ad6007fb05a9ad600 /* PxsBodySim.h */, + FFFD5a9ad6687fb05a9ad668 /* PxsCCD.h */, + FFFD5a9ad6d07fb05a9ad6d0 /* PxsContactManager.h */, + FFFD5a9ad7387fb05a9ad738 /* PxsContactManagerState.h */, + FFFD5a9ad7a07fb05a9ad7a0 /* PxsContext.h */, + FFFD5a9ad8087fb05a9ad808 /* PxsDefaultMemoryManager.h */, + FFFD5a9ad8707fb05a9ad870 /* PxsHeapMemoryAllocator.h */, + FFFD5a9ad8d87fb05a9ad8d8 /* PxsIncrementalConstraintPartitioning.h */, + FFFD5a9ad9407fb05a9ad940 /* PxsIslandManagerTypes.h */, + FFFD5a9ad9a87fb05a9ad9a8 /* PxsIslandSim.h */, + FFFD5a9ada107fb05a9ada10 /* PxsKernelWrangler.h */, + FFFD5a9ada787fb05a9ada78 /* PxsMaterialCombiner.h */, + FFFD5a9adae07fb05a9adae0 /* PxsMemoryManager.h */, + FFFD5a9adb487fb05a9adb48 /* PxsNphaseImplementationContext.h */, + FFFD5a9adbb07fb05a9adbb0 /* PxsRigidBody.h */, + FFFD5a9adc187fb05a9adc18 /* PxsShapeSim.h */, + FFFD5a9adc807fb05a9adc80 /* PxsSimpleIslandManager.h */, + FFFD5a9adce87fb05a9adce8 /* PxsSimulationController.h */, + FFFD5a9add507fb05a9add50 /* PxsTransformCache.h */, + FFFD5a9addb87fb05a9addb8 /* PxvNphaseImplementationContext.h */, ); name = "Software Includes"; sourceTree = SOURCE_ROOT; }; - FFFB587890e07fcd587890e0 /* Common Source */ = { + FFFB5b30b5807fb05b30b580 /* Common Source */ = { isa = PBXGroup; children = ( - FFFD59008a007fcd59008a00 /* collision/PxcContact.cpp */, - FFFD59008a687fcd59008a68 /* pipeline/PxcContactCache.cpp */, - FFFD59008ad07fcd59008ad0 /* pipeline/PxcContactMethodImpl.cpp */, - FFFD59008b387fcd59008b38 /* pipeline/PxcMaterialHeightField.cpp */, - FFFD59008ba07fcd59008ba0 /* pipeline/PxcMaterialMesh.cpp */, - FFFD59008c087fcd59008c08 /* pipeline/PxcMaterialMethodImpl.cpp */, - FFFD59008c707fcd59008c70 /* pipeline/PxcMaterialShape.cpp */, - FFFD59008cd87fcd59008cd8 /* pipeline/PxcNpBatch.cpp */, - FFFD59008d407fcd59008d40 /* pipeline/PxcNpCacheStreamPair.cpp */, - FFFD59008da87fcd59008da8 /* pipeline/PxcNpContactPrepShared.cpp */, - FFFD59008e107fcd59008e10 /* pipeline/PxcNpMemBlockPool.cpp */, - FFFD59008e787fcd59008e78 /* pipeline/PxcNpThreadContext.cpp */, + FFFD5a9a08007fb05a9a0800 /* collision/PxcContact.cpp */, + FFFD5a9a08687fb05a9a0868 /* pipeline/PxcContactCache.cpp */, + FFFD5a9a08d07fb05a9a08d0 /* pipeline/PxcContactMethodImpl.cpp */, + FFFD5a9a09387fb05a9a0938 /* pipeline/PxcMaterialHeightField.cpp */, + FFFD5a9a09a07fb05a9a09a0 /* pipeline/PxcMaterialMesh.cpp */, + FFFD5a9a0a087fb05a9a0a08 /* pipeline/PxcMaterialMethodImpl.cpp */, + FFFD5a9a0a707fb05a9a0a70 /* pipeline/PxcMaterialShape.cpp */, + FFFD5a9a0ad87fb05a9a0ad8 /* pipeline/PxcNpBatch.cpp */, + FFFD5a9a0b407fb05a9a0b40 /* pipeline/PxcNpCacheStreamPair.cpp */, + FFFD5a9a0ba87fb05a9a0ba8 /* pipeline/PxcNpContactPrepShared.cpp */, + FFFD5a9a0c107fb05a9a0c10 /* pipeline/PxcNpMemBlockPool.cpp */, + FFFD5a9a0c787fb05a9a0c78 /* pipeline/PxcNpThreadContext.cpp */, ); name = "Common Source"; sourceTree = SOURCE_ROOT; }; - FFFB587891087fcd58789108 /* Common Includes */ = { + FFFB5b30b5a87fb05b30b5a8 /* Common Includes */ = { isa = PBXGroup; children = ( - FFFD590092007fcd59009200 /* collision/PxcContactMethodImpl.h */, - FFFD590092687fcd59009268 /* pipeline/PxcCCDStateStreamPair.h */, - FFFD590092d07fcd590092d0 /* pipeline/PxcConstraintBlockStream.h */, - FFFD590093387fcd59009338 /* pipeline/PxcContactCache.h */, - FFFD590093a07fcd590093a0 /* pipeline/PxcMaterialMethodImpl.h */, - FFFD590094087fcd59009408 /* pipeline/PxcNpBatch.h */, - FFFD590094707fcd59009470 /* pipeline/PxcNpCache.h */, - FFFD590094d87fcd590094d8 /* pipeline/PxcNpCacheStreamPair.h */, - FFFD590095407fcd59009540 /* pipeline/PxcNpContactPrepShared.h */, - FFFD590095a87fcd590095a8 /* pipeline/PxcNpMemBlockPool.h */, - FFFD590096107fcd59009610 /* pipeline/PxcNpThreadContext.h */, - FFFD590096787fcd59009678 /* pipeline/PxcNpWorkUnit.h */, - FFFD590096e07fcd590096e0 /* pipeline/PxcRigidBody.h */, - FFFD590097487fcd59009748 /* utils/PxcScratchAllocator.h */, - FFFD590097b07fcd590097b0 /* utils/PxcThreadCoherentCache.h */, + FFFD5a9ac8007fb05a9ac800 /* collision/PxcContactMethodImpl.h */, + FFFD5a9ac8687fb05a9ac868 /* pipeline/PxcCCDStateStreamPair.h */, + FFFD5a9ac8d07fb05a9ac8d0 /* pipeline/PxcConstraintBlockStream.h */, + FFFD5a9ac9387fb05a9ac938 /* pipeline/PxcContactCache.h */, + FFFD5a9ac9a07fb05a9ac9a0 /* pipeline/PxcMaterialMethodImpl.h */, + FFFD5a9aca087fb05a9aca08 /* pipeline/PxcNpBatch.h */, + FFFD5a9aca707fb05a9aca70 /* pipeline/PxcNpCache.h */, + FFFD5a9acad87fb05a9acad8 /* pipeline/PxcNpCacheStreamPair.h */, + FFFD5a9acb407fb05a9acb40 /* pipeline/PxcNpContactPrepShared.h */, + FFFD5a9acba87fb05a9acba8 /* pipeline/PxcNpMemBlockPool.h */, + FFFD5a9acc107fb05a9acc10 /* pipeline/PxcNpThreadContext.h */, + FFFD5a9acc787fb05a9acc78 /* pipeline/PxcNpWorkUnit.h */, + FFFD5a9acce07fb05a9acce0 /* pipeline/PxcRigidBody.h */, + FFFD5a9acd487fb05a9acd48 /* utils/PxcScratchAllocator.h */, + FFFD5a9acdb07fb05a9acdb0 /* utils/PxcThreadCoherentCache.h */, ); name = "Common Includes"; sourceTree = SOURCE_ROOT; }; - FFFB5879adc07fcd5879adc0 /* LowLevelAABB */ = { + FFFB5c8058807fb05c805880 /* LowLevelAABB */ = { isa = PBXGroup; children = ( - FFFB5879ca107fcd5879ca10 /* include */, - FFFB5879ca387fcd5879ca38 /* src */, + FFFB5c80c1b07fb05c80c1b0 /* include */, + FFFB5c80c1d87fb05c80c1d8 /* src */, ); name = "LowLevelAABB"; sourceTree = "<group>"; }; - FFFB5879ca107fcd5879ca10 /* include */ = { + FFFB5c80c1b07fb05c80c1b0 /* include */ = { isa = PBXGroup; children = ( - FFFD5879ca607fcd5879ca60 /* BpAABBManagerTasks.h */, - FFFD5879cac87fcd5879cac8 /* BpBroadPhase.h */, - FFFD5879cb307fcd5879cb30 /* BpBroadPhaseUpdate.h */, - FFFD5879cb987fcd5879cb98 /* BpSimpleAABBManager.h */, + FFFD5c80c6d07fb05c80c6d0 /* BpAABBManagerTasks.h */, + FFFD5c80c7387fb05c80c738 /* BpBroadPhase.h */, + FFFD5c80c7a07fb05c80c7a0 /* BpBroadPhaseUpdate.h */, + FFFD5c80c8087fb05c80c808 /* BpSimpleAABBManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5879ca387fcd5879ca38 /* src */ = { + FFFB5c80c1d87fb05c80c1d8 /* src */ = { isa = PBXGroup; children = ( - FFFD590142007fcd59014200 /* BpBroadPhaseMBP.h */, - FFFD590142687fcd59014268 /* BpBroadPhaseMBPCommon.h */, - FFFD590142d07fcd590142d0 /* BpBroadPhaseSap.h */, - FFFD590143387fcd59014338 /* BpBroadPhaseSapAux.h */, - FFFD590143a07fcd590143a0 /* BpMBPTasks.h */, - FFFD590144087fcd59014408 /* BpSAPTasks.h */, - FFFD590144707fcd59014470 /* BpBroadPhase.cpp */, - FFFD590144d87fcd590144d8 /* BpBroadPhaseMBP.cpp */, - FFFD590145407fcd59014540 /* BpBroadPhaseSap.cpp */, - FFFD590145a87fcd590145a8 /* BpBroadPhaseSapAux.cpp */, - FFFD590146107fcd59014610 /* BpMBPTasks.cpp */, - FFFD590146787fcd59014678 /* BpSAPTasks.cpp */, - FFFD590146e07fcd590146e0 /* BpSimpleAABBManager.cpp */, + FFFD5d0012007fb05d001200 /* BpBroadPhaseMBP.h */, + FFFD5d0012687fb05d001268 /* BpBroadPhaseMBPCommon.h */, + FFFD5d0012d07fb05d0012d0 /* BpBroadPhaseSap.h */, + FFFD5d0013387fb05d001338 /* BpBroadPhaseSapAux.h */, + FFFD5d0013a07fb05d0013a0 /* BpMBPTasks.h */, + FFFD5d0014087fb05d001408 /* BpSAPTasks.h */, + FFFD5d0014707fb05d001470 /* BpBroadPhase.cpp */, + FFFD5d0014d87fb05d0014d8 /* BpBroadPhaseMBP.cpp */, + FFFD5d0015407fb05d001540 /* BpBroadPhaseSap.cpp */, + FFFD5d0015a87fb05d0015a8 /* BpBroadPhaseSapAux.cpp */, + FFFD5d0016107fb05d001610 /* BpMBPTasks.cpp */, + FFFD5d0016787fb05d001678 /* BpSAPTasks.cpp */, + FFFD5d0016e07fb05d0016e0 /* BpSimpleAABBManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB56dc69f07fcd56dc69f0 /* LowLevelDynamics */ = { + FFFB5b45afc07fb05b45afc0 /* LowLevelDynamics */ = { isa = PBXGroup; children = ( - FFFB587aae707fcd587aae70 /* Dynamics Source */, - FFFB587aae987fcd587aae98 /* Dynamics Includes */, - FFFB587aaec07fcd587aaec0 /* Dynamics Internal Includes */, + FFFB5b4462e07fb05b4462e0 /* Dynamics Source */, + FFFB5b4463087fb05b446308 /* Dynamics Includes */, + FFFB5b4463307fb05b446330 /* Dynamics Internal Includes */, ); name = "LowLevelDynamics"; sourceTree = "<group>"; }; - FFFB587aae707fcd587aae70 /* Dynamics Source */ = { + FFFB5b4462e07fb05b4462e0 /* Dynamics Source */ = { isa = PBXGroup; children = ( - FFFD59014a007fcd59014a00 /* DyArticulation.cpp */, - FFFD59014a687fcd59014a68 /* DyArticulationContactPrep.cpp */, - FFFD59014ad07fcd59014ad0 /* DyArticulationContactPrepPF.cpp */, - FFFD59014b387fcd59014b38 /* DyArticulationHelper.cpp */, - FFFD59014ba07fcd59014ba0 /* DyArticulationSIMD.cpp */, - FFFD59014c087fcd59014c08 /* DyArticulationScalar.cpp */, - FFFD59014c707fcd59014c70 /* DyConstraintPartition.cpp */, - FFFD59014cd87fcd59014cd8 /* DyConstraintSetup.cpp */, - FFFD59014d407fcd59014d40 /* DyConstraintSetupBlock.cpp */, - FFFD59014da87fcd59014da8 /* DyContactPrep.cpp */, - FFFD59014e107fcd59014e10 /* DyContactPrep4.cpp */, - FFFD59014e787fcd59014e78 /* DyContactPrep4PF.cpp */, - FFFD59014ee07fcd59014ee0 /* DyContactPrepPF.cpp */, - FFFD59014f487fcd59014f48 /* DyDynamics.cpp */, - FFFD59014fb07fcd59014fb0 /* DyFrictionCorrelation.cpp */, - FFFD590150187fcd59015018 /* DyRigidBodyToSolverBody.cpp */, - FFFD590150807fcd59015080 /* DySolverConstraints.cpp */, - FFFD590150e87fcd590150e8 /* DySolverConstraintsBlock.cpp */, - FFFD590151507fcd59015150 /* DySolverControl.cpp */, - FFFD590151b87fcd590151b8 /* DySolverControlPF.cpp */, - FFFD590152207fcd59015220 /* DySolverPFConstraints.cpp */, - FFFD590152887fcd59015288 /* DySolverPFConstraintsBlock.cpp */, - FFFD590152f07fcd590152f0 /* DyThreadContext.cpp */, - FFFD590153587fcd59015358 /* DyThresholdTable.cpp */, + FFFD5b8278007fb05b827800 /* DyArticulation.cpp */, + FFFD5b8278687fb05b827868 /* DyArticulationContactPrep.cpp */, + FFFD5b8278d07fb05b8278d0 /* DyArticulationContactPrepPF.cpp */, + FFFD5b8279387fb05b827938 /* DyArticulationHelper.cpp */, + FFFD5b8279a07fb05b8279a0 /* DyArticulationSIMD.cpp */, + FFFD5b827a087fb05b827a08 /* DyArticulationScalar.cpp */, + FFFD5b827a707fb05b827a70 /* DyConstraintPartition.cpp */, + FFFD5b827ad87fb05b827ad8 /* DyConstraintSetup.cpp */, + FFFD5b827b407fb05b827b40 /* DyConstraintSetupBlock.cpp */, + FFFD5b827ba87fb05b827ba8 /* DyContactPrep.cpp */, + FFFD5b827c107fb05b827c10 /* DyContactPrep4.cpp */, + FFFD5b827c787fb05b827c78 /* DyContactPrep4PF.cpp */, + FFFD5b827ce07fb05b827ce0 /* DyContactPrepPF.cpp */, + FFFD5b827d487fb05b827d48 /* DyDynamics.cpp */, + FFFD5b827db07fb05b827db0 /* DyFrictionCorrelation.cpp */, + FFFD5b827e187fb05b827e18 /* DyRigidBodyToSolverBody.cpp */, + FFFD5b827e807fb05b827e80 /* DySolverConstraints.cpp */, + FFFD5b827ee87fb05b827ee8 /* DySolverConstraintsBlock.cpp */, + FFFD5b827f507fb05b827f50 /* DySolverControl.cpp */, + FFFD5b827fb87fb05b827fb8 /* DySolverControlPF.cpp */, + FFFD5b8280207fb05b828020 /* DySolverPFConstraints.cpp */, + FFFD5b8280887fb05b828088 /* DySolverPFConstraintsBlock.cpp */, + FFFD5b8280f07fb05b8280f0 /* DyThreadContext.cpp */, + FFFD5b8281587fb05b828158 /* DyThresholdTable.cpp */, ); name = "Dynamics Source"; sourceTree = SOURCE_ROOT; }; - FFFB587aae987fcd587aae98 /* Dynamics Includes */ = { + FFFB5b4463087fb05b446308 /* Dynamics Includes */ = { isa = PBXGroup; children = ( - FFFD587a31d07fcd587a31d0 /* DyArticulation.h */, - FFFD587a32387fcd587a3238 /* DyConstraint.h */, - FFFD587a32a07fcd587a32a0 /* DyConstraintWriteBack.h */, - FFFD587a33087fcd587a3308 /* DyContext.h */, - FFFD587a33707fcd587a3370 /* DyGpuAPI.h */, - FFFD587a33d87fcd587a33d8 /* DySleepingConfigulation.h */, - FFFD587a34407fcd587a3440 /* DyThresholdTable.h */, + FFFD5b447df07fb05b447df0 /* DyArticulation.h */, + FFFD5b447e587fb05b447e58 /* DyConstraint.h */, + FFFD5b447ec07fb05b447ec0 /* DyConstraintWriteBack.h */, + FFFD5b447f287fb05b447f28 /* DyContext.h */, + FFFD5b447f907fb05b447f90 /* DyGpuAPI.h */, + FFFD5b447ff87fb05b447ff8 /* DySleepingConfigulation.h */, + FFFD5b4480607fb05b448060 /* DyThresholdTable.h */, ); name = "Dynamics Includes"; sourceTree = SOURCE_ROOT; }; - FFFB587aaec07fcd587aaec0 /* Dynamics Internal Includes */ = { + FFFB5b4463307fb05b446330 /* Dynamics Internal Includes */ = { isa = PBXGroup; children = ( - FFFD5b03e0007fcd5b03e000 /* DyArticulationContactPrep.h */, - FFFD5b03e0687fcd5b03e068 /* DyArticulationFnsDebug.h */, - FFFD5b03e0d07fcd5b03e0d0 /* DyArticulationFnsScalar.h */, - FFFD5b03e1387fcd5b03e138 /* DyArticulationFnsSimd.h */, - FFFD5b03e1a07fcd5b03e1a0 /* DyArticulationHelper.h */, - FFFD5b03e2087fcd5b03e208 /* DyArticulationPImpl.h */, - FFFD5b03e2707fcd5b03e270 /* DyArticulationReference.h */, - FFFD5b03e2d87fcd5b03e2d8 /* DyArticulationScalar.h */, - FFFD5b03e3407fcd5b03e340 /* DyArticulationUtils.h */, - FFFD5b03e3a87fcd5b03e3a8 /* DyBodyCoreIntegrator.h */, - FFFD5b03e4107fcd5b03e410 /* DyConstraintPartition.h */, - FFFD5b03e4787fcd5b03e478 /* DyConstraintPrep.h */, - FFFD5b03e4e07fcd5b03e4e0 /* DyContactPrep.h */, - FFFD5b03e5487fcd5b03e548 /* DyContactPrepShared.h */, - FFFD5b03e5b07fcd5b03e5b0 /* DyContactReduction.h */, - FFFD5b03e6187fcd5b03e618 /* DyCorrelationBuffer.h */, - FFFD5b03e6807fcd5b03e680 /* DyDynamics.h */, - FFFD5b03e6e87fcd5b03e6e8 /* DyFrictionPatch.h */, - FFFD5b03e7507fcd5b03e750 /* DyFrictionPatchStreamPair.h */, - FFFD5b03e7b87fcd5b03e7b8 /* DySolverBody.h */, - FFFD5b03e8207fcd5b03e820 /* DySolverConstraint1D.h */, - FFFD5b03e8887fcd5b03e888 /* DySolverConstraint1D4.h */, - FFFD5b03e8f07fcd5b03e8f0 /* DySolverConstraintDesc.h */, - FFFD5b03e9587fcd5b03e958 /* DySolverConstraintExtShared.h */, - FFFD5b03e9c07fcd5b03e9c0 /* DySolverConstraintTypes.h */, - FFFD5b03ea287fcd5b03ea28 /* DySolverConstraintsShared.h */, - FFFD5b03ea907fcd5b03ea90 /* DySolverContact.h */, - FFFD5b03eaf87fcd5b03eaf8 /* DySolverContact4.h */, - FFFD5b03eb607fcd5b03eb60 /* DySolverContactPF.h */, - FFFD5b03ebc87fcd5b03ebc8 /* DySolverContactPF4.h */, - FFFD5b03ec307fcd5b03ec30 /* DySolverContext.h */, - FFFD5b03ec987fcd5b03ec98 /* DySolverControl.h */, - FFFD5b03ed007fcd5b03ed00 /* DySolverControlPF.h */, - FFFD5b03ed687fcd5b03ed68 /* DySolverCore.h */, - FFFD5b03edd07fcd5b03edd0 /* DySolverExt.h */, - FFFD5b03ee387fcd5b03ee38 /* DySpatial.h */, - FFFD5b03eea07fcd5b03eea0 /* DyThreadContext.h */, + FFFD5b8290007fb05b829000 /* DyArticulationContactPrep.h */, + FFFD5b8290687fb05b829068 /* DyArticulationFnsDebug.h */, + FFFD5b8290d07fb05b8290d0 /* DyArticulationFnsScalar.h */, + FFFD5b8291387fb05b829138 /* DyArticulationFnsSimd.h */, + FFFD5b8291a07fb05b8291a0 /* DyArticulationHelper.h */, + FFFD5b8292087fb05b829208 /* DyArticulationPImpl.h */, + FFFD5b8292707fb05b829270 /* DyArticulationReference.h */, + FFFD5b8292d87fb05b8292d8 /* DyArticulationScalar.h */, + FFFD5b8293407fb05b829340 /* DyArticulationUtils.h */, + FFFD5b8293a87fb05b8293a8 /* DyBodyCoreIntegrator.h */, + FFFD5b8294107fb05b829410 /* DyConstraintPartition.h */, + FFFD5b8294787fb05b829478 /* DyConstraintPrep.h */, + FFFD5b8294e07fb05b8294e0 /* DyContactPrep.h */, + FFFD5b8295487fb05b829548 /* DyContactPrepShared.h */, + FFFD5b8295b07fb05b8295b0 /* DyContactReduction.h */, + FFFD5b8296187fb05b829618 /* DyCorrelationBuffer.h */, + FFFD5b8296807fb05b829680 /* DyDynamics.h */, + FFFD5b8296e87fb05b8296e8 /* DyFrictionPatch.h */, + FFFD5b8297507fb05b829750 /* DyFrictionPatchStreamPair.h */, + FFFD5b8297b87fb05b8297b8 /* DySolverBody.h */, + FFFD5b8298207fb05b829820 /* DySolverConstraint1D.h */, + FFFD5b8298887fb05b829888 /* DySolverConstraint1D4.h */, + FFFD5b8298f07fb05b8298f0 /* DySolverConstraintDesc.h */, + FFFD5b8299587fb05b829958 /* DySolverConstraintExtShared.h */, + FFFD5b8299c07fb05b8299c0 /* DySolverConstraintTypes.h */, + FFFD5b829a287fb05b829a28 /* DySolverConstraintsShared.h */, + FFFD5b829a907fb05b829a90 /* DySolverContact.h */, + FFFD5b829af87fb05b829af8 /* DySolverContact4.h */, + FFFD5b829b607fb05b829b60 /* DySolverContactPF.h */, + FFFD5b829bc87fb05b829bc8 /* DySolverContactPF4.h */, + FFFD5b829c307fb05b829c30 /* DySolverContext.h */, + FFFD5b829c987fb05b829c98 /* DySolverControl.h */, + FFFD5b829d007fb05b829d00 /* DySolverControlPF.h */, + FFFD5b829d687fb05b829d68 /* DySolverCore.h */, + FFFD5b829dd07fb05b829dd0 /* DySolverExt.h */, + FFFD5b829e387fb05b829e38 /* DySpatial.h */, + FFFD5b829ea07fb05b829ea0 /* DyThreadContext.h */, ); name = "Dynamics Internal Includes"; sourceTree = SOURCE_ROOT; }; - FFFB58692f107fcd58692f10 /* LowLevelCloth */ = { + FFFB5c8281f07fb05c8281f0 /* LowLevelCloth */ = { isa = PBXGroup; children = ( - FFFB5850f3f07fcd5850f3f0 /* include */, - FFFB5850f4187fcd5850f418 /* src */, + FFFB5c8173707fb05c817370 /* include */, + FFFB5c8173987fb05c817398 /* src */, ); name = "LowLevelCloth"; sourceTree = "<group>"; }; - FFFB5850f3f07fcd5850f3f0 /* include */ = { + FFFB5c8173707fb05c817370 /* include */ = { isa = PBXGroup; children = ( - FFFD58516fc07fcd58516fc0 /* Cloth.h */, - FFFD585170287fcd58517028 /* Fabric.h */, - FFFD585170907fcd58517090 /* Factory.h */, - FFFD585170f87fcd585170f8 /* PhaseConfig.h */, - FFFD585171607fcd58517160 /* Range.h */, - FFFD585171c87fcd585171c8 /* Solver.h */, - FFFD585172307fcd58517230 /* Types.h */, + FFFD5c819a607fb05c819a60 /* Cloth.h */, + FFFD5c819ac87fb05c819ac8 /* Fabric.h */, + FFFD5c819b307fb05c819b30 /* Factory.h */, + FFFD5c819b987fb05c819b98 /* PhaseConfig.h */, + FFFD5c819c007fb05c819c00 /* Range.h */, + FFFD5c819c687fb05c819c68 /* Solver.h */, + FFFD5c819cd07fb05c819cd0 /* Types.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5850f4187fcd5850f418 /* src */ = { + FFFB5c8173987fb05c817398 /* src */ = { isa = PBXGroup; children = ( - FFFD570076007fcd57007600 /* Allocator.h */, - FFFD570076687fcd57007668 /* Array.h */, - FFFD570076d07fcd570076d0 /* BoundingBox.h */, - FFFD570077387fcd57007738 /* ClothBase.h */, - FFFD570077a07fcd570077a0 /* ClothImpl.h */, - FFFD570078087fcd57007808 /* IndexPair.h */, - FFFD570078707fcd57007870 /* IterationState.h */, - FFFD570078d87fcd570078d8 /* MovingAverage.h */, - FFFD570079407fcd57007940 /* PointInterpolator.h */, - FFFD570079a87fcd570079a8 /* Simd.h */, - FFFD57007a107fcd57007a10 /* StackAllocator.h */, - FFFD57007a787fcd57007a78 /* SwCloth.h */, - FFFD57007ae07fcd57007ae0 /* SwClothData.h */, - FFFD57007b487fcd57007b48 /* SwCollision.h */, - FFFD57007bb07fcd57007bb0 /* SwCollisionHelpers.h */, - FFFD57007c187fcd57007c18 /* SwFabric.h */, - FFFD57007c807fcd57007c80 /* SwFactory.h */, - FFFD57007ce87fcd57007ce8 /* SwInterCollision.h */, - FFFD57007d507fcd57007d50 /* SwSelfCollision.h */, - FFFD57007db87fcd57007db8 /* SwSolver.h */, - FFFD57007e207fcd57007e20 /* SwSolverKernel.h */, - FFFD57007e887fcd57007e88 /* TripletScheduler.h */, - FFFD57007ef07fcd57007ef0 /* Vec4T.h */, - FFFD57007f587fcd57007f58 /* Allocator.cpp */, - FFFD57007fc07fcd57007fc0 /* Factory.cpp */, - FFFD570080287fcd57008028 /* PhaseConfig.cpp */, - FFFD570080907fcd57008090 /* SwCloth.cpp */, - FFFD570080f87fcd570080f8 /* SwClothData.cpp */, - FFFD570081607fcd57008160 /* SwCollision.cpp */, - FFFD570081c87fcd570081c8 /* SwFabric.cpp */, - FFFD570082307fcd57008230 /* SwFactory.cpp */, - FFFD570082987fcd57008298 /* SwInterCollision.cpp */, - FFFD570083007fcd57008300 /* SwSelfCollision.cpp */, - FFFD570083687fcd57008368 /* SwSolver.cpp */, - FFFD570083d07fcd570083d0 /* SwSolverKernel.cpp */, - FFFD570084387fcd57008438 /* TripletScheduler.cpp */, + FFFD5d011c007fb05d011c00 /* Allocator.h */, + FFFD5d011c687fb05d011c68 /* Array.h */, + FFFD5d011cd07fb05d011cd0 /* BoundingBox.h */, + FFFD5d011d387fb05d011d38 /* ClothBase.h */, + FFFD5d011da07fb05d011da0 /* ClothImpl.h */, + FFFD5d011e087fb05d011e08 /* IndexPair.h */, + FFFD5d011e707fb05d011e70 /* IterationState.h */, + FFFD5d011ed87fb05d011ed8 /* MovingAverage.h */, + FFFD5d011f407fb05d011f40 /* PointInterpolator.h */, + FFFD5d011fa87fb05d011fa8 /* Simd.h */, + FFFD5d0120107fb05d012010 /* StackAllocator.h */, + FFFD5d0120787fb05d012078 /* SwCloth.h */, + FFFD5d0120e07fb05d0120e0 /* SwClothData.h */, + FFFD5d0121487fb05d012148 /* SwCollision.h */, + FFFD5d0121b07fb05d0121b0 /* SwCollisionHelpers.h */, + FFFD5d0122187fb05d012218 /* SwFabric.h */, + FFFD5d0122807fb05d012280 /* SwFactory.h */, + FFFD5d0122e87fb05d0122e8 /* SwInterCollision.h */, + FFFD5d0123507fb05d012350 /* SwSelfCollision.h */, + FFFD5d0123b87fb05d0123b8 /* SwSolver.h */, + FFFD5d0124207fb05d012420 /* SwSolverKernel.h */, + FFFD5d0124887fb05d012488 /* TripletScheduler.h */, + FFFD5d0124f07fb05d0124f0 /* Vec4T.h */, + FFFD5d0125587fb05d012558 /* Allocator.cpp */, + FFFD5d0125c07fb05d0125c0 /* Factory.cpp */, + FFFD5d0126287fb05d012628 /* PhaseConfig.cpp */, + FFFD5d0126907fb05d012690 /* SwCloth.cpp */, + FFFD5d0126f87fb05d0126f8 /* SwClothData.cpp */, + FFFD5d0127607fb05d012760 /* SwCollision.cpp */, + FFFD5d0127c87fb05d0127c8 /* SwFabric.cpp */, + FFFD5d0128307fb05d012830 /* SwFactory.cpp */, + FFFD5d0128987fb05d012898 /* SwInterCollision.cpp */, + FFFD5d0129007fb05d012900 /* SwSelfCollision.cpp */, + FFFD5d0129687fb05d012968 /* SwSolver.cpp */, + FFFD5d0129d07fb05d0129d0 /* SwSolverKernel.cpp */, + FFFD5d012a387fb05d012a38 /* TripletScheduler.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB585295c07fcd585295c0 /* LowLevelParticles */ = { + FFFB5b322ac07fb05b322ac0 /* LowLevelParticles */ = { isa = PBXGroup; children = ( - FFFB585233e07fcd585233e0 /* include */, - FFFB585234087fcd58523408 /* src */, + FFFB5b31e2707fb05b31e270 /* include */, + FFFB5b31e2987fb05b31e298 /* src */, ); name = "LowLevelParticles"; sourceTree = "<group>"; }; - FFFB585233e07fcd585233e0 /* include */ = { + FFFB5b31e2707fb05b31e270 /* include */ = { isa = PBXGroup; children = ( - FFFD5a065c007fcd5a065c00 /* PtBodyTransformVault.h */, - FFFD5a065c687fcd5a065c68 /* PtContext.h */, - FFFD5a065cd07fcd5a065cd0 /* PtGridCellVector.h */, - FFFD5a065d387fcd5a065d38 /* PtParticle.h */, - FFFD5a065da07fcd5a065da0 /* PtParticleContactManagerStream.h */, - FFFD5a065e087fcd5a065e08 /* PtParticleData.h */, - FFFD5a065e707fcd5a065e70 /* PtParticleShape.h */, - FFFD5a065ed87fcd5a065ed8 /* PtParticleSystemCore.h */, - FFFD5a065f407fcd5a065f40 /* PtParticleSystemFlags.h */, - FFFD5a065fa87fcd5a065fa8 /* PtParticleSystemSim.h */, + FFFD5a9ae0007fb05a9ae000 /* PtBodyTransformVault.h */, + FFFD5a9ae0687fb05a9ae068 /* PtContext.h */, + FFFD5a9ae0d07fb05a9ae0d0 /* PtGridCellVector.h */, + FFFD5a9ae1387fb05a9ae138 /* PtParticle.h */, + FFFD5a9ae1a07fb05a9ae1a0 /* PtParticleContactManagerStream.h */, + FFFD5a9ae2087fb05a9ae208 /* PtParticleData.h */, + FFFD5a9ae2707fb05a9ae270 /* PtParticleShape.h */, + FFFD5a9ae2d87fb05a9ae2d8 /* PtParticleSystemCore.h */, + FFFD5a9ae3407fb05a9ae340 /* PtParticleSystemFlags.h */, + FFFD5a9ae3a87fb05a9ae3a8 /* PtParticleSystemSim.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB585234087fcd58523408 /* src */ = { + FFFB5b31e2987fb05b31e298 /* src */ = { isa = PBXGroup; children = ( - FFFD5700c2007fcd5700c200 /* PtBatcher.h */, - FFFD5700c2687fcd5700c268 /* PtCollision.h */, - FFFD5700c2d07fcd5700c2d0 /* PtCollisionData.h */, - FFFD5700c3387fcd5700c338 /* PtCollisionHelper.h */, - FFFD5700c3a07fcd5700c3a0 /* PtCollisionMethods.h */, - FFFD5700c4087fcd5700c408 /* PtCollisionParameters.h */, - FFFD5700c4707fcd5700c470 /* PtConfig.h */, - FFFD5700c4d87fcd5700c4d8 /* PtConstants.h */, - FFFD5700c5407fcd5700c540 /* PtContextCpu.h */, - FFFD5700c5a87fcd5700c5a8 /* PtDynamicHelper.h */, - FFFD5700c6107fcd5700c610 /* PtDynamics.h */, - FFFD5700c6787fcd5700c678 /* PtDynamicsKernels.h */, - FFFD5700c6e07fcd5700c6e0 /* PtDynamicsParameters.h */, - FFFD5700c7487fcd5700c748 /* PtDynamicsTempBuffers.h */, - FFFD5700c7b07fcd5700c7b0 /* PtHeightFieldAabbTest.h */, - FFFD5700c8187fcd5700c818 /* PtPacketSections.h */, - FFFD5700c8807fcd5700c880 /* PtParticleCell.h */, - FFFD5700c8e87fcd5700c8e8 /* PtParticleOpcodeCache.h */, - FFFD5700c9507fcd5700c950 /* PtParticleShapeCpu.h */, - FFFD5700c9b87fcd5700c9b8 /* PtParticleSystemSimCpu.h */, - FFFD5700ca207fcd5700ca20 /* PtSpatialHash.h */, - FFFD5700ca887fcd5700ca88 /* PtSpatialHashHelper.h */, - FFFD5700caf07fcd5700caf0 /* PtTwoWayData.h */, - FFFD5700cb587fcd5700cb58 /* PtBatcher.cpp */, - FFFD5700cbc07fcd5700cbc0 /* PtBodyTransformVault.cpp */, - FFFD5700cc287fcd5700cc28 /* PtCollision.cpp */, - FFFD5700cc907fcd5700cc90 /* PtCollisionBox.cpp */, - FFFD5700ccf87fcd5700ccf8 /* PtCollisionCapsule.cpp */, - FFFD5700cd607fcd5700cd60 /* PtCollisionConvex.cpp */, - FFFD5700cdc87fcd5700cdc8 /* PtCollisionMesh.cpp */, - FFFD5700ce307fcd5700ce30 /* PtCollisionPlane.cpp */, - FFFD5700ce987fcd5700ce98 /* PtCollisionSphere.cpp */, - FFFD5700cf007fcd5700cf00 /* PtContextCpu.cpp */, - FFFD5700cf687fcd5700cf68 /* PtDynamics.cpp */, - FFFD5700cfd07fcd5700cfd0 /* PtParticleData.cpp */, - FFFD5700d0387fcd5700d038 /* PtParticleShapeCpu.cpp */, - FFFD5700d0a07fcd5700d0a0 /* PtParticleSystemSimCpu.cpp */, - FFFD5700d1087fcd5700d108 /* PtSpatialHash.cpp */, - FFFD5700d1707fcd5700d170 /* PtSpatialLocalHash.cpp */, + FFFD5a9b76007fb05a9b7600 /* PtBatcher.h */, + FFFD5a9b76687fb05a9b7668 /* PtCollision.h */, + FFFD5a9b76d07fb05a9b76d0 /* PtCollisionData.h */, + FFFD5a9b77387fb05a9b7738 /* PtCollisionHelper.h */, + FFFD5a9b77a07fb05a9b77a0 /* PtCollisionMethods.h */, + FFFD5a9b78087fb05a9b7808 /* PtCollisionParameters.h */, + FFFD5a9b78707fb05a9b7870 /* PtConfig.h */, + FFFD5a9b78d87fb05a9b78d8 /* PtConstants.h */, + FFFD5a9b79407fb05a9b7940 /* PtContextCpu.h */, + FFFD5a9b79a87fb05a9b79a8 /* PtDynamicHelper.h */, + FFFD5a9b7a107fb05a9b7a10 /* PtDynamics.h */, + FFFD5a9b7a787fb05a9b7a78 /* PtDynamicsKernels.h */, + FFFD5a9b7ae07fb05a9b7ae0 /* PtDynamicsParameters.h */, + FFFD5a9b7b487fb05a9b7b48 /* PtDynamicsTempBuffers.h */, + FFFD5a9b7bb07fb05a9b7bb0 /* PtHeightFieldAabbTest.h */, + FFFD5a9b7c187fb05a9b7c18 /* PtPacketSections.h */, + FFFD5a9b7c807fb05a9b7c80 /* PtParticleCell.h */, + FFFD5a9b7ce87fb05a9b7ce8 /* PtParticleOpcodeCache.h */, + FFFD5a9b7d507fb05a9b7d50 /* PtParticleShapeCpu.h */, + FFFD5a9b7db87fb05a9b7db8 /* PtParticleSystemSimCpu.h */, + FFFD5a9b7e207fb05a9b7e20 /* PtSpatialHash.h */, + FFFD5a9b7e887fb05a9b7e88 /* PtSpatialHashHelper.h */, + FFFD5a9b7ef07fb05a9b7ef0 /* PtTwoWayData.h */, + FFFD5a9b7f587fb05a9b7f58 /* PtBatcher.cpp */, + FFFD5a9b7fc07fb05a9b7fc0 /* PtBodyTransformVault.cpp */, + FFFD5a9b80287fb05a9b8028 /* PtCollision.cpp */, + FFFD5a9b80907fb05a9b8090 /* PtCollisionBox.cpp */, + FFFD5a9b80f87fb05a9b80f8 /* PtCollisionCapsule.cpp */, + FFFD5a9b81607fb05a9b8160 /* PtCollisionConvex.cpp */, + FFFD5a9b81c87fb05a9b81c8 /* PtCollisionMesh.cpp */, + FFFD5a9b82307fb05a9b8230 /* PtCollisionPlane.cpp */, + FFFD5a9b82987fb05a9b8298 /* PtCollisionSphere.cpp */, + FFFD5a9b83007fb05a9b8300 /* PtContextCpu.cpp */, + FFFD5a9b83687fb05a9b8368 /* PtDynamics.cpp */, + FFFD5a9b83d07fb05a9b83d0 /* PtParticleData.cpp */, + FFFD5a9b84387fb05a9b8438 /* PtParticleShapeCpu.cpp */, + FFFD5a9b84a07fb05a9b84a0 /* PtParticleSystemSimCpu.cpp */, + FFFD5a9b85087fb05a9b8508 /* PtSpatialHash.cpp */, + FFFD5a9b85707fb05a9b8570 /* PtSpatialLocalHash.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB585c9d007fcd585c9d00 /* PxTask */ = { + FFFB5c8302207fb05c830220 /* PxTask */ = { isa = PBXGroup; children = ( - FFFB585cb3e07fcd585cb3e0 /* include */, - FFFB585cb4087fcd585cb408 /* src */, + FFFB5c830bd07fb05c830bd0 /* include */, + FFFB5c830bf87fb05c830bf8 /* src */, ); name = "PxTask"; sourceTree = "<group>"; }; - FFFB585cb3e07fcd585cb3e0 /* include */ = { + FFFB5c830bd07fb05c830bd0 /* include */ = { isa = PBXGroup; children = ( - FFFD585cbd607fcd585cbd60 /* PxCpuDispatcher.h */, - FFFD585cbdc87fcd585cbdc8 /* PxGpuDispatcher.h */, - FFFD585cbe307fcd585cbe30 /* PxGpuTask.h */, - FFFD585cbe987fcd585cbe98 /* PxTask.h */, - FFFD585cbf007fcd585cbf00 /* PxTaskDefine.h */, - FFFD585cbf687fcd585cbf68 /* PxTaskManager.h */, + FFFD5c837a607fb05c837a60 /* PxCpuDispatcher.h */, + FFFD5c837ac87fb05c837ac8 /* PxGpuDispatcher.h */, + FFFD5c837b307fb05c837b30 /* PxGpuTask.h */, + FFFD5c837b987fb05c837b98 /* PxTask.h */, + FFFD5c837c007fb05c837c00 /* PxTaskDefine.h */, + FFFD5c837c687fb05c837c68 /* PxTaskManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB585cb4087fcd585cb408 /* src */ = { + FFFB5c830bf87fb05c830bf8 /* src */ = { isa = PBXGroup; children = ( - FFFD585cb4807fcd585cb480 /* src/TaskManager.cpp */, + FFFD5c8373c07fb05c8373c0 /* src/TaskManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB580eddd07fcd580eddd0 /* PsFastXml */ = { + FFFB5cb3a3f07fb05cb3a3f0 /* PsFastXml */ = { isa = PBXGroup; children = ( - FFFB580f7c807fcd580f7c80 /* include */, - FFFB580f7ca87fcd580f7ca8 /* src */, + FFFB5cb35d407fb05cb35d40 /* include */, + FFFB5cb35d687fb05cb35d68 /* src */, ); name = "PsFastXml"; sourceTree = "<group>"; }; - FFFB580f7c807fcd580f7c80 /* include */ = { + FFFB5cb35d407fb05cb35d40 /* include */ = { isa = PBXGroup; children = ( - FFFD580f7e107fcd580f7e10 /* PsFastXml.h */, + FFFD5cb35ed07fb05cb35ed0 /* PsFastXml.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB580f7ca87fcd580f7ca8 /* src */ = { + FFFB5cb35d687fb05cb35d68 /* src */ = { isa = PBXGroup; children = ( - FFFD580f7f107fcd580f7f10 /* PsFastXml.cpp */, + FFFD5cb35e607fb05cb35e60 /* PsFastXml.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; @@ -4991,61 +4991,61 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - FFFA56fa61a07fcd56fa61a0 /* PhysX */ = { + FFFA5cb2e4807fb05cb2e480 /* PhysX */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF656fa61a07fcd56fa61a0 /* Build configuration list for PBXNativeTarget "PhysX" */; + buildConfigurationList = FFF65cb2e4807fb05cb2e480 /* Build configuration list for PBXNativeTarget "PhysX" */; buildPhases = ( - FFF256fa61a07fcd56fa61a0, - FFF856fa61a07fcd56fa61a0, - FFFC56fa61a07fcd56fa61a0, + FFF25cb2e4807fb05cb2e480, + FFF85cb2e4807fb05cb2e480, + FFFC5cb2e4807fb05cb2e480, ); buildRules = ( ); dependencies = ( - FFF45b980ff07fcd5b980ff0, /* LowLevel */ - FFF45b980b907fcd5b980b90, /* LowLevelAABB */ - FFF45b980c507fcd5b980c50, /* LowLevelCloth */ - FFF45b980bf07fcd5b980bf0, /* LowLevelDynamics */ - FFF45b980cb07fcd5b980cb0, /* LowLevelParticles */ - FFF456dfa8007fcd56dfa800, /* PhysXCommon */ - FFF456fa66a07fcd56fa66a0, /* PxFoundation */ - FFF456fa66407fcd56fa6640, /* PxPvdSDK */ - FFF45b986c907fcd5b986c90, /* PxTask */ - FFF45b980d107fcd5b980d10, /* SceneQuery */ - FFF45b986c607fcd5b986c60, /* SimulationController */ + FFF45cb4fe207fb05cb4fe20, /* LowLevel */ + FFF45cb4fe807fb05cb4fe80, /* LowLevelAABB */ + FFF45cb531707fb05cb53170, /* LowLevelCloth */ + FFF45cb531107fb05cb53110, /* LowLevelDynamics */ + FFF45cb531d07fb05cb531d0, /* LowLevelParticles */ + FFF45cb52c107fb05cb52c10, /* PhysXCommon */ + FFF45cb2e7a07fb05cb2e7a0, /* PxFoundation */ + FFF45cb2e4507fb05cb2e450, /* PxPvdSDK */ + FFF45cb4f9507fb05cb4f950, /* PxTask */ + FFF45cb4f8c07fb05cb4f8c0, /* SceneQuery */ + FFF45cb4f9207fb05cb4f920, /* SimulationController */ ); name = "PhysX"; productName = "PhysX"; - productReference = FFFD56fa61a07fcd56fa61a0 /* PhysX */; + productReference = FFFD5cb2e4807fb05cb2e480 /* PhysX */; productType = "com.apple.product-type.library.static"; }; - FFFA5b986ca07fcd5b986ca0 /* PhysXCharacterKinematic */ = { + FFFA5cb4fa707fb05cb4fa70 /* PhysXCharacterKinematic */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b986ca07fcd5b986ca0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; + buildConfigurationList = FFF65cb4fa707fb05cb4fa70 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; buildPhases = ( - FFF25b986ca07fcd5b986ca0, - FFF85b986ca07fcd5b986ca0, - FFFC5b986ca07fcd5b986ca0, + FFF25cb4fa707fb05cb4fa70, + FFF85cb4fa707fb05cb4fa70, + FFFC5cb4fa707fb05cb4fa70, ); buildRules = ( ); dependencies = ( - FFF456e393907fcd56e39390, /* PhysXCommon */ - FFF456e39ea07fcd56e39ea0, /* PhysXExtensions */ - FFF456e3aae07fcd56e3aae0, /* PxFoundation */ + FFF45cb560007fb05cb56000, /* PhysXCommon */ + FFF45cb543d07fb05cb543d0, /* PhysXExtensions */ + FFF45cb54f207fb05cb54f20, /* PxFoundation */ ); name = "PhysXCharacterKinematic"; productName = "PhysXCharacterKinematic"; - productReference = FFFD5b986ca07fcd5b986ca0 /* PhysXCharacterKinematic */; + productReference = FFFD5cb4fa707fb05cb4fa70 /* PhysXCharacterKinematic */; productType = "com.apple.product-type.library.static"; }; - FFFA56e3cde07fcd56e3cde0 /* PhysXVehicle */ = { + FFFA5cb50f307fb05cb50f30 /* PhysXVehicle */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF656e3cde07fcd56e3cde0 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; + buildConfigurationList = FFF65cb50f307fb05cb50f30 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; buildPhases = ( - FFF256e3cde07fcd56e3cde0, - FFF856e3cde07fcd56e3cde0, - FFFC56e3cde07fcd56e3cde0, + FFF25cb50f307fb05cb50f30, + FFF85cb50f307fb05cb50f30, + FFFC5cb50f307fb05cb50f30, ); buildRules = ( ); @@ -5053,34 +5053,34 @@ ); name = "PhysXVehicle"; productName = "PhysXVehicle"; - productReference = FFFD56e3cde07fcd56e3cde0 /* PhysXVehicle */; + productReference = FFFD5cb50f307fb05cb50f30 /* PhysXVehicle */; productType = "com.apple.product-type.library.static"; }; - FFFA586bc1607fcd586bc160 /* PhysXExtensions */ = { + FFFA5cb609d07fb05cb609d0 /* PhysXExtensions */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6586bc1607fcd586bc160 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; + buildConfigurationList = FFF65cb609d07fb05cb609d0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; buildPhases = ( - FFF2586bc1607fcd586bc160, - FFF8586bc1607fcd586bc160, - FFFC586bc1607fcd586bc160, + FFF25cb609d07fb05cb609d0, + FFF85cb609d07fb05cb609d0, + FFFC5cb609d07fb05cb609d0, ); buildRules = ( ); dependencies = ( - FFF4586bbd607fcd586bbd60, /* PsFastXml */ + FFF45cb623b07fb05cb623b0, /* PsFastXml */ ); name = "PhysXExtensions"; productName = "PhysXExtensions"; - productReference = FFFD586bc1607fcd586bc160 /* PhysXExtensions */; + productReference = FFFD5cb609d07fb05cb609d0 /* PhysXExtensions */; productType = "com.apple.product-type.library.static"; }; - FFFA5bb033e07fcd5bb033e0 /* SceneQuery */ = { + FFFA5cb732c07fb05cb732c0 /* SceneQuery */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65bb033e07fcd5bb033e0 /* Build configuration list for PBXNativeTarget "SceneQuery" */; + buildConfigurationList = FFF65cb732c07fb05cb732c0 /* Build configuration list for PBXNativeTarget "SceneQuery" */; buildPhases = ( - FFF25bb033e07fcd5bb033e0, - FFF85bb033e07fcd5bb033e0, - FFFC5bb033e07fcd5bb033e0, + FFF25cb732c07fb05cb732c0, + FFF85cb732c07fb05cb732c0, + FFFC5cb732c07fb05cb732c0, ); buildRules = ( ); @@ -5088,16 +5088,16 @@ ); name = "SceneQuery"; productName = "SceneQuery"; - productReference = FFFD5bb033e07fcd5bb033e0 /* SceneQuery */; + productReference = FFFD5cb732c07fb05cb732c0 /* SceneQuery */; productType = "com.apple.product-type.library.static"; }; - FFFA5bb075b07fcd5bb075b0 /* SimulationController */ = { + FFFA5cb778e07fb05cb778e0 /* SimulationController */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65bb075b07fcd5bb075b0 /* Build configuration list for PBXNativeTarget "SimulationController" */; + buildConfigurationList = FFF65cb778e07fb05cb778e0 /* Build configuration list for PBXNativeTarget "SimulationController" */; buildPhases = ( - FFF25bb075b07fcd5bb075b0, - FFF85bb075b07fcd5bb075b0, - FFFC5bb075b07fcd5bb075b0, + FFF25cb778e07fb05cb778e0, + FFF85cb778e07fb05cb778e0, + FFFC5cb778e07fb05cb778e0, ); buildRules = ( ); @@ -5105,54 +5105,54 @@ ); name = "SimulationController"; productName = "SimulationController"; - productReference = FFFD5bb075b07fcd5bb075b0 /* SimulationController */; + productReference = FFFD5cb778e07fb05cb778e0 /* SimulationController */; productType = "com.apple.product-type.library.static"; }; - FFFA5b98d5507fcd5b98d550 /* PhysXCooking */ = { + FFFA5cb7c7007fb05cb7c700 /* PhysXCooking */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b98d5507fcd5b98d550 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; + buildConfigurationList = FFF65cb7c7007fb05cb7c700 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; buildPhases = ( - FFF25b98d5507fcd5b98d550, - FFF85b98d5507fcd5b98d550, - FFFC5b98d5507fcd5b98d550, + FFF25cb7c7007fb05cb7c700, + FFF85cb7c7007fb05cb7c700, + FFFC5cb7c7007fb05cb7c700, ); buildRules = ( ); dependencies = ( - FFF4580e25c07fcd580e25c0, /* PhysXCommon */ - FFF4580e26b07fcd580e26b0, /* PhysXExtensions */ - FFF45b989ce07fcd5b989ce0, /* PxFoundation */ + FFF45cb872607fb05cb87260, /* PhysXCommon */ + FFF45cb802007fb05cb80200, /* PhysXExtensions */ + FFF45cb7eff07fb05cb7eff0, /* PxFoundation */ ); name = "PhysXCooking"; productName = "PhysXCooking"; - productReference = FFFD5b98d5507fcd5b98d550 /* PhysXCooking */; + productReference = FFFD5cb7c7007fb05cb7c700 /* PhysXCooking */; productType = "com.apple.product-type.library.static"; }; - FFFA56e143207fcd56e14320 /* PhysXCommon */ = { + FFFA5b2fb4e07fb05b2fb4e0 /* PhysXCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF656e143207fcd56e14320 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; + buildConfigurationList = FFF65b2fb4e07fb05b2fb4e0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; buildPhases = ( - FFF256e143207fcd56e14320, - FFF856e143207fcd56e14320, - FFFC56e143207fcd56e14320, + FFF25b2fb4e07fb05b2fb4e0, + FFF85b2fb4e07fb05b2fb4e0, + FFFC5b2fb4e07fb05b2fb4e0, ); buildRules = ( ); dependencies = ( - FFF456e15ad07fcd56e15ad0, /* PxFoundation */ + FFF45b2fa1707fb05b2fa170, /* PxFoundation */ ); name = "PhysXCommon"; productName = "PhysXCommon"; - productReference = FFFD56e143207fcd56e14320 /* PhysXCommon */; + productReference = FFFD5b2fb4e07fb05b2fb4e0 /* PhysXCommon */; productType = "com.apple.product-type.library.static"; }; - FFFA585016d07fcd585016d0 /* PxFoundation */ = { + FFFA5b080a507fb05b080a50 /* PxFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6585016d07fcd585016d0 /* Build configuration list for PBXNativeTarget "PxFoundation" */; + buildConfigurationList = FFF65b080a507fb05b080a50 /* Build configuration list for PBXNativeTarget "PxFoundation" */; buildPhases = ( - FFF2585016d07fcd585016d0, - FFF8585016d07fcd585016d0, - FFFC585016d07fcd585016d0, + FFF25b080a507fb05b080a50, + FFF85b080a507fb05b080a50, + FFFC5b080a507fb05b080a50, ); buildRules = ( ); @@ -5160,34 +5160,34 @@ ); name = "PxFoundation"; productName = "PxFoundation"; - productReference = FFFD585016d07fcd585016d0 /* PxFoundation */; + productReference = FFFD5b080a507fb05b080a50 /* PxFoundation */; productType = "com.apple.product-type.library.static"; }; - FFFA582fabb07fcd582fabb0 /* PxPvdSDK */ = { + FFFA5b4338707fb05b433870 /* PxPvdSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6582fabb07fcd582fabb0 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; + buildConfigurationList = FFF65b4338707fb05b433870 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; buildPhases = ( - FFF2582fabb07fcd582fabb0, - FFF8582fabb07fcd582fabb0, - FFFC582fabb07fcd582fabb0, + FFF25b4338707fb05b433870, + FFF85b4338707fb05b433870, + FFFC5b4338707fb05b433870, ); buildRules = ( ); dependencies = ( - FFF4582fbbb07fcd582fbbb0, /* PxFoundation */ + FFF45b4340307fb05b434030, /* PxFoundation */ ); name = "PxPvdSDK"; productName = "PxPvdSDK"; - productReference = FFFD582fabb07fcd582fabb0 /* PxPvdSDK */; + productReference = FFFD5b4338707fb05b433870 /* PxPvdSDK */; productType = "com.apple.product-type.library.static"; }; - FFFA56cac0107fcd56cac010 /* LowLevel */ = { + FFFA5b308fd07fb05b308fd0 /* LowLevel */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF656cac0107fcd56cac010 /* Build configuration list for PBXNativeTarget "LowLevel" */; + buildConfigurationList = FFF65b308fd07fb05b308fd0 /* Build configuration list for PBXNativeTarget "LowLevel" */; buildPhases = ( - FFF256cac0107fcd56cac010, - FFF856cac0107fcd56cac010, - FFFC56cac0107fcd56cac010, + FFF25b308fd07fb05b308fd0, + FFF85b308fd07fb05b308fd0, + FFFC5b308fd07fb05b308fd0, ); buildRules = ( ); @@ -5195,16 +5195,16 @@ ); name = "LowLevel"; productName = "LowLevel"; - productReference = FFFD56cac0107fcd56cac010 /* LowLevel */; + productReference = FFFD5b308fd07fb05b308fd0 /* LowLevel */; productType = "com.apple.product-type.library.static"; }; - FFFA5879adc07fcd5879adc0 /* LowLevelAABB */ = { + FFFA5c8058807fb05c805880 /* LowLevelAABB */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65879adc07fcd5879adc0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; + buildConfigurationList = FFF65c8058807fb05c805880 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; buildPhases = ( - FFF25879adc07fcd5879adc0, - FFF85879adc07fcd5879adc0, - FFFC5879adc07fcd5879adc0, + FFF25c8058807fb05c805880, + FFF85c8058807fb05c805880, + FFFC5c8058807fb05c805880, ); buildRules = ( ); @@ -5212,16 +5212,16 @@ ); name = "LowLevelAABB"; productName = "LowLevelAABB"; - productReference = FFFD5879adc07fcd5879adc0 /* LowLevelAABB */; + productReference = FFFD5c8058807fb05c805880 /* LowLevelAABB */; productType = "com.apple.product-type.library.static"; }; - FFFA56dc69f07fcd56dc69f0 /* LowLevelDynamics */ = { + FFFA5b45afc07fb05b45afc0 /* LowLevelDynamics */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF656dc69f07fcd56dc69f0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; + buildConfigurationList = FFF65b45afc07fb05b45afc0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; buildPhases = ( - FFF256dc69f07fcd56dc69f0, - FFF856dc69f07fcd56dc69f0, - FFFC56dc69f07fcd56dc69f0, + FFF25b45afc07fb05b45afc0, + FFF85b45afc07fb05b45afc0, + FFFC5b45afc07fb05b45afc0, ); buildRules = ( ); @@ -5229,16 +5229,16 @@ ); name = "LowLevelDynamics"; productName = "LowLevelDynamics"; - productReference = FFFD56dc69f07fcd56dc69f0 /* LowLevelDynamics */; + productReference = FFFD5b45afc07fb05b45afc0 /* LowLevelDynamics */; productType = "com.apple.product-type.library.static"; }; - FFFA58692f107fcd58692f10 /* LowLevelCloth */ = { + FFFA5c8281f07fb05c8281f0 /* LowLevelCloth */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF658692f107fcd58692f10 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; + buildConfigurationList = FFF65c8281f07fb05c8281f0 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; buildPhases = ( - FFF258692f107fcd58692f10, - FFF858692f107fcd58692f10, - FFFC58692f107fcd58692f10, + FFF25c8281f07fb05c8281f0, + FFF85c8281f07fb05c8281f0, + FFFC5c8281f07fb05c8281f0, ); buildRules = ( ); @@ -5246,16 +5246,16 @@ ); name = "LowLevelCloth"; productName = "LowLevelCloth"; - productReference = FFFD58692f107fcd58692f10 /* LowLevelCloth */; + productReference = FFFD5c8281f07fb05c8281f0 /* LowLevelCloth */; productType = "com.apple.product-type.library.static"; }; - FFFA585295c07fcd585295c0 /* LowLevelParticles */ = { + FFFA5b322ac07fb05b322ac0 /* LowLevelParticles */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6585295c07fcd585295c0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; + buildConfigurationList = FFF65b322ac07fb05b322ac0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; buildPhases = ( - FFF2585295c07fcd585295c0, - FFF8585295c07fcd585295c0, - FFFC585295c07fcd585295c0, + FFF25b322ac07fb05b322ac0, + FFF85b322ac07fb05b322ac0, + FFFC5b322ac07fb05b322ac0, ); buildRules = ( ); @@ -5263,16 +5263,16 @@ ); name = "LowLevelParticles"; productName = "LowLevelParticles"; - productReference = FFFD585295c07fcd585295c0 /* LowLevelParticles */; + productReference = FFFD5b322ac07fb05b322ac0 /* LowLevelParticles */; productType = "com.apple.product-type.library.static"; }; - FFFA585c9d007fcd585c9d00 /* PxTask */ = { + FFFA5c8302207fb05c830220 /* PxTask */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6585c9d007fcd585c9d00 /* Build configuration list for PBXNativeTarget "PxTask" */; + buildConfigurationList = FFF65c8302207fb05c830220 /* Build configuration list for PBXNativeTarget "PxTask" */; buildPhases = ( - FFF2585c9d007fcd585c9d00, - FFF8585c9d007fcd585c9d00, - FFFC585c9d007fcd585c9d00, + FFF25c8302207fb05c830220, + FFF85c8302207fb05c830220, + FFFC5c8302207fb05c830220, ); buildRules = ( ); @@ -5280,16 +5280,16 @@ ); name = "PxTask"; productName = "PxTask"; - productReference = FFFD585c9d007fcd585c9d00 /* PxTask */; + productReference = FFFD5c8302207fb05c830220 /* PxTask */; productType = "com.apple.product-type.library.static"; }; - FFFA580eddd07fcd580eddd0 /* PsFastXml */ = { + FFFA5cb3a3f07fb05cb3a3f0 /* PsFastXml */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6580eddd07fcd580eddd0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; + buildConfigurationList = FFF65cb3a3f07fb05cb3a3f0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; buildPhases = ( - FFF2580eddd07fcd580eddd0, - FFF8580eddd07fcd580eddd0, - FFFC580eddd07fcd580eddd0, + FFF25cb3a3f07fb05cb3a3f0, + FFF85cb3a3f07fb05cb3a3f0, + FFFC5cb3a3f07fb05cb3a3f0, ); buildRules = ( ); @@ -5297,213 +5297,213 @@ ); name = "PsFastXml"; productName = "PsFastXml"; - productReference = FFFD580eddd07fcd580eddd0 /* PsFastXml */; + productReference = FFFD5cb3a3f07fb05cb3a3f0 /* PsFastXml */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin XCConfigurationList section */ - FFF656fa61a07fcd56fa61a0 = { + FFF65cb2e4807fb05cb2e480 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a82d6007fcd5a82d600, - FFF75a82dcf07fcd5a82dcf0, - FFF75a82e3e07fcd5a82e3e0, - FFF75a82ead07fcd5a82ead0, + FFF75aa04a007fb05aa04a00, + FFF75aa050f07fb05aa050f0, + FFF75aa057e07fb05aa057e0, + FFF75aa05ed07fb05aa05ed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF65b986ca07fcd5b986ca0 = { + FFF65cb4fa707fb05cb4fa70 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a82f2007fcd5a82f200, - FFF75a82f8f07fcd5a82f8f0, - FFF75a82ffe07fcd5a82ffe0, - FFF75a8306d07fcd5a8306d0, + FFF75aa066007fb05aa06600, + FFF75aa06cf07fb05aa06cf0, + FFF75aa073e07fb05aa073e0, + FFF75aa07ad07fb05aa07ad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF656e3cde07fcd56e3cde0 = { + FFF65cb50f307fb05cb50f30 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a830e007fcd5a830e00, - FFF75a8314f07fcd5a8314f0, - FFF75a831be07fcd5a831be0, - FFF75a8322d07fcd5a8322d0, + FFF75aa082007fb05aa08200, + FFF75aa088f07fb05aa088f0, + FFF75aa08fe07fb05aa08fe0, + FFF75aa096d07fb05aa096d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6586bc1607fcd586bc160 = { + FFF65cb609d07fb05cb609d0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a832a007fcd5a832a00, - FFF75a8330f07fcd5a8330f0, - FFF75a8337e07fcd5a8337e0, - FFF75a833ed07fcd5a833ed0, + FFF75aa09e007fb05aa09e00, + FFF75aa0a4f07fb05aa0a4f0, + FFF75aa0abe07fb05aa0abe0, + FFF75aa0b2d07fb05aa0b2d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65bb033e07fcd5bb033e0 = { + FFF65cb732c07fb05cb732c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a8346007fcd5a834600, - FFF75a834cf07fcd5a834cf0, - FFF75a8353e07fcd5a8353e0, - FFF75a835ad07fcd5a835ad0, + FFF75aa0ba007fb05aa0ba00, + FFF75aa0c0f07fb05aa0c0f0, + FFF75aa0c7e07fb05aa0c7e0, + FFF75aa0ced07fb05aa0ced0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65bb075b07fcd5bb075b0 = { + FFF65cb778e07fb05cb778e0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF757867c007fcd57867c00, - FFF7578682f07fcd578682f0, - FFF7578689e07fcd578689e0, - FFF7578690d07fcd578690d0, + FFF75aa0d6007fb05aa0d600, + FFF75aa0dcf07fb05aa0dcf0, + FFF75aa0e3e07fb05aa0e3e0, + FFF75aa0ead07fb05aa0ead0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65b98d5507fcd5b98d550 = { + FFF65cb7c7007fb05cb7c700 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75881aa007fcd5881aa00, - FFF75881b0f07fcd5881b0f0, - FFF75881b7e07fcd5881b7e0, - FFF75881bed07fcd5881bed0, + FFF75aa0f2007fb05aa0f200, + FFF75aa0f8f07fb05aa0f8f0, + FFF75aa0ffe07fb05aa0ffe0, + FFF75aa106d07fb05aa106d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF656e143207fcd56e14320 = { + FFF65b2fb4e07fb05b2fb4e0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b03c4007fcd5b03c400, - FFF75b03caf07fcd5b03caf0, - FFF75b03d1e07fcd5b03d1e0, - FFF75b03d8d07fcd5b03d8d0, + FFF75b8110007fb05b811000, + FFF75b8116f07fb05b8116f0, + FFF75b811de07fb05b811de0, + FFF75b8124d07fb05b8124d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6585016d07fcd585016d0 = { + FFF65b080a507fb05b080a50 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75900d4007fcd5900d400, - FFF75900daf07fcd5900daf0, - FFF75900e1e07fcd5900e1e0, - FFF75900e8d07fcd5900e8d0, + FFF75a97f0007fb05a97f000, + FFF75a97f6f07fb05a97f6f0, + FFF75a97fde07fb05a97fde0, + FFF75a9804d07fb05a9804d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6582fabb07fcd582fabb0 = { + FFF65b4338707fb05b433870 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a0472007fcd5a047200, - FFF75a0478f07fcd5a0478f0, - FFF75a047fe07fcd5a047fe0, - FFF75a0486d07fcd5a0486d0, + FFF75b81ca007fb05b81ca00, + FFF75b81d0f07fb05b81d0f0, + FFF75b81d7e07fb05b81d7e0, + FFF75b81ded07fb05b81ded0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF656cac0107fcd56cac010 = { + FFF65b308fd07fb05b308fd0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7590106007fcd59010600, - FFF759010cf07fcd59010cf0, - FFF7590113e07fcd590113e0, - FFF759011ad07fcd59011ad0, + FFF75a9af6007fb05a9af600, + FFF75a9afcf07fb05a9afcf0, + FFF75a9b03e07fb05a9b03e0, + FFF75a9b0ad07fb05a9b0ad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65879adc07fcd5879adc0 = { + FFF65c8058807fb05c805880 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7588116007fcd58811600, - FFF758811cf07fcd58811cf0, - FFF7588123e07fcd588123e0, - FFF758812ad07fcd58812ad0, + FFF75d009c007fb05d009c00, + FFF75d00a2f07fb05d00a2f0, + FFF75d00a9e07fb05d00a9e0, + FFF75d00b0d07fb05d00b0d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF656dc69f07fcd56dc69f0 = { + FFF65b45afc07fb05b45afc0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7578584007fcd57858400, - FFF757858af07fcd57858af0, - FFF7578591e07fcd578591e0, - FFF7578598d07fcd578598d0, + FFF75b82aa007fb05b82aa00, + FFF75b82b0f07fb05b82b0f0, + FFF75b82b7e07fb05b82b7e0, + FFF75b82bed07fb05b82bed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF658692f107fcd58692f10 = { + FFF65c8281f07fb05c8281f0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75700a6007fcd5700a600, - FFF75700acf07fcd5700acf0, - FFF75700b3e07fcd5700b3e0, - FFF75700bad07fcd5700bad0, + FFF75d0136007fb05d013600, + FFF75d013cf07fb05d013cf0, + FFF75d0143e07fb05d0143e0, + FFF75d014ad07fb05d014ad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6585295c07fcd585295c0 = { + FFF65b322ac07fb05b322ac0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75700ea007fcd5700ea00, - FFF75700f0f07fcd5700f0f0, - FFF75700f7e07fcd5700f7e0, - FFF75700fed07fcd5700fed0, + FFF75a9b90007fb05a9b9000, + FFF75a9b96f07fb05a9b96f0, + FFF75a9b9de07fb05a9b9de0, + FFF75a9ba4d07fb05a9ba4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6585c9d007fcd585c9d00 = { + FFF65c8302207fb05c830220 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a06b0007fcd5a06b000, - FFF75a06b6f07fcd5a06b6f0, - FFF75a06bde07fcd5a06bde0, - FFF75a06c4d07fcd5a06c4d0, + FFF75d01ac007fb05d01ac00, + FFF75d01b2f07fb05d01b2f0, + FFF75d01b9e07fb05d01b9e0, + FFF75d01c0d07fb05d01c0d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6580eddd07fcd580eddd0 = { + FFF65cb3a3f07fb05cb3a3f0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b0536007fcd5b053600, - FFF75b053cf07fcd5b053cf0, - FFF75b0543e07fcd5b0543e0, - FFF75b054ad07fcd5b054ad0, + FFF75a9df0007fb05a9df000, + FFF75a9df6f07fb05a9df6f0, + FFF75a9dfde07fb05a9dfde0, + FFF75a9e04d07fb05a9e04d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65820b1507fcd5820b150 = { + FFF65a4828f07fb05a4828f0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF35a82d6007fcd5a82d600 /* release */, - FFF35a82dcf07fcd5a82dcf0 /* debug */, - FFF35a82e3e07fcd5a82e3e0 /* checked */, - FFF35a82ead07fcd5a82ead0 /* profile */, + FFF35aa04a007fb05aa04a00 /* release */, + FFF35aa050f07fb05aa050f0 /* debug */, + FFF35aa057e07fb05aa057e0 /* checked */, + FFF35aa05ed07fb05aa05ed0 /* profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; /* End XCConfigurationList section */ /* Begin XCBuildConfiguration section */ - FFF75a82d6007fcd5a82d600 /* release */ = { + FFF75aa04a007fb05aa04a00 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5534,7 +5534,7 @@ }; name = "release"; }; - FFF75a82dcf07fcd5a82dcf0 /* debug */ = { + FFF75aa050f07fb05aa050f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5565,7 +5565,7 @@ }; name = "debug"; }; - FFF75a82e3e07fcd5a82e3e0 /* checked */ = { + FFF75aa057e07fb05aa057e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5596,7 +5596,7 @@ }; name = "checked"; }; - FFF75a82ead07fcd5a82ead0 /* profile */ = { + FFF75aa05ed07fb05aa05ed0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5627,7 +5627,7 @@ }; name = "profile"; }; - FFF75a82f2007fcd5a82f200 /* debug */ = { + FFF75aa066007fb05aa06600 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5658,7 +5658,7 @@ }; name = "debug"; }; - FFF75a82f8f07fcd5a82f8f0 /* checked */ = { + FFF75aa06cf07fb05aa06cf0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5689,7 +5689,7 @@ }; name = "checked"; }; - FFF75a82ffe07fcd5a82ffe0 /* profile */ = { + FFF75aa073e07fb05aa073e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5720,7 +5720,7 @@ }; name = "profile"; }; - FFF75a8306d07fcd5a8306d0 /* release */ = { + FFF75aa07ad07fb05aa07ad0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5751,7 +5751,7 @@ }; name = "release"; }; - FFF75a830e007fcd5a830e00 /* debug */ = { + FFF75aa082007fb05aa08200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5782,7 +5782,7 @@ }; name = "debug"; }; - FFF75a8314f07fcd5a8314f0 /* checked */ = { + FFF75aa088f07fb05aa088f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5813,7 +5813,7 @@ }; name = "checked"; }; - FFF75a831be07fcd5a831be0 /* profile */ = { + FFF75aa08fe07fb05aa08fe0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5844,7 +5844,7 @@ }; name = "profile"; }; - FFF75a8322d07fcd5a8322d0 /* release */ = { + FFF75aa096d07fb05aa096d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5875,7 +5875,7 @@ }; name = "release"; }; - FFF75a832a007fcd5a832a00 /* debug */ = { + FFF75aa09e007fb05aa09e00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5884,7 +5884,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5906,7 +5906,7 @@ }; name = "debug"; }; - FFF75a8330f07fcd5a8330f0 /* checked */ = { + FFF75aa0a4f07fb05aa0a4f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5915,7 +5915,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5937,7 +5937,7 @@ }; name = "checked"; }; - FFF75a8337e07fcd5a8337e0 /* profile */ = { + FFF75aa0abe07fb05aa0abe0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5946,7 +5946,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5968,7 +5968,7 @@ }; name = "profile"; }; - FFF75a833ed07fcd5a833ed0 /* release */ = { + FFF75aa0b2d07fb05aa0b2d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5977,7 +5977,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5999,7 +5999,7 @@ }; name = "release"; }; - FFF75a8346007fcd5a834600 /* debug */ = { + FFF75aa0ba007fb05aa0ba00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6030,7 +6030,7 @@ }; name = "debug"; }; - FFF75a834cf07fcd5a834cf0 /* checked */ = { + FFF75aa0c0f07fb05aa0c0f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6061,7 +6061,7 @@ }; name = "checked"; }; - FFF75a8353e07fcd5a8353e0 /* profile */ = { + FFF75aa0c7e07fb05aa0c7e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6092,7 +6092,7 @@ }; name = "profile"; }; - FFF75a835ad07fcd5a835ad0 /* release */ = { + FFF75aa0ced07fb05aa0ced0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6123,7 +6123,7 @@ }; name = "release"; }; - FFF757867c007fcd57867c00 /* debug */ = { + FFF75aa0d6007fb05aa0d600 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6154,7 +6154,7 @@ }; name = "debug"; }; - FFF7578682f07fcd578682f0 /* checked */ = { + FFF75aa0dcf07fb05aa0dcf0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6185,7 +6185,7 @@ }; name = "checked"; }; - FFF7578689e07fcd578689e0 /* profile */ = { + FFF75aa0e3e07fb05aa0e3e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6216,7 +6216,7 @@ }; name = "profile"; }; - FFF7578690d07fcd578690d0 /* release */ = { + FFF75aa0ead07fb05aa0ead0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6247,7 +6247,7 @@ }; name = "release"; }; - FFF75881aa007fcd5881aa00 /* release */ = { + FFF75aa0f2007fb05aa0f200 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6278,7 +6278,7 @@ }; name = "release"; }; - FFF75881b0f07fcd5881b0f0 /* debug */ = { + FFF75aa0f8f07fb05aa0f8f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6309,7 +6309,7 @@ }; name = "debug"; }; - FFF75881b7e07fcd5881b7e0 /* checked */ = { + FFF75aa0ffe07fb05aa0ffe0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6340,7 +6340,7 @@ }; name = "checked"; }; - FFF75881bed07fcd5881bed0 /* profile */ = { + FFF75aa106d07fb05aa106d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6371,7 +6371,7 @@ }; name = "profile"; }; - FFF75b03c4007fcd5b03c400 /* release */ = { + FFF75b8110007fb05b811000 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6402,7 +6402,7 @@ }; name = "release"; }; - FFF75b03caf07fcd5b03caf0 /* debug */ = { + FFF75b8116f07fb05b8116f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6433,7 +6433,7 @@ }; name = "debug"; }; - FFF75b03d1e07fcd5b03d1e0 /* checked */ = { + FFF75b811de07fb05b811de0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6464,7 +6464,7 @@ }; name = "checked"; }; - FFF75b03d8d07fcd5b03d8d0 /* profile */ = { + FFF75b8124d07fb05b8124d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6495,7 +6495,7 @@ }; name = "profile"; }; - FFF75900d4007fcd5900d400 /* debug */ = { + FFF75a97f0007fb05a97f000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6526,7 +6526,7 @@ }; name = "debug"; }; - FFF75900daf07fcd5900daf0 /* release */ = { + FFF75a97f6f07fb05a97f6f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6557,7 +6557,7 @@ }; name = "release"; }; - FFF75900e1e07fcd5900e1e0 /* checked */ = { + FFF75a97fde07fb05a97fde0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6588,7 +6588,7 @@ }; name = "checked"; }; - FFF75900e8d07fcd5900e8d0 /* profile */ = { + FFF75a9804d07fb05a9804d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6619,7 +6619,7 @@ }; name = "profile"; }; - FFF75a0472007fcd5a047200 /* debug */ = { + FFF75b81ca007fb05b81ca00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6650,7 +6650,7 @@ }; name = "debug"; }; - FFF75a0478f07fcd5a0478f0 /* release */ = { + FFF75b81d0f07fb05b81d0f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6681,7 +6681,7 @@ }; name = "release"; }; - FFF75a047fe07fcd5a047fe0 /* checked */ = { + FFF75b81d7e07fb05b81d7e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6712,7 +6712,7 @@ }; name = "checked"; }; - FFF75a0486d07fcd5a0486d0 /* profile */ = { + FFF75b81ded07fb05b81ded0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6743,7 +6743,7 @@ }; name = "profile"; }; - FFF7590106007fcd59010600 /* debug */ = { + FFF75a9af6007fb05a9af600 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6774,7 +6774,7 @@ }; name = "debug"; }; - FFF759010cf07fcd59010cf0 /* checked */ = { + FFF75a9afcf07fb05a9afcf0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6805,7 +6805,7 @@ }; name = "checked"; }; - FFF7590113e07fcd590113e0 /* profile */ = { + FFF75a9b03e07fb05a9b03e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6836,7 +6836,7 @@ }; name = "profile"; }; - FFF759011ad07fcd59011ad0 /* release */ = { + FFF75a9b0ad07fb05a9b0ad0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6867,7 +6867,7 @@ }; name = "release"; }; - FFF7588116007fcd58811600 /* debug */ = { + FFF75d009c007fb05d009c00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6898,7 +6898,7 @@ }; name = "debug"; }; - FFF758811cf07fcd58811cf0 /* checked */ = { + FFF75d00a2f07fb05d00a2f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6929,7 +6929,7 @@ }; name = "checked"; }; - FFF7588123e07fcd588123e0 /* profile */ = { + FFF75d00a9e07fb05d00a9e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6960,7 +6960,7 @@ }; name = "profile"; }; - FFF758812ad07fcd58812ad0 /* release */ = { + FFF75d00b0d07fb05d00b0d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6991,7 +6991,7 @@ }; name = "release"; }; - FFF7578584007fcd57858400 /* debug */ = { + FFF75b82aa007fb05b82aa00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7022,7 +7022,7 @@ }; name = "debug"; }; - FFF757858af07fcd57858af0 /* checked */ = { + FFF75b82b0f07fb05b82b0f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7053,7 +7053,7 @@ }; name = "checked"; }; - FFF7578591e07fcd578591e0 /* profile */ = { + FFF75b82b7e07fb05b82b7e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7084,7 +7084,7 @@ }; name = "profile"; }; - FFF7578598d07fcd578598d0 /* release */ = { + FFF75b82bed07fb05b82bed0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7115,7 +7115,7 @@ }; name = "release"; }; - FFF75700a6007fcd5700a600 /* debug */ = { + FFF75d0136007fb05d013600 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7146,7 +7146,7 @@ }; name = "debug"; }; - FFF75700acf07fcd5700acf0 /* checked */ = { + FFF75d013cf07fb05d013cf0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7177,7 +7177,7 @@ }; name = "checked"; }; - FFF75700b3e07fcd5700b3e0 /* profile */ = { + FFF75d0143e07fb05d0143e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7208,7 +7208,7 @@ }; name = "profile"; }; - FFF75700bad07fcd5700bad0 /* release */ = { + FFF75d014ad07fb05d014ad0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7239,7 +7239,7 @@ }; name = "release"; }; - FFF75700ea007fcd5700ea00 /* debug */ = { + FFF75a9b90007fb05a9b9000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7270,7 +7270,7 @@ }; name = "debug"; }; - FFF75700f0f07fcd5700f0f0 /* checked */ = { + FFF75a9b96f07fb05a9b96f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7301,7 +7301,7 @@ }; name = "checked"; }; - FFF75700f7e07fcd5700f7e0 /* profile */ = { + FFF75a9b9de07fb05a9b9de0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7332,7 +7332,7 @@ }; name = "profile"; }; - FFF75700fed07fcd5700fed0 /* release */ = { + FFF75a9ba4d07fb05a9ba4d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7363,7 +7363,7 @@ }; name = "release"; }; - FFF75a06b0007fcd5a06b000 /* debug */ = { + FFF75d01ac007fb05d01ac00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7394,7 +7394,7 @@ }; name = "debug"; }; - FFF75a06b6f07fcd5a06b6f0 /* release */ = { + FFF75d01b2f07fb05d01b2f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7425,7 +7425,7 @@ }; name = "release"; }; - FFF75a06bde07fcd5a06bde0 /* checked */ = { + FFF75d01b9e07fb05d01b9e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7456,7 +7456,7 @@ }; name = "checked"; }; - FFF75a06c4d07fcd5a06c4d0 /* profile */ = { + FFF75d01c0d07fb05d01c0d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7487,7 +7487,7 @@ }; name = "profile"; }; - FFF75b0536007fcd5b053600 /* debug */ = { + FFF75a9df0007fb05a9df000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7518,7 +7518,7 @@ }; name = "debug"; }; - FFF75b053cf07fcd5b053cf0 /* release */ = { + FFF75a9df6f07fb05a9df6f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7549,7 +7549,7 @@ }; name = "release"; }; - FFF75b0543e07fcd5b0543e0 /* checked */ = { + FFF75a9dfde07fb05a9dfde0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7580,7 +7580,7 @@ }; name = "checked"; }; - FFF75b054ad07fcd5b054ad0 /* profile */ = { + FFF75a9e04d07fb05a9e04d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7611,25 +7611,25 @@ }; name = "profile"; }; - FFF35a82d6007fcd5a82d600 /* release */ = { + FFF35aa04a007fb05aa04a00 /* release */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "release"; }; - FFF35a82dcf07fcd5a82dcf0 /* debug */ = { + FFF35aa050f07fb05aa050f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "debug"; }; - FFF35a82e3e07fcd5a82e3e0 /* checked */ = { + FFF35aa057e07fb05aa057e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "checked"; }; - FFF35a82ead07fcd5a82ead0 /* profile */ = { + FFF35aa05ed07fb05aa05ed0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { }; @@ -7638,34 +7638,34 @@ /* End XCBuildConfiguration section */ /* Begin PBXProject section */ - FFF95820b1507fcd5820b150 /* Project object */ = { + FFF95a4828f07fb05a4828f0 /* Project object */ = { isa = PBXProject; - buildConfigurationList = FFF65820b1507fcd5820b150 /* Build configuration list for PBXProject PhysX */; + buildConfigurationList = FFF65a4828f07fb05a4828f0 /* Build configuration list for PBXProject PhysX */; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; - mainGroup = FFFB5820b1b87fcd5820b1b8 /* PhysX */; + mainGroup = FFFB5a4829587fb05a482958 /* PhysX */; targets = ( - FFFA56fa61a07fcd56fa61a0, - FFFA5b986ca07fcd5b986ca0, - FFFA56e3cde07fcd56e3cde0, - FFFA586bc1607fcd586bc160, - FFFA5bb033e07fcd5bb033e0, - FFFA5bb075b07fcd5bb075b0, - FFFA5b98d5507fcd5b98d550, - FFFA56e143207fcd56e14320, - FFFA585016d07fcd585016d0, - FFFA582fabb07fcd582fabb0, - FFFA56cac0107fcd56cac010, - FFFA5879adc07fcd5879adc0, - FFFA56dc69f07fcd56dc69f0, - FFFA58692f107fcd58692f10, - FFFA585295c07fcd585295c0, - FFFA585c9d007fcd585c9d00, - FFFA580eddd07fcd580eddd0, + FFFA5cb2e4807fb05cb2e480, + FFFA5cb4fa707fb05cb4fa70, + FFFA5cb50f307fb05cb50f30, + FFFA5cb609d07fb05cb609d0, + FFFA5cb732c07fb05cb732c0, + FFFA5cb778e07fb05cb778e0, + FFFA5cb7c7007fb05cb7c700, + FFFA5b2fb4e07fb05b2fb4e0, + FFFA5b080a507fb05b080a50, + FFFA5b4338707fb05b433870, + FFFA5b308fd07fb05b308fd0, + FFFA5c8058807fb05c805880, + FFFA5b45afc07fb05b45afc0, + FFFA5c8281f07fb05c8281f0, + FFFA5b322ac07fb05b322ac0, + FFFA5c8302207fb05c830220, + FFFA5cb3a3f07fb05cb3a3f0, ); }; /* End PBXProject section */ }; - rootObject = FFF95820b1507fcd5820b150 /* Project object */; + rootObject = FFF95a4828f07fb05a4828f0 /* Project object */; } diff --git a/PhysX_3.4/Source/compiler/xcode_ios64/PhysX.xcodeproj/project.pbxproj b/PhysX_3.4/Source/compiler/xcode_ios64/PhysX.xcodeproj/project.pbxproj index 853a370b..95392fe0 100644 --- a/PhysX_3.4/Source/compiler/xcode_ios64/PhysX.xcodeproj/project.pbxproj +++ b/PhysX_3.4/Source/compiler/xcode_ios64/PhysX.xcodeproj/project.pbxproj @@ -7,223 +7,223 @@ objects = { /* Begin PBXBuildFile section of PhysX */ - FFFFbd2bf6b07f87bd2bf6b0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb9b326907f87b9b32690 /* SceneQuery */; }; - FFFFbd2c56607f87bd2c5660 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb9b2f6c07f87b9b2f6c0 /* SimulationController */; }; - FFFFba0764387f87ba076438 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0764387f87ba076438 /* NpActor.cpp */; }; - FFFFba0764a07f87ba0764a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0764a07f87ba0764a0 /* NpAggregate.cpp */; }; - FFFFba0765087f87ba076508 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0765087f87ba076508 /* NpArticulation.cpp */; }; - FFFFba0765707f87ba076570 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0765707f87ba076570 /* NpArticulationJoint.cpp */; }; - FFFFba0765d87f87ba0765d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0765d87f87ba0765d8 /* NpArticulationLink.cpp */; }; - FFFFba0766407f87ba076640 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0766407f87ba076640 /* NpBatchQuery.cpp */; }; - FFFFba0766a87f87ba0766a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0766a87f87ba0766a8 /* NpConstraint.cpp */; }; - FFFFba0767107f87ba076710 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0767107f87ba076710 /* NpFactory.cpp */; }; - FFFFba0767787f87ba076778 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0767787f87ba076778 /* NpMaterial.cpp */; }; - FFFFba0767e07f87ba0767e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0767e07f87ba0767e0 /* NpMetaData.cpp */; }; - FFFFba0768487f87ba076848 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0768487f87ba076848 /* NpPhysics.cpp */; }; - FFFFba0768b07f87ba0768b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0768b07f87ba0768b0 /* NpPvdSceneQueryCollector.cpp */; }; - FFFFba0769187f87ba076918 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0769187f87ba076918 /* NpReadCheck.cpp */; }; - FFFFba0769807f87ba076980 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0769807f87ba076980 /* NpRigidDynamic.cpp */; }; - FFFFba0769e87f87ba0769e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0769e87f87ba0769e8 /* NpRigidStatic.cpp */; }; - FFFFba076a507f87ba076a50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba076a507f87ba076a50 /* NpScene.cpp */; }; - FFFFba076ab87f87ba076ab8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba076ab87f87ba076ab8 /* NpSceneQueries.cpp */; }; - FFFFba076b207f87ba076b20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba076b207f87ba076b20 /* NpSerializerAdapter.cpp */; }; - FFFFba076b887f87ba076b88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba076b887f87ba076b88 /* NpShape.cpp */; }; - FFFFba076bf07f87ba076bf0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba076bf07f87ba076bf0 /* NpShapeManager.cpp */; }; - FFFFba076c587f87ba076c58 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba076c587f87ba076c58 /* NpSpatialIndex.cpp */; }; - FFFFba076cc07f87ba076cc0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba076cc07f87ba076cc0 /* NpVolumeCache.cpp */; }; - FFFFba076d287f87ba076d28 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba076d287f87ba076d28 /* NpWriteCheck.cpp */; }; - FFFFba076d907f87ba076d90 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba076d907f87ba076d90 /* PvdMetaDataPvdBinding.cpp */; }; - FFFFba076df87f87ba076df8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba076df87f87ba076df8 /* PvdPhysicsClient.cpp */; }; - FFFFba0770007f87ba077000 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0770007f87ba077000 /* particles/NpParticleFluid.cpp */; }; - FFFFba0770687f87ba077068 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0770687f87ba077068 /* particles/NpParticleSystem.cpp */; }; - FFFFba0778207f87ba077820 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0778207f87ba077820 /* buffering/ScbActor.cpp */; }; - FFFFba0778887f87ba077888 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0778887f87ba077888 /* buffering/ScbAggregate.cpp */; }; - FFFFba0778f07f87ba0778f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0778f07f87ba0778f0 /* buffering/ScbBase.cpp */; }; - FFFFba0779587f87ba077958 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0779587f87ba077958 /* buffering/ScbCloth.cpp */; }; - FFFFba0779c07f87ba0779c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0779c07f87ba0779c0 /* buffering/ScbMetaData.cpp */; }; - FFFFba077a287f87ba077a28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba077a287f87ba077a28 /* buffering/ScbParticleSystem.cpp */; }; - FFFFba077a907f87ba077a90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba077a907f87ba077a90 /* buffering/ScbScene.cpp */; }; - FFFFba077af87f87ba077af8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba077af87f87ba077af8 /* buffering/ScbScenePvdClient.cpp */; }; - FFFFba077b607f87ba077b60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba077b607f87ba077b60 /* buffering/ScbShape.cpp */; }; - FFFFba077d007f87ba077d00 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba077d007f87ba077d00 /* cloth/NpCloth.cpp */; }; - FFFFba077d687f87ba077d68 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba077d687f87ba077d68 /* cloth/NpClothFabric.cpp */; }; - FFFFba077dd07f87ba077dd0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba077dd07f87ba077dd0 /* cloth/NpClothParticleData.cpp */; }; - FFFFba077e387f87ba077e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba077e387f87ba077e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; - FFFFba0799a87f87ba0799a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDba0799a87f87ba0799a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; - FFFFba079a107f87ba079a10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDba079a107f87ba079a10 /* core/src/PxMetaDataObjects.cpp */; }; + FFFFe294f3207ffde294f320 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDe450b7207ffde450b720 /* SceneQuery */; }; + FFFFe294f3807ffde294f380 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDe450fbf07ffde450fbf0 /* SimulationController */; }; + FFFFe2194c387ffde2194c38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194c387ffde2194c38 /* NpActor.cpp */; }; + FFFFe2194ca07ffde2194ca0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194ca07ffde2194ca0 /* NpAggregate.cpp */; }; + FFFFe2194d087ffde2194d08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194d087ffde2194d08 /* NpArticulation.cpp */; }; + FFFFe2194d707ffde2194d70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194d707ffde2194d70 /* NpArticulationJoint.cpp */; }; + FFFFe2194dd87ffde2194dd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194dd87ffde2194dd8 /* NpArticulationLink.cpp */; }; + FFFFe2194e407ffde2194e40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194e407ffde2194e40 /* NpBatchQuery.cpp */; }; + FFFFe2194ea87ffde2194ea8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194ea87ffde2194ea8 /* NpConstraint.cpp */; }; + FFFFe2194f107ffde2194f10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194f107ffde2194f10 /* NpFactory.cpp */; }; + FFFFe2194f787ffde2194f78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194f787ffde2194f78 /* NpMaterial.cpp */; }; + FFFFe2194fe07ffde2194fe0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194fe07ffde2194fe0 /* NpMetaData.cpp */; }; + FFFFe21950487ffde2195048 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21950487ffde2195048 /* NpPhysics.cpp */; }; + FFFFe21950b07ffde21950b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21950b07ffde21950b0 /* NpPvdSceneQueryCollector.cpp */; }; + FFFFe21951187ffde2195118 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21951187ffde2195118 /* NpReadCheck.cpp */; }; + FFFFe21951807ffde2195180 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21951807ffde2195180 /* NpRigidDynamic.cpp */; }; + FFFFe21951e87ffde21951e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21951e87ffde21951e8 /* NpRigidStatic.cpp */; }; + FFFFe21952507ffde2195250 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21952507ffde2195250 /* NpScene.cpp */; }; + FFFFe21952b87ffde21952b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21952b87ffde21952b8 /* NpSceneQueries.cpp */; }; + FFFFe21953207ffde2195320 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21953207ffde2195320 /* NpSerializerAdapter.cpp */; }; + FFFFe21953887ffde2195388 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21953887ffde2195388 /* NpShape.cpp */; }; + FFFFe21953f07ffde21953f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21953f07ffde21953f0 /* NpShapeManager.cpp */; }; + FFFFe21954587ffde2195458 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21954587ffde2195458 /* NpSpatialIndex.cpp */; }; + FFFFe21954c07ffde21954c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21954c07ffde21954c0 /* NpVolumeCache.cpp */; }; + FFFFe21955287ffde2195528 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21955287ffde2195528 /* NpWriteCheck.cpp */; }; + FFFFe21955907ffde2195590 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21955907ffde2195590 /* PvdMetaDataPvdBinding.cpp */; }; + FFFFe21955f87ffde21955f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21955f87ffde21955f8 /* PvdPhysicsClient.cpp */; }; + FFFFe21958007ffde2195800 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21958007ffde2195800 /* particles/NpParticleFluid.cpp */; }; + FFFFe21958687ffde2195868 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21958687ffde2195868 /* particles/NpParticleSystem.cpp */; }; + FFFFe21960207ffde2196020 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21960207ffde2196020 /* buffering/ScbActor.cpp */; }; + FFFFe21960887ffde2196088 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21960887ffde2196088 /* buffering/ScbAggregate.cpp */; }; + FFFFe21960f07ffde21960f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21960f07ffde21960f0 /* buffering/ScbBase.cpp */; }; + FFFFe21961587ffde2196158 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21961587ffde2196158 /* buffering/ScbCloth.cpp */; }; + FFFFe21961c07ffde21961c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21961c07ffde21961c0 /* buffering/ScbMetaData.cpp */; }; + FFFFe21962287ffde2196228 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21962287ffde2196228 /* buffering/ScbParticleSystem.cpp */; }; + FFFFe21962907ffde2196290 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21962907ffde2196290 /* buffering/ScbScene.cpp */; }; + FFFFe21962f87ffde21962f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21962f87ffde21962f8 /* buffering/ScbScenePvdClient.cpp */; }; + FFFFe21963607ffde2196360 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21963607ffde2196360 /* buffering/ScbShape.cpp */; }; + FFFFe21965007ffde2196500 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21965007ffde2196500 /* cloth/NpCloth.cpp */; }; + FFFFe21965687ffde2196568 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21965687ffde2196568 /* cloth/NpClothFabric.cpp */; }; + FFFFe21965d07ffde21965d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21965d07ffde21965d0 /* cloth/NpClothParticleData.cpp */; }; + FFFFe21966387ffde2196638 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21966387ffde2196638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; + FFFFe218eda87ffde218eda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDe218eda87ffde218eda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; + FFFFe218ee107ffde218ee10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDe218ee107ffde218ee10 /* core/src/PxMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDb9b18ce07f87b9b18ce0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDba0756007f87ba075600 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0756687f87ba075668 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0756d07f87ba0756d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0757387f87ba075738 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0757a07f87ba0757a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0758087f87ba075808 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0758707f87ba075870 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0758d87f87ba0758d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0759407f87ba075940 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0759a87f87ba0759a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075a107f87ba075a10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075a787f87ba075a78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075ae07f87ba075ae0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075b487f87ba075b48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075bb07f87ba075bb0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075c187f87ba075c18 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075c807f87ba075c80 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075ce87f87ba075ce8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075d507f87ba075d50 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075db87f87ba075db8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075e207f87ba075e20 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075e887f87ba075e88 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075ef07f87ba075ef0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075f587f87ba075f58 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDba075fc07f87ba075fc0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0760287f87ba076028 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0760907f87ba076090 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0760f87f87ba0760f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0761607f87ba076160 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0761c87f87ba0761c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0762307f87ba076230 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0762987f87ba076298 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0763007f87ba076300 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0763687f87ba076368 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0763d07f87ba0763d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0764387f87ba076438 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0764a07f87ba0764a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0765087f87ba076508 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0765707f87ba076570 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0765d87f87ba0765d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0766407f87ba076640 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0766a87f87ba0766a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0767107f87ba076710 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0767787f87ba076778 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0767e07f87ba0767e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0768487f87ba076848 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0768b07f87ba0768b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0769187f87ba076918 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0769807f87ba076980 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0769e87f87ba0769e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba076a507f87ba076a50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba076ab87f87ba076ab8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba076b207f87ba076b20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba076b887f87ba076b88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba076bf07f87ba076bf0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba076c587f87ba076c58 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba076cc07f87ba076cc0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba076d287f87ba076d28 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba076d907f87ba076d90 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba076df87f87ba076df8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba076e607f87ba076e60 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDba076ec87f87ba076ec8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFDba076f307f87ba076f30 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba076f987f87ba076f98 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0770007f87ba077000 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0770687f87ba077068 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0770d07f87ba0770d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0771387f87ba077138 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0771a07f87ba0771a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0772087f87ba077208 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0772707f87ba077270 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0772d87f87ba0772d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0773407f87ba077340 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0773a87f87ba0773a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0774107f87ba077410 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0774787f87ba077478 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0774e07f87ba0774e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0775487f87ba077548 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0775b07f87ba0775b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0776187f87ba077618 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0776807f87ba077680 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0776e87f87ba0776e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0777507f87ba077750 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0777b87f87ba0777b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0778207f87ba077820 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0778887f87ba077888 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0778f07f87ba0778f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0779587f87ba077958 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0779c07f87ba0779c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba077a287f87ba077a28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba077a907f87ba077a90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba077af87f87ba077af8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba077b607f87ba077b60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba077bc87f87ba077bc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDba077c307f87ba077c30 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDba077c987f87ba077c98 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba077d007f87ba077d00 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba077d687f87ba077d68 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba077dd07f87ba077dd0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba077e387f87ba077e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0780007f87ba078000 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0780687f87ba078068 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0780d07f87ba0780d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0781387f87ba078138 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0781a07f87ba0781a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0782087f87ba078208 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0782707f87ba078270 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0782d87f87ba0782d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0783407f87ba078340 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0783a87f87ba0783a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0784107f87ba078410 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0784787f87ba078478 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0784e07f87ba0784e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0785487f87ba078548 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0785b07f87ba0785b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0786187f87ba078618 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0786807f87ba078680 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0786e87f87ba0786e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0787507f87ba078750 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0787b87f87ba0787b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0788207f87ba078820 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0788887f87ba078888 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0788f07f87ba0788f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0789587f87ba078958 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0789c07f87ba0789c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078a287f87ba078a28 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078a907f87ba078a90 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078af87f87ba078af8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078b607f87ba078b60 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078bc87f87ba078bc8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078c307f87ba078c30 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078c987f87ba078c98 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078d007f87ba078d00 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078d687f87ba078d68 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078dd07f87ba078dd0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078e387f87ba078e38 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078ea07f87ba078ea0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078f087f87ba078f08 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078f707f87ba078f70 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; - FFFDba078fd87f87ba078fd8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0790407f87ba079040 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0790a87f87ba0790a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0791107f87ba079110 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0791787f87ba079178 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0791e07f87ba0791e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0792487f87ba079248 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0792b07f87ba0792b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0793187f87ba079318 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0793807f87ba079380 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0793e87f87ba0793e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0794507f87ba079450 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0794b87f87ba0794b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0795207f87ba079520 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0795887f87ba079588 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0796007f87ba079600 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0796687f87ba079668 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0796d07f87ba0796d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0797387f87ba079738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0797a07f87ba0797a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0798087f87ba079808 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0798707f87ba079870 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0798d87f87ba0798d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0799407f87ba079940 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0799a87f87ba0799a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba079a107f87ba079a10 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe29464b07ffde29464b0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe2193e007ffde2193e00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2193e687ffde2193e68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2193ed07ffde2193ed0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2193f387ffde2193f38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2193fa07ffde2193fa0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21940087ffde2194008 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21940707ffde2194070 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21940d87ffde21940d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21941407ffde2194140 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21941a87ffde21941a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21942107ffde2194210 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21942787ffde2194278 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21942e07ffde21942e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21943487ffde2194348 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21943b07ffde21943b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21944187ffde2194418 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21944807ffde2194480 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21944e87ffde21944e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21945507ffde2194550 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21945b87ffde21945b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21946207ffde2194620 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21946887ffde2194688 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21946f07ffde21946f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21947587ffde2194758 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21947c07ffde21947c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21948287ffde2194828 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21948907ffde2194890 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21948f87ffde21948f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21949607ffde2194960 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21949c87ffde21949c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2194a307ffde2194a30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2194a987ffde2194a98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2194b007ffde2194b00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2194b687ffde2194b68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2194bd07ffde2194bd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2194c387ffde2194c38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2194ca07ffde2194ca0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2194d087ffde2194d08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2194d707ffde2194d70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2194dd87ffde2194dd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2194e407ffde2194e40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2194ea87ffde2194ea8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2194f107ffde2194f10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2194f787ffde2194f78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2194fe07ffde2194fe0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21950487ffde2195048 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21950b07ffde21950b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21951187ffde2195118 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21951807ffde2195180 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21951e87ffde21951e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21952507ffde2195250 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21952b87ffde21952b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21953207ffde2195320 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21953887ffde2195388 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21953f07ffde21953f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21954587ffde2195458 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21954c07ffde21954c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21955287ffde2195528 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21955907ffde2195590 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21955f87ffde21955f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21956607ffde2195660 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21956c87ffde21956c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21957307ffde2195730 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21957987ffde2195798 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21958007ffde2195800 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21958687ffde2195868 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21958d07ffde21958d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21959387ffde2195938 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21959a07ffde21959a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195a087ffde2195a08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195a707ffde2195a70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195ad87ffde2195ad8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195b407ffde2195b40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195ba87ffde2195ba8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195c107ffde2195c10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195c787ffde2195c78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195ce07ffde2195ce0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195d487ffde2195d48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195db07ffde2195db0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195e187ffde2195e18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195e807ffde2195e80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195ee87ffde2195ee8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195f507ffde2195f50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2195fb87ffde2195fb8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21960207ffde2196020 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21960887ffde2196088 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21960f07ffde21960f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21961587ffde2196158 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21961c07ffde21961c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21962287ffde2196228 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21962907ffde2196290 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21962f87ffde21962f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21963607ffde2196360 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21963c87ffde21963c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21964307ffde2196430 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21964987ffde2196498 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21965007ffde2196500 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21965687ffde2196568 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21965d07ffde21965d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21966387ffde2196638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21968007ffde2196800 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21968687ffde2196868 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21968d07ffde21968d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21969387ffde2196938 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21969a07ffde21969a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196a087ffde2196a08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196a707ffde2196a70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196ad87ffde2196ad8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196b407ffde2196b40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196ba87ffde2196ba8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196c107ffde2196c10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196c787ffde2196c78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196ce07ffde2196ce0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196d487ffde2196d48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196db07ffde2196db0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196e187ffde2196e18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196e807ffde2196e80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196ee87ffde2196ee8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196f507ffde2196f50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2196fb87ffde2196fb8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21970207ffde2197020 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21970887ffde2197088 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21970f07ffde21970f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21971587ffde2197158 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21971c07ffde21971c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21972287ffde2197228 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21972907ffde2197290 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21972f87ffde21972f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21973607ffde2197360 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21973c87ffde21973c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21974307ffde2197430 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21974987ffde2197498 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21975007ffde2197500 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21975687ffde2197568 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21975d07ffde21975d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21976387ffde2197638 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21976a07ffde21976a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21977087ffde2197708 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21977707ffde2197770 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21977d87ffde21977d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21978407ffde2197840 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21978a87ffde21978a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21979107ffde2197910 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21979787ffde2197978 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21979e07ffde21979e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197a487ffde2197a48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197ab07ffde2197ab0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197b187ffde2197b18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197b807ffde2197b80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197be87ffde2197be8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197c507ffde2197c50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197cb87ffde2197cb8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197d207ffde2197d20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197d887ffde2197d88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe218ea007ffde218ea00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDe218ea687ffde218ea68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDe218ead07ffde218ead0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDe218eb387ffde218eb38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDe218eba07ffde218eba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDe218ec087ffde218ec08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFDe218ec707ffde218ec70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFDe218ecd87ffde218ecd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDe218ed407ffde218ed40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDe218eda87ffde218eda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe218ee107ffde218ee10 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2b9b18ce07f87b9b18ce0 /* Resources */ = { + FFF2e29464b07ffde29464b0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -233,7 +233,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCb9b18ce07f87b9b18ce0 /* Frameworks */ = { + FFFCe29464b07ffde29464b0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -243,52 +243,52 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8b9b18ce07f87b9b18ce0 /* Sources */ = { + FFF8e29464b07ffde29464b0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFba0764387f87ba076438, - FFFFba0764a07f87ba0764a0, - FFFFba0765087f87ba076508, - FFFFba0765707f87ba076570, - FFFFba0765d87f87ba0765d8, - FFFFba0766407f87ba076640, - FFFFba0766a87f87ba0766a8, - FFFFba0767107f87ba076710, - FFFFba0767787f87ba076778, - FFFFba0767e07f87ba0767e0, - FFFFba0768487f87ba076848, - FFFFba0768b07f87ba0768b0, - FFFFba0769187f87ba076918, - FFFFba0769807f87ba076980, - FFFFba0769e87f87ba0769e8, - FFFFba076a507f87ba076a50, - FFFFba076ab87f87ba076ab8, - FFFFba076b207f87ba076b20, - FFFFba076b887f87ba076b88, - FFFFba076bf07f87ba076bf0, - FFFFba076c587f87ba076c58, - FFFFba076cc07f87ba076cc0, - FFFFba076d287f87ba076d28, - FFFFba076d907f87ba076d90, - FFFFba076df87f87ba076df8, - FFFFba0770007f87ba077000, - FFFFba0770687f87ba077068, - FFFFba0778207f87ba077820, - FFFFba0778887f87ba077888, - FFFFba0778f07f87ba0778f0, - FFFFba0779587f87ba077958, - FFFFba0779c07f87ba0779c0, - FFFFba077a287f87ba077a28, - FFFFba077a907f87ba077a90, - FFFFba077af87f87ba077af8, - FFFFba077b607f87ba077b60, - FFFFba077d007f87ba077d00, - FFFFba077d687f87ba077d68, - FFFFba077dd07f87ba077dd0, - FFFFba077e387f87ba077e38, - FFFFba0799a87f87ba0799a8, - FFFFba079a107f87ba079a10, + FFFFe2194c387ffde2194c38, + FFFFe2194ca07ffde2194ca0, + FFFFe2194d087ffde2194d08, + FFFFe2194d707ffde2194d70, + FFFFe2194dd87ffde2194dd8, + FFFFe2194e407ffde2194e40, + FFFFe2194ea87ffde2194ea8, + FFFFe2194f107ffde2194f10, + FFFFe2194f787ffde2194f78, + FFFFe2194fe07ffde2194fe0, + FFFFe21950487ffde2195048, + FFFFe21950b07ffde21950b0, + FFFFe21951187ffde2195118, + FFFFe21951807ffde2195180, + FFFFe21951e87ffde21951e8, + FFFFe21952507ffde2195250, + FFFFe21952b87ffde21952b8, + FFFFe21953207ffde2195320, + FFFFe21953887ffde2195388, + FFFFe21953f07ffde21953f0, + FFFFe21954587ffde2195458, + FFFFe21954c07ffde21954c0, + FFFFe21955287ffde2195528, + FFFFe21955907ffde2195590, + FFFFe21955f87ffde21955f8, + FFFFe21958007ffde2195800, + FFFFe21958687ffde2195868, + FFFFe21960207ffde2196020, + FFFFe21960887ffde2196088, + FFFFe21960f07ffde21960f0, + FFFFe21961587ffde2196158, + FFFFe21961c07ffde21961c0, + FFFFe21962287ffde2196228, + FFFFe21962907ffde2196290, + FFFFe21962f87ffde21962f8, + FFFFe21963607ffde2196360, + FFFFe21965007ffde2196500, + FFFFe21965687ffde2196568, + FFFFe21965d07ffde21965d0, + FFFFe21966387ffde2196638, + FFFFe218eda87ffde218eda8, + FFFFe218ee107ffde218ee10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -297,112 +297,112 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4bd2bf3507f87bd2bf350 /* PBXTargetDependency */ = { + FFF4e2952c507ffde2952c50 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb86f79707f87b86f7970 /* LowLevel */; - targetProxy = FFF5b86f79707f87b86f7970 /* PBXContainerItemProxy */; + target = FFFAe2f1a6b07ffde2f1a6b0 /* LowLevel */; + targetProxy = FFF5e2f1a6b07ffde2f1a6b0 /* PBXContainerItemProxy */; }; - FFF4bd2bf3b07f87bd2bf3b0 /* PBXTargetDependency */ = { + FFF4e2951e907ffde2951e90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAbd2378b07f87bd2378b0 /* LowLevelAABB */; - targetProxy = FFF5bd2378b07f87bd2378b0 /* PBXContainerItemProxy */; + target = FFFAe2d334507ffde2d33450 /* LowLevelAABB */; + targetProxy = FFF5e2d334507ffde2d33450 /* PBXContainerItemProxy */; }; - FFF4bd2bf5f07f87bd2bf5f0 /* PBXTargetDependency */ = { + FFF4e2952b607ffde2952b60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAbd0168307f87bd016830 /* LowLevelCloth */; - targetProxy = FFF5bd0168307f87bd016830 /* PBXContainerItemProxy */; + target = FFFAe292cb407ffde292cb40 /* LowLevelCloth */; + targetProxy = FFF5e292cb407ffde292cb40 /* PBXContainerItemProxy */; }; - FFF4bd2bf5907f87bd2bf590 /* PBXTargetDependency */ = { + FFF4e2952b007ffde2952b00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAbd00c5a07f87bd00c5a0 /* LowLevelDynamics */; - targetProxy = FFF5bd00c5a07f87bd00c5a0 /* PBXContainerItemProxy */; + target = FFFAe2d544f07ffde2d544f0 /* LowLevelDynamics */; + targetProxy = FFF5e2d544f07ffde2d544f0 /* PBXContainerItemProxy */; }; - FFF4bd2bf6507f87bd2bf650 /* PBXTargetDependency */ = { + FFF4e294f2c07ffde294f2c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb85369107f87b8536910 /* LowLevelParticles */; - targetProxy = FFF5b85369107f87b8536910 /* PBXContainerItemProxy */; + target = FFFAe1484d707ffde1484d70 /* LowLevelParticles */; + targetProxy = FFF5e1484d707ffde1484d70 /* PBXContainerItemProxy */; }; - FFF4bd2c5d507f87bd2c5d50 /* PBXTargetDependency */ = { + FFF4e2952bf07ffde2952bf0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb85164f07f87b85164f0 /* PhysXCommon */; - targetProxy = FFF5b85164f07f87b85164f0 /* PBXContainerItemProxy */; + target = FFFAe2c17a107ffde2c17a10 /* PhysXCommon */; + targetProxy = FFF5e2c17a107ffde2c17a10 /* PBXContainerItemProxy */; }; - FFF4b9b801a07f87b9b801a0 /* PBXTargetDependency */ = { + FFF4e29467a07ffde29467a0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb8500ad07f87b8500ad0 /* PxFoundation */; - targetProxy = FFF5b8500ad07f87b8500ad0 /* PBXContainerItemProxy */; + target = FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */; + targetProxy = FFF5e2c0b7d07ffde2c0b7d0 /* PBXContainerItemProxy */; }; - FFF4b9b7eda07f87b9b7eda0 /* PBXTargetDependency */ = { + FFF4e29464507ffde2946450 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb9b082f07f87b9b082f0 /* PxPvdSDK */; - targetProxy = FFF5b9b082f07f87b9b082f0 /* PBXContainerItemProxy */; + target = FFFAe29691807ffde2969180 /* PxPvdSDK */; + targetProxy = FFF5e29691807ffde2969180 /* PBXContainerItemProxy */; }; - FFF4bd2c56907f87bd2c5690 /* PBXTargetDependency */ = { + FFF4e294f3b07ffde294f3b0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb9b1cd207f87b9b1cd20 /* PxTask */; - targetProxy = FFF5b9b1cd207f87b9b1cd20 /* PBXContainerItemProxy */; + target = FFFAe2f4cec07ffde2f4cec0 /* PxTask */; + targetProxy = FFF5e2f4cec07ffde2f4cec0 /* PBXContainerItemProxy */; }; - FFF4bd2bf6b07f87bd2bf6b0 /* PBXTargetDependency */ = { + FFF4e294f3207ffde294f320 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb9b326907f87b9b32690 /* SceneQuery */; - targetProxy = FFF5b9b326907f87b9b32690 /* PBXContainerItemProxy */; + target = FFFAe450b7207ffde450b720 /* SceneQuery */; + targetProxy = FFF5e450b7207ffde450b720 /* PBXContainerItemProxy */; }; - FFF4bd2c56607f87bd2c5660 /* PBXTargetDependency */ = { + FFF4e294f3807ffde294f380 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb9b2f6c07f87b9b2f6c0 /* SimulationController */; - targetProxy = FFF5b9b2f6c07f87b9b2f6c0 /* PBXContainerItemProxy */; + target = FFFAe450fbf07ffde450fbf0 /* SimulationController */; + targetProxy = FFF5e450fbf07ffde450fbf0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCharacterKinematic */ - FFFFbd0763d07f87bd0763d0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb9ac2fb07f87b9ac2fb0 /* PhysXExtensions */; }; - FFFFbb0a78787f87bb0a7878 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb0a78787f87bb0a7878 /* CctBoxController.cpp */; }; - FFFFbb0a78e07f87bb0a78e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb0a78e07f87bb0a78e0 /* CctCapsuleController.cpp */; }; - FFFFbb0a79487f87bb0a7948 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb0a79487f87bb0a7948 /* CctCharacterController.cpp */; }; - FFFFbb0a79b07f87bb0a79b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb0a79b07f87bb0a79b0 /* CctCharacterControllerCallbacks.cpp */; }; - FFFFbb0a7a187f87bb0a7a18 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb0a7a187f87bb0a7a18 /* CctCharacterControllerManager.cpp */; }; - FFFFbb0a7a807f87bb0a7a80 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb0a7a807f87bb0a7a80 /* CctController.cpp */; }; - FFFFbb0a7ae87f87bb0a7ae8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb0a7ae87f87bb0a7ae8 /* CctObstacleContext.cpp */; }; - FFFFbb0a7b507f87bb0a7b50 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb0a7b507f87bb0a7b50 /* CctSweptBox.cpp */; }; - FFFFbb0a7bb87f87bb0a7bb8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb0a7bb87f87bb0a7bb8 /* CctSweptCapsule.cpp */; }; - FFFFbb0a7c207f87bb0a7c20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb0a7c207f87bb0a7c20 /* CctSweptVolume.cpp */; }; + FFFFe29543507ffde2954350 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDe29617f07ffde29617f0 /* PhysXExtensions */; }; + FFFFe21982787ffde2198278 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21982787ffde2198278 /* CctBoxController.cpp */; }; + FFFFe21982e07ffde21982e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21982e07ffde21982e0 /* CctCapsuleController.cpp */; }; + FFFFe21983487ffde2198348 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21983487ffde2198348 /* CctCharacterController.cpp */; }; + FFFFe21983b07ffde21983b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21983b07ffde21983b0 /* CctCharacterControllerCallbacks.cpp */; }; + FFFFe21984187ffde2198418 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21984187ffde2198418 /* CctCharacterControllerManager.cpp */; }; + FFFFe21984807ffde2198480 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21984807ffde2198480 /* CctController.cpp */; }; + FFFFe21984e87ffde21984e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21984e87ffde21984e8 /* CctObstacleContext.cpp */; }; + FFFFe21985507ffde2198550 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21985507ffde2198550 /* CctSweptBox.cpp */; }; + FFFFe21985b87ffde21985b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21985b87ffde21985b8 /* CctSweptCapsule.cpp */; }; + FFFFe21986207ffde2198620 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21986207ffde2198620 /* CctSweptVolume.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDbd2c56a07f87bd2c56a0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDbd2c8b707f87bd2c8b70 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd2c8bd87f87bd2c8bd8 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd2c8c407f87bd2c8c40 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd2c8ca87f87bd2c8ca8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd2c8d107f87bd2c8d10 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd2c8d787f87bd2c8d78 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd2c8de07f87bd2c8de0 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd2c8e487f87bd2c8e48 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a74007f87bb0a7400 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a74687f87bb0a7468 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a74d07f87bb0a74d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a75387f87bb0a7538 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a75a07f87bb0a75a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a76087f87bb0a7608 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a76707f87bb0a7670 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a76d87f87bb0a76d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a77407f87bb0a7740 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a77a87f87bb0a77a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a78107f87bb0a7810 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a78787f87bb0a7878 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a78e07f87bb0a78e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a79487f87bb0a7948 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a79b07f87bb0a79b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a7a187f87bb0a7a18 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a7a807f87bb0a7a80 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a7ae87f87bb0a7ae8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a7b507f87bb0a7b50 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a7bb87f87bb0a7bb8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb0a7c207f87bb0a7c20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe294ef707ffde294ef70 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe29560807ffde2956080 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDe29560e87ffde29560e8 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFDe29561507ffde2956150 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; + FFFDe29561b87ffde29561b8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDe29562207ffde2956220 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; + FFFDe29562887ffde2956288 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe29562f07ffde29562f0 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; + FFFDe29563587ffde2956358 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197e007ffde2197e00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197e687ffde2197e68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197ed07ffde2197ed0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197f387ffde2197f38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2197fa07ffde2197fa0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21980087ffde2198008 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21980707ffde2198070 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21980d87ffde21980d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21981407ffde2198140 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21981a87ffde21981a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21982107ffde2198210 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21982787ffde2198278 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21982e07ffde21982e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21983487ffde2198348 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21983b07ffde21983b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21984187ffde2198418 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21984807ffde2198480 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21984e87ffde21984e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21985507ffde2198550 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21985b87ffde21985b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21986207ffde2198620 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2bd2c56a07f87bd2c56a0 /* Resources */ = { + FFF2e294ef707ffde294ef70 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -412,7 +412,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCbd2c56a07f87bd2c56a0 /* Frameworks */ = { + FFFCe294ef707ffde294ef70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -422,20 +422,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8bd2c56a07f87bd2c56a0 /* Sources */ = { + FFF8e294ef707ffde294ef70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFbb0a78787f87bb0a7878, - FFFFbb0a78e07f87bb0a78e0, - FFFFbb0a79487f87bb0a7948, - FFFFbb0a79b07f87bb0a79b0, - FFFFbb0a7a187f87bb0a7a18, - FFFFbb0a7a807f87bb0a7a80, - FFFFbb0a7ae87f87bb0a7ae8, - FFFFbb0a7b507f87bb0a7b50, - FFFFbb0a7bb87f87bb0a7bb8, - FFFFbb0a7c207f87bb0a7c20, + FFFFe21982787ffde2198278, + FFFFe21982e07ffde21982e0, + FFFFe21983487ffde2198348, + FFFFe21983b07ffde21983b0, + FFFFe21984187ffde2198418, + FFFFe21984807ffde2198480, + FFFFe21984e87ffde21984e8, + FFFFe21985507ffde2198550, + FFFFe21985b87ffde21985b8, + FFFFe21986207ffde2198620, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -444,91 +444,91 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4bd070fc07f87bd070fc0 /* PBXTargetDependency */ = { + FFF4e2954dc07ffde2954dc0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb85164f07f87b85164f0 /* PhysXCommon */; - targetProxy = FFF5b85164f07f87b85164f0 /* PBXContainerItemProxy */; + target = FFFAe2c17a107ffde2c17a10 /* PhysXCommon */; + targetProxy = FFF5e2c17a107ffde2c17a10 /* PBXContainerItemProxy */; }; - FFF4bd0763d07f87bd0763d0 /* PBXTargetDependency */ = { + FFF4e29543507ffde2954350 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb9ac2fb07f87b9ac2fb0 /* PhysXExtensions */; - targetProxy = FFF5b9ac2fb07f87b9ac2fb0 /* PBXContainerItemProxy */; + target = FFFAe29617f07ffde29617f0 /* PhysXExtensions */; + targetProxy = FFF5e29617f07ffde29617f0 /* PBXContainerItemProxy */; }; - FFF4bd0e68107f87bd0e6810 /* PBXTargetDependency */ = { + FFF4e29555207ffde2955520 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb8500ad07f87b8500ad0 /* PxFoundation */; - targetProxy = FFF5b8500ad07f87b8500ad0 /* PBXContainerItemProxy */; + target = FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */; + targetProxy = FFF5e2c0b7d07ffde2c0b7d0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXVehicle */ - FFFFba8196087f87ba819608 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8196087f87ba819608 /* PxVehicleComponents.cpp */; }; - FFFFba8196707f87ba819670 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8196707f87ba819670 /* PxVehicleDrive.cpp */; }; - FFFFba8196d87f87ba8196d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8196d87f87ba8196d8 /* PxVehicleDrive4W.cpp */; }; - FFFFba8197407f87ba819740 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8197407f87ba819740 /* PxVehicleDriveNW.cpp */; }; - FFFFba8197a87f87ba8197a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8197a87f87ba8197a8 /* PxVehicleDriveTank.cpp */; }; - FFFFba8198107f87ba819810 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8198107f87ba819810 /* PxVehicleMetaData.cpp */; }; - FFFFba8198787f87ba819878 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8198787f87ba819878 /* PxVehicleNoDrive.cpp */; }; - FFFFba8198e07f87ba8198e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8198e07f87ba8198e0 /* PxVehicleSDK.cpp */; }; - FFFFba8199487f87ba819948 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8199487f87ba819948 /* PxVehicleSerialization.cpp */; }; - FFFFba8199b07f87ba8199b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8199b07f87ba8199b0 /* PxVehicleSuspWheelTire4.cpp */; }; - FFFFba819a187f87ba819a18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba819a187f87ba819a18 /* PxVehicleTireFriction.cpp */; }; - FFFFba819a807f87ba819a80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba819a807f87ba819a80 /* PxVehicleUpdate.cpp */; }; - FFFFba819ae87f87ba819ae8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba819ae87f87ba819ae8 /* PxVehicleWheels.cpp */; }; - FFFFba819b507f87ba819b50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba819b507f87ba819b50 /* VehicleUtilControl.cpp */; }; - FFFFba819bb87f87ba819bb8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba819bb87f87ba819bb8 /* VehicleUtilSetup.cpp */; }; - FFFFba819c207f87ba819c20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba819c207f87ba819c20 /* VehicleUtilTelemetry.cpp */; }; - FFFFb9ac34c87f87b9ac34c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb9ac34c87f87b9ac34c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; - FFFFb9ac35307f87b9ac3530 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb9ac35307f87b9ac3530 /* src/PxVehicleMetaDataObjects.cpp */; }; + FFFFe219c4087ffde219c408 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c4087ffde219c408 /* PxVehicleComponents.cpp */; }; + FFFFe219c4707ffde219c470 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c4707ffde219c470 /* PxVehicleDrive.cpp */; }; + FFFFe219c4d87ffde219c4d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c4d87ffde219c4d8 /* PxVehicleDrive4W.cpp */; }; + FFFFe219c5407ffde219c540 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c5407ffde219c540 /* PxVehicleDriveNW.cpp */; }; + FFFFe219c5a87ffde219c5a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c5a87ffde219c5a8 /* PxVehicleDriveTank.cpp */; }; + FFFFe219c6107ffde219c610 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c6107ffde219c610 /* PxVehicleMetaData.cpp */; }; + FFFFe219c6787ffde219c678 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c6787ffde219c678 /* PxVehicleNoDrive.cpp */; }; + FFFFe219c6e07ffde219c6e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c6e07ffde219c6e0 /* PxVehicleSDK.cpp */; }; + FFFFe219c7487ffde219c748 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c7487ffde219c748 /* PxVehicleSerialization.cpp */; }; + FFFFe219c7b07ffde219c7b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c7b07ffde219c7b0 /* PxVehicleSuspWheelTire4.cpp */; }; + FFFFe219c8187ffde219c818 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c8187ffde219c818 /* PxVehicleTireFriction.cpp */; }; + FFFFe219c8807ffde219c880 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c8807ffde219c880 /* PxVehicleUpdate.cpp */; }; + FFFFe219c8e87ffde219c8e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c8e87ffde219c8e8 /* PxVehicleWheels.cpp */; }; + FFFFe219c9507ffde219c950 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c9507ffde219c950 /* VehicleUtilControl.cpp */; }; + FFFFe219c9b87ffde219c9b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c9b87ffde219c9b8 /* VehicleUtilSetup.cpp */; }; + FFFFe219ca207ffde219ca20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ca207ffde219ca20 /* VehicleUtilTelemetry.cpp */; }; + FFFFe2961be87ffde2961be8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDe2961be87ffde2961be8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; + FFFFe2961c507ffde2961c50 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDe2961c507ffde2961c50 /* src/PxVehicleMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDbd07bfb07f87bd07bfb0 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDba80b0007f87ba80b000 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b0687f87ba80b068 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b0d07f87ba80b0d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b1387f87ba80b138 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b1a07f87ba80b1a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b2087f87ba80b208 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b2707f87ba80b270 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b2d87f87ba80b2d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b3407f87ba80b340 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b3a87f87ba80b3a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b4107f87ba80b410 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b4787f87ba80b478 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b4e07f87ba80b4e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b5487f87ba80b548 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80b5b07f87ba80b5b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8194007f87ba819400 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8194687f87ba819468 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8194d07f87ba8194d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8195387f87ba819538 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8195a07f87ba8195a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8196087f87ba819608 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8196707f87ba819670 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8196d87f87ba8196d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8197407f87ba819740 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8197a87f87ba8197a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8198107f87ba819810 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8198787f87ba819878 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8198e07f87ba8198e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8199487f87ba819948 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8199b07f87ba8199b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba819a187f87ba819a18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba819a807f87ba819a80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba819ae87f87ba819ae8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba819b507f87ba819b50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba819bb87f87ba819bb8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba819c207f87ba819c20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb9ac33907f87b9ac3390 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9ac33f87f87b9ac33f8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9ac34607f87b9ac3460 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9ac34c87f87b9ac34c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb9ac35307f87b9ac3530 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe29504707ffde2950470 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe219a4007ffde219a400 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a4687ffde219a468 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a4d07ffde219a4d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a5387ffde219a538 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a5a07ffde219a5a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a6087ffde219a608 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a6707ffde219a670 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a6d87ffde219a6d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a7407ffde219a740 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a7a87ffde219a7a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a8107ffde219a810 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a8787ffde219a878 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a8e07ffde219a8e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a9487ffde219a948 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219a9b07ffde219a9b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219c2007ffde219c200 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219c2687ffde219c268 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219c2d07ffde219c2d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219c3387ffde219c338 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219c3a07ffde219c3a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219c4087ffde219c408 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c4707ffde219c470 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c4d87ffde219c4d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c5407ffde219c540 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c5a87ffde219c5a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c6107ffde219c610 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c6787ffde219c678 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c6e07ffde219c6e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c7487ffde219c748 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c7b07ffde219c7b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c8187ffde219c818 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c8807ffde219c880 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c8e87ffde219c8e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c9507ffde219c950 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219c9b87ffde219c9b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219ca207ffde219ca20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2961ab07ffde2961ab0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2961b187ffde2961b18 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2961b807ffde2961b80 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2961be87ffde2961be8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2961c507ffde2961c50 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2bd07bfb07f87bd07bfb0 /* Resources */ = { + FFF2e29504707ffde2950470 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -538,7 +538,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCbd07bfb07f87bd07bfb0 /* Frameworks */ = { + FFFCe29504707ffde2950470 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -548,28 +548,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8bd07bfb07f87bd07bfb0 /* Sources */ = { + FFF8e29504707ffde2950470 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFba8196087f87ba819608, - FFFFba8196707f87ba819670, - FFFFba8196d87f87ba8196d8, - FFFFba8197407f87ba819740, - FFFFba8197a87f87ba8197a8, - FFFFba8198107f87ba819810, - FFFFba8198787f87ba819878, - FFFFba8198e07f87ba8198e0, - FFFFba8199487f87ba819948, - FFFFba8199b07f87ba8199b0, - FFFFba819a187f87ba819a18, - FFFFba819a807f87ba819a80, - FFFFba819ae87f87ba819ae8, - FFFFba819b507f87ba819b50, - FFFFba819bb87f87ba819bb8, - FFFFba819c207f87ba819c20, - FFFFb9ac34c87f87b9ac34c8, - FFFFb9ac35307f87b9ac3530, + FFFFe219c4087ffde219c408, + FFFFe219c4707ffde219c470, + FFFFe219c4d87ffde219c4d8, + FFFFe219c5407ffde219c540, + FFFFe219c5a87ffde219c5a8, + FFFFe219c6107ffde219c610, + FFFFe219c6787ffde219c678, + FFFFe219c6e07ffde219c6e0, + FFFFe219c7487ffde219c748, + FFFFe219c7b07ffde219c7b0, + FFFFe219c8187ffde219c818, + FFFFe219c8807ffde219c880, + FFFFe219c8e87ffde219c8e8, + FFFFe219c9507ffde219c950, + FFFFe219c9b87ffde219c9b8, + FFFFe219ca207ffde219ca20, + FFFFe2961be87ffde2961be8, + FFFFe2961c507ffde2961c50, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -581,220 +581,220 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXExtensions */ - FFFFba07e6e87f87ba07e6e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07e6e87f87ba07e6e8 /* ExtBroadPhase.cpp */; }; - FFFFba07e7507f87ba07e750 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07e7507f87ba07e750 /* ExtClothFabricCooker.cpp */; }; - FFFFba07e7b87f87ba07e7b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07e7b87f87ba07e7b8 /* ExtClothGeodesicTetherCooker.cpp */; }; - FFFFba07e8207f87ba07e820 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07e8207f87ba07e820 /* ExtClothMeshQuadifier.cpp */; }; - FFFFba07e8887f87ba07e888 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07e8887f87ba07e888 /* ExtClothSimpleTetherCooker.cpp */; }; - FFFFba07e8f07f87ba07e8f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07e8f07f87ba07e8f0 /* ExtCollection.cpp */; }; - FFFFba07e9587f87ba07e958 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07e9587f87ba07e958 /* ExtConvexMeshExt.cpp */; }; - FFFFba07e9c07f87ba07e9c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07e9c07f87ba07e9c0 /* ExtCpuWorkerThread.cpp */; }; - FFFFba07ea287f87ba07ea28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07ea287f87ba07ea28 /* ExtD6Joint.cpp */; }; - FFFFba07ea907f87ba07ea90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07ea907f87ba07ea90 /* ExtD6JointSolverPrep.cpp */; }; - FFFFba07eaf87f87ba07eaf8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07eaf87f87ba07eaf8 /* ExtDefaultCpuDispatcher.cpp */; }; - FFFFba07eb607f87ba07eb60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07eb607f87ba07eb60 /* ExtDefaultErrorCallback.cpp */; }; - FFFFba07ebc87f87ba07ebc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07ebc87f87ba07ebc8 /* ExtDefaultSimulationFilterShader.cpp */; }; - FFFFba07ec307f87ba07ec30 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07ec307f87ba07ec30 /* ExtDefaultStreams.cpp */; }; - FFFFba07ec987f87ba07ec98 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07ec987f87ba07ec98 /* ExtDistanceJoint.cpp */; }; - FFFFba07ed007f87ba07ed00 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07ed007f87ba07ed00 /* ExtDistanceJointSolverPrep.cpp */; }; - FFFFba07ed687f87ba07ed68 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07ed687f87ba07ed68 /* ExtExtensions.cpp */; }; - FFFFba07edd07f87ba07edd0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07edd07f87ba07edd0 /* ExtFixedJoint.cpp */; }; - FFFFba07ee387f87ba07ee38 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07ee387f87ba07ee38 /* ExtFixedJointSolverPrep.cpp */; }; - FFFFba07eea07f87ba07eea0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07eea07f87ba07eea0 /* ExtJoint.cpp */; }; - FFFFba07ef087f87ba07ef08 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07ef087f87ba07ef08 /* ExtMetaData.cpp */; }; - FFFFba07ef707f87ba07ef70 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07ef707f87ba07ef70 /* ExtParticleExt.cpp */; }; - FFFFba07efd87f87ba07efd8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07efd87f87ba07efd8 /* ExtPrismaticJoint.cpp */; }; - FFFFba07f0407f87ba07f040 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f0407f87ba07f040 /* ExtPrismaticJointSolverPrep.cpp */; }; - FFFFba07f0a87f87ba07f0a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f0a87f87ba07f0a8 /* ExtPvd.cpp */; }; - FFFFba07f1107f87ba07f110 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f1107f87ba07f110 /* ExtPxStringTable.cpp */; }; - FFFFba07f1787f87ba07f178 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f1787f87ba07f178 /* ExtRaycastCCD.cpp */; }; - FFFFba07f1e07f87ba07f1e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f1e07f87ba07f1e0 /* ExtRevoluteJoint.cpp */; }; - FFFFba07f2487f87ba07f248 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f2487f87ba07f248 /* ExtRevoluteJointSolverPrep.cpp */; }; - FFFFba07f2b07f87ba07f2b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f2b07f87ba07f2b0 /* ExtRigidBodyExt.cpp */; }; - FFFFba07f3187f87ba07f318 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f3187f87ba07f318 /* ExtSceneQueryExt.cpp */; }; - FFFFba07f3807f87ba07f380 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f3807f87ba07f380 /* ExtSimpleFactory.cpp */; }; - FFFFba07f3e87f87ba07f3e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f3e87f87ba07f3e8 /* ExtSmoothNormals.cpp */; }; - FFFFba07f4507f87ba07f450 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f4507f87ba07f450 /* ExtSphericalJoint.cpp */; }; - FFFFba07f4b87f87ba07f4b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f4b87f87ba07f4b8 /* ExtSphericalJointSolverPrep.cpp */; }; - FFFFba07f5207f87ba07f520 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba07f5207f87ba07f520 /* ExtTriangleMeshExt.cpp */; }; - FFFFba81c4d07f87ba81c4d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81c4d07f87ba81c4d0 /* SnSerialUtils.cpp */; }; - FFFFba81c5387f87ba81c538 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81c5387f87ba81c538 /* SnSerialization.cpp */; }; - FFFFba81c5a07f87ba81c5a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81c5a07f87ba81c5a0 /* SnSerializationRegistry.cpp */; }; - FFFFba81c8e07f87ba81c8e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81c8e07f87ba81c8e0 /* Binary/SnBinaryDeserialization.cpp */; }; - FFFFba81c9487f87ba81c948 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81c9487f87ba81c948 /* Binary/SnBinarySerialization.cpp */; }; - FFFFba81c9b07f87ba81c9b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81c9b07f87ba81c9b0 /* Binary/SnConvX.cpp */; }; - FFFFba81ca187f87ba81ca18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81ca187f87ba81ca18 /* Binary/SnConvX_Align.cpp */; }; - FFFFba81ca807f87ba81ca80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81ca807f87ba81ca80 /* Binary/SnConvX_Convert.cpp */; }; - FFFFba81cae87f87ba81cae8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81cae87f87ba81cae8 /* Binary/SnConvX_Error.cpp */; }; - FFFFba81cb507f87ba81cb50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81cb507f87ba81cb50 /* Binary/SnConvX_MetaData.cpp */; }; - FFFFba81cbb87f87ba81cbb8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81cbb87f87ba81cbb8 /* Binary/SnConvX_Output.cpp */; }; - FFFFba81cc207f87ba81cc20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81cc207f87ba81cc20 /* Binary/SnConvX_Union.cpp */; }; - FFFFba81cc887f87ba81cc88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81cc887f87ba81cc88 /* Binary/SnSerializationContext.cpp */; }; - FFFFba81d5787f87ba81d578 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81d5787f87ba81d578 /* Xml/SnJointRepXSerializer.cpp */; }; - FFFFba81d5e07f87ba81d5e0 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81d5e07f87ba81d5e0 /* Xml/SnRepXCoreSerializer.cpp */; }; - FFFFba81d6487f87ba81d648 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81d6487f87ba81d648 /* Xml/SnRepXUpgrader.cpp */; }; - FFFFba81d6b07f87ba81d6b0 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDba81d6b07f87ba81d6b0 /* Xml/SnXmlSerialization.cpp */; }; - FFFFba81bae07f87ba81bae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDba81bae07f87ba81bae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; + FFFFe219eae87ffde219eae8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219eae87ffde219eae8 /* ExtBroadPhase.cpp */; }; + FFFFe219eb507ffde219eb50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219eb507ffde219eb50 /* ExtClothFabricCooker.cpp */; }; + FFFFe219ebb87ffde219ebb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ebb87ffde219ebb8 /* ExtClothGeodesicTetherCooker.cpp */; }; + FFFFe219ec207ffde219ec20 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ec207ffde219ec20 /* ExtClothMeshQuadifier.cpp */; }; + FFFFe219ec887ffde219ec88 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ec887ffde219ec88 /* ExtClothSimpleTetherCooker.cpp */; }; + FFFFe219ecf07ffde219ecf0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ecf07ffde219ecf0 /* ExtCollection.cpp */; }; + FFFFe219ed587ffde219ed58 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ed587ffde219ed58 /* ExtConvexMeshExt.cpp */; }; + FFFFe219edc07ffde219edc0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219edc07ffde219edc0 /* ExtCpuWorkerThread.cpp */; }; + FFFFe219ee287ffde219ee28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ee287ffde219ee28 /* ExtD6Joint.cpp */; }; + FFFFe219ee907ffde219ee90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ee907ffde219ee90 /* ExtD6JointSolverPrep.cpp */; }; + FFFFe219eef87ffde219eef8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219eef87ffde219eef8 /* ExtDefaultCpuDispatcher.cpp */; }; + FFFFe219ef607ffde219ef60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ef607ffde219ef60 /* ExtDefaultErrorCallback.cpp */; }; + FFFFe219efc87ffde219efc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219efc87ffde219efc8 /* ExtDefaultSimulationFilterShader.cpp */; }; + FFFFe219f0307ffde219f030 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f0307ffde219f030 /* ExtDefaultStreams.cpp */; }; + FFFFe219f0987ffde219f098 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f0987ffde219f098 /* ExtDistanceJoint.cpp */; }; + FFFFe219f1007ffde219f100 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f1007ffde219f100 /* ExtDistanceJointSolverPrep.cpp */; }; + FFFFe219f1687ffde219f168 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f1687ffde219f168 /* ExtExtensions.cpp */; }; + FFFFe219f1d07ffde219f1d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f1d07ffde219f1d0 /* ExtFixedJoint.cpp */; }; + FFFFe219f2387ffde219f238 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f2387ffde219f238 /* ExtFixedJointSolverPrep.cpp */; }; + FFFFe219f2a07ffde219f2a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f2a07ffde219f2a0 /* ExtJoint.cpp */; }; + FFFFe219f3087ffde219f308 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f3087ffde219f308 /* ExtMetaData.cpp */; }; + FFFFe219f3707ffde219f370 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f3707ffde219f370 /* ExtParticleExt.cpp */; }; + FFFFe219f3d87ffde219f3d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f3d87ffde219f3d8 /* ExtPrismaticJoint.cpp */; }; + FFFFe219f4407ffde219f440 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f4407ffde219f440 /* ExtPrismaticJointSolverPrep.cpp */; }; + FFFFe219f4a87ffde219f4a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f4a87ffde219f4a8 /* ExtPvd.cpp */; }; + FFFFe219f5107ffde219f510 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f5107ffde219f510 /* ExtPxStringTable.cpp */; }; + FFFFe219f5787ffde219f578 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f5787ffde219f578 /* ExtRaycastCCD.cpp */; }; + FFFFe219f5e07ffde219f5e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f5e07ffde219f5e0 /* ExtRevoluteJoint.cpp */; }; + FFFFe219f6487ffde219f648 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f6487ffde219f648 /* ExtRevoluteJointSolverPrep.cpp */; }; + FFFFe219f6b07ffde219f6b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f6b07ffde219f6b0 /* ExtRigidBodyExt.cpp */; }; + FFFFe219f7187ffde219f718 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f7187ffde219f718 /* ExtSceneQueryExt.cpp */; }; + FFFFe219f7807ffde219f780 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f7807ffde219f780 /* ExtSimpleFactory.cpp */; }; + FFFFe219f7e87ffde219f7e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f7e87ffde219f7e8 /* ExtSmoothNormals.cpp */; }; + FFFFe219f8507ffde219f850 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f8507ffde219f850 /* ExtSphericalJoint.cpp */; }; + FFFFe219f8b87ffde219f8b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f8b87ffde219f8b8 /* ExtSphericalJointSolverPrep.cpp */; }; + FFFFe219f9207ffde219f920 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f9207ffde219f920 /* ExtTriangleMeshExt.cpp */; }; + FFFFe21a20d07ffde21a20d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a20d07ffde21a20d0 /* SnSerialUtils.cpp */; }; + FFFFe21a21387ffde21a2138 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a21387ffde21a2138 /* SnSerialization.cpp */; }; + FFFFe21a21a07ffde21a21a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a21a07ffde21a21a0 /* SnSerializationRegistry.cpp */; }; + FFFFe21a24e07ffde21a24e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a24e07ffde21a24e0 /* Binary/SnBinaryDeserialization.cpp */; }; + FFFFe21a25487ffde21a2548 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a25487ffde21a2548 /* Binary/SnBinarySerialization.cpp */; }; + FFFFe21a25b07ffde21a25b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a25b07ffde21a25b0 /* Binary/SnConvX.cpp */; }; + FFFFe21a26187ffde21a2618 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a26187ffde21a2618 /* Binary/SnConvX_Align.cpp */; }; + FFFFe21a26807ffde21a2680 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a26807ffde21a2680 /* Binary/SnConvX_Convert.cpp */; }; + FFFFe21a26e87ffde21a26e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a26e87ffde21a26e8 /* Binary/SnConvX_Error.cpp */; }; + FFFFe21a27507ffde21a2750 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a27507ffde21a2750 /* Binary/SnConvX_MetaData.cpp */; }; + FFFFe21a27b87ffde21a27b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a27b87ffde21a27b8 /* Binary/SnConvX_Output.cpp */; }; + FFFFe21a28207ffde21a2820 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a28207ffde21a2820 /* Binary/SnConvX_Union.cpp */; }; + FFFFe21a28887ffde21a2888 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a28887ffde21a2888 /* Binary/SnSerializationContext.cpp */; }; + FFFFe21a31787ffde21a3178 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a31787ffde21a3178 /* Xml/SnJointRepXSerializer.cpp */; }; + FFFFe21a31e07ffde21a31e0 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a31e07ffde21a31e0 /* Xml/SnRepXCoreSerializer.cpp */; }; + FFFFe21a32487ffde21a3248 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a32487ffde21a3248 /* Xml/SnRepXUpgrader.cpp */; }; + FFFFe21a32b07ffde21a32b0 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a32b07ffde21a32b0 /* Xml/SnXmlSerialization.cpp */; }; + FFFFe21a0ee07ffde21a0ee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDe21a0ee07ffde21a0ee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDb9ac2fb07f87b9ac2fb0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDba0746007f87ba074600 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0746687f87ba074668 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0746d07f87ba0746d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0747387f87ba074738 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0747a07f87ba0747a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0748087f87ba074808 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0748707f87ba074870 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0748d87f87ba0748d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0749407f87ba074940 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0749a87f87ba0749a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074a107f87ba074a10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074a787f87ba074a78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074ae07f87ba074ae0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074b487f87ba074b48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074bb07f87ba074bb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074c187f87ba074c18 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074c807f87ba074c80 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074ce87f87ba074ce8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074d507f87ba074d50 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074db87f87ba074db8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074e207f87ba074e20 /* PxJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointRepXSerializer.h"; path = "../../../Include/extensions/PxJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074e887f87ba074e88 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074ef07f87ba074ef0 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074f587f87ba074f58 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba074fc07f87ba074fc0 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0750287f87ba075028 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0750907f87ba075090 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0750f87f87ba0750f8 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0751607f87ba075160 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0751c87f87ba0751c8 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0752307f87ba075230 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0752987f87ba075298 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0753007f87ba075300 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0753687f87ba075368 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0753d07f87ba0753d0 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0754387f87ba075438 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0754a07f87ba0754a0 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0755087f87ba075508 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e0007f87ba07e000 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e0687f87ba07e068 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e0d07f87ba07e0d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e1387f87ba07e138 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e1a07f87ba07e1a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e2087f87ba07e208 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e2707f87ba07e270 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e2d87f87ba07e2d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e3407f87ba07e340 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e3a87f87ba07e3a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e4107f87ba07e410 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e4787f87ba07e478 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e4e07f87ba07e4e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e5487f87ba07e548 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e5b07f87ba07e5b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e6187f87ba07e618 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e6807f87ba07e680 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDba07e6e87f87ba07e6e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07e7507f87ba07e750 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07e7b87f87ba07e7b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07e8207f87ba07e820 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07e8887f87ba07e888 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07e8f07f87ba07e8f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07e9587f87ba07e958 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07e9c07f87ba07e9c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07ea287f87ba07ea28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07ea907f87ba07ea90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07eaf87f87ba07eaf8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07eb607f87ba07eb60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07ebc87f87ba07ebc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07ec307f87ba07ec30 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07ec987f87ba07ec98 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07ed007f87ba07ed00 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07ed687f87ba07ed68 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07edd07f87ba07edd0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07ee387f87ba07ee38 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07eea07f87ba07eea0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07ef087f87ba07ef08 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07ef707f87ba07ef70 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07efd87f87ba07efd8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f0407f87ba07f040 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f0a87f87ba07f0a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f1107f87ba07f110 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f1787f87ba07f178 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f1e07f87ba07f1e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f2487f87ba07f248 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f2b07f87ba07f2b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f3187f87ba07f318 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f3807f87ba07f380 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f3e87f87ba07f3e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f4507f87ba07f450 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f4b87f87ba07f4b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba07f5207f87ba07f520 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81c4007f87ba81c400 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81c4687f87ba81c468 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81c4d07f87ba81c4d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81c5387f87ba81c538 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81c5a07f87ba81c5a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81c6087f87ba81c608 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81c6707f87ba81c670 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81c6d87f87ba81c6d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81c7407f87ba81c740 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81c7a87f87ba81c7a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81c8107f87ba81c810 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81c8787f87ba81c878 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81c8e07f87ba81c8e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81c9487f87ba81c948 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81c9b07f87ba81c9b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81ca187f87ba81ca18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81ca807f87ba81ca80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81cae87f87ba81cae8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81cb507f87ba81cb50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81cbb87f87ba81cbb8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81cc207f87ba81cc20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81cc887f87ba81cc88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81ccf07f87ba81ccf0 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81cd587f87ba81cd58 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81cdc07f87ba81cdc0 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81ce287f87ba81ce28 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81ce907f87ba81ce90 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81cef87f87ba81cef8 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81cf607f87ba81cf60 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81cfc87f87ba81cfc8 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d0307f87ba81d030 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d0987f87ba81d098 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d1007f87ba81d100 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d1687f87ba81d168 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d1d07f87ba81d1d0 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d2387f87ba81d238 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d2a07f87ba81d2a0 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d3087f87ba81d308 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d3707f87ba81d370 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d3d87f87ba81d3d8 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d4407f87ba81d440 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d4a87f87ba81d4a8 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d5107f87ba81d510 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81d5787f87ba81d578 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81d5e07f87ba81d5e0 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81d6487f87ba81d648 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81d6b07f87ba81d6b0 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba81d7187f87ba81d718 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81b6007f87ba81b600 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81b6687f87ba81b668 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81b6d07f87ba81b6d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81b7387f87ba81b738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81b7a07f87ba81b7a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81b8087f87ba81b808 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81b8707f87ba81b870 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81b8d87f87ba81b8d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81b9407f87ba81b940 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81b9a87f87ba81b9a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81ba107f87ba81ba10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81ba787f87ba81ba78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDba81bae07f87ba81bae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe29617f07ffde29617f0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe219fa007ffde219fa00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219fa687ffde219fa68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219fad07ffde219fad0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219fb387ffde219fb38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219fba07ffde219fba0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219fc087ffde219fc08 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219fc707ffde219fc70 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219fcd87ffde219fcd8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219fd407ffde219fd40 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219fda87ffde219fda8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219fe107ffde219fe10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219fe787ffde219fe78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219fee07ffde219fee0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219ff487ffde219ff48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219ffb07ffde219ffb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a00187ffde21a0018 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a00807ffde21a0080 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a00e87ffde21a00e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a01507ffde21a0150 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a01b87ffde21a01b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a02207ffde21a0220 /* PxJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointRepXSerializer.h"; path = "../../../Include/extensions/PxJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a02887ffde21a0288 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a02f07ffde21a02f0 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a03587ffde21a0358 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a03c07ffde21a03c0 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a04287ffde21a0428 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a04907ffde21a0490 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a04f87ffde21a04f8 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a05607ffde21a0560 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a05c87ffde21a05c8 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a06307ffde21a0630 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a06987ffde21a0698 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a07007ffde21a0700 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a07687ffde21a0768 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a07d07ffde21a07d0 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a08387ffde21a0838 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a08a07ffde21a08a0 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a09087ffde21a0908 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e4007ffde219e400 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e4687ffde219e468 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e4d07ffde219e4d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e5387ffde219e538 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e5a07ffde219e5a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e6087ffde219e608 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e6707ffde219e670 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e6d87ffde219e6d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e7407ffde219e740 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e7a87ffde219e7a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e8107ffde219e810 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e8787ffde219e878 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e8e07ffde219e8e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e9487ffde219e948 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219e9b07ffde219e9b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219ea187ffde219ea18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219ea807ffde219ea80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDe219eae87ffde219eae8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219eb507ffde219eb50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219ebb87ffde219ebb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219ec207ffde219ec20 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219ec887ffde219ec88 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219ecf07ffde219ecf0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219ed587ffde219ed58 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219edc07ffde219edc0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219ee287ffde219ee28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219ee907ffde219ee90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219eef87ffde219eef8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219ef607ffde219ef60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219efc87ffde219efc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f0307ffde219f030 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f0987ffde219f098 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f1007ffde219f100 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f1687ffde219f168 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f1d07ffde219f1d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f2387ffde219f238 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f2a07ffde219f2a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f3087ffde219f308 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f3707ffde219f370 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f3d87ffde219f3d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f4407ffde219f440 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f4a87ffde219f4a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f5107ffde219f510 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f5787ffde219f578 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f5e07ffde219f5e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f6487ffde219f648 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f6b07ffde219f6b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f7187ffde219f718 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f7807ffde219f780 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f7e87ffde219f7e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f8507ffde219f850 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f8b87ffde219f8b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe219f9207ffde219f920 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a20007ffde21a2000 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a20687ffde21a2068 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a20d07ffde21a20d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a21387ffde21a2138 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a21a07ffde21a21a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a22087ffde21a2208 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a22707ffde21a2270 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a22d87ffde21a22d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a23407ffde21a2340 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a23a87ffde21a23a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a24107ffde21a2410 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a24787ffde21a2478 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a24e07ffde21a24e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a25487ffde21a2548 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a25b07ffde21a25b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a26187ffde21a2618 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a26807ffde21a2680 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a26e87ffde21a26e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a27507ffde21a2750 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a27b87ffde21a27b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a28207ffde21a2820 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a28887ffde21a2888 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a28f07ffde21a28f0 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a29587ffde21a2958 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a29c07ffde21a29c0 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2a287ffde21a2a28 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2a907ffde21a2a90 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2af87ffde21a2af8 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2b607ffde21a2b60 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2bc87ffde21a2bc8 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2c307ffde21a2c30 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2c987ffde21a2c98 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2d007ffde21a2d00 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2d687ffde21a2d68 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2dd07ffde21a2dd0 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2e387ffde21a2e38 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2ea07ffde21a2ea0 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2f087ffde21a2f08 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2f707ffde21a2f70 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a2fd87ffde21a2fd8 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a30407ffde21a3040 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a30a87ffde21a30a8 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a31107ffde21a3110 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a31787ffde21a3178 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a31e07ffde21a31e0 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a32487ffde21a3248 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a32b07ffde21a32b0 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a33187ffde21a3318 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0a007ffde21a0a00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0a687ffde21a0a68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0ad07ffde21a0ad0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0b387ffde21a0b38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0ba07ffde21a0ba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0c087ffde21a0c08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0c707ffde21a0c70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0cd87ffde21a0cd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0d407ffde21a0d40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0da87ffde21a0da8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0e107ffde21a0e10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0e787ffde21a0e78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a0ee07ffde21a0ee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2b9ac2fb07f87b9ac2fb0 /* Resources */ = { + FFF2e29617f07ffde29617f0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -804,7 +804,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCb9ac2fb07f87b9ac2fb0 /* Frameworks */ = { + FFFCe29617f07ffde29617f0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -814,64 +814,64 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8b9ac2fb07f87b9ac2fb0 /* Sources */ = { + FFF8e29617f07ffde29617f0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFba07e6e87f87ba07e6e8, - FFFFba07e7507f87ba07e750, - FFFFba07e7b87f87ba07e7b8, - FFFFba07e8207f87ba07e820, - FFFFba07e8887f87ba07e888, - FFFFba07e8f07f87ba07e8f0, - FFFFba07e9587f87ba07e958, - FFFFba07e9c07f87ba07e9c0, - FFFFba07ea287f87ba07ea28, - FFFFba07ea907f87ba07ea90, - FFFFba07eaf87f87ba07eaf8, - FFFFba07eb607f87ba07eb60, - FFFFba07ebc87f87ba07ebc8, - FFFFba07ec307f87ba07ec30, - FFFFba07ec987f87ba07ec98, - FFFFba07ed007f87ba07ed00, - FFFFba07ed687f87ba07ed68, - FFFFba07edd07f87ba07edd0, - FFFFba07ee387f87ba07ee38, - FFFFba07eea07f87ba07eea0, - FFFFba07ef087f87ba07ef08, - FFFFba07ef707f87ba07ef70, - FFFFba07efd87f87ba07efd8, - FFFFba07f0407f87ba07f040, - FFFFba07f0a87f87ba07f0a8, - FFFFba07f1107f87ba07f110, - FFFFba07f1787f87ba07f178, - FFFFba07f1e07f87ba07f1e0, - FFFFba07f2487f87ba07f248, - FFFFba07f2b07f87ba07f2b0, - FFFFba07f3187f87ba07f318, - FFFFba07f3807f87ba07f380, - FFFFba07f3e87f87ba07f3e8, - FFFFba07f4507f87ba07f450, - FFFFba07f4b87f87ba07f4b8, - FFFFba07f5207f87ba07f520, - FFFFba81c4d07f87ba81c4d0, - FFFFba81c5387f87ba81c538, - FFFFba81c5a07f87ba81c5a0, - FFFFba81c8e07f87ba81c8e0, - FFFFba81c9487f87ba81c948, - FFFFba81c9b07f87ba81c9b0, - FFFFba81ca187f87ba81ca18, - FFFFba81ca807f87ba81ca80, - FFFFba81cae87f87ba81cae8, - FFFFba81cb507f87ba81cb50, - FFFFba81cbb87f87ba81cbb8, - FFFFba81cc207f87ba81cc20, - FFFFba81cc887f87ba81cc88, - FFFFba81d5787f87ba81d578, - FFFFba81d5e07f87ba81d5e0, - FFFFba81d6487f87ba81d648, - FFFFba81d6b07f87ba81d6b0, - FFFFba81bae07f87ba81bae0, + FFFFe219eae87ffde219eae8, + FFFFe219eb507ffde219eb50, + FFFFe219ebb87ffde219ebb8, + FFFFe219ec207ffde219ec20, + FFFFe219ec887ffde219ec88, + FFFFe219ecf07ffde219ecf0, + FFFFe219ed587ffde219ed58, + FFFFe219edc07ffde219edc0, + FFFFe219ee287ffde219ee28, + FFFFe219ee907ffde219ee90, + FFFFe219eef87ffde219eef8, + FFFFe219ef607ffde219ef60, + FFFFe219efc87ffde219efc8, + FFFFe219f0307ffde219f030, + FFFFe219f0987ffde219f098, + FFFFe219f1007ffde219f100, + FFFFe219f1687ffde219f168, + FFFFe219f1d07ffde219f1d0, + FFFFe219f2387ffde219f238, + FFFFe219f2a07ffde219f2a0, + FFFFe219f3087ffde219f308, + FFFFe219f3707ffde219f370, + FFFFe219f3d87ffde219f3d8, + FFFFe219f4407ffde219f440, + FFFFe219f4a87ffde219f4a8, + FFFFe219f5107ffde219f510, + FFFFe219f5787ffde219f578, + FFFFe219f5e07ffde219f5e0, + FFFFe219f6487ffde219f648, + FFFFe219f6b07ffde219f6b0, + FFFFe219f7187ffde219f718, + FFFFe219f7807ffde219f780, + FFFFe219f7e87ffde219f7e8, + FFFFe219f8507ffde219f850, + FFFFe219f8b87ffde219f8b8, + FFFFe219f9207ffde219f920, + FFFFe21a20d07ffde21a20d0, + FFFFe21a21387ffde21a2138, + FFFFe21a21a07ffde21a21a0, + FFFFe21a24e07ffde21a24e0, + FFFFe21a25487ffde21a2548, + FFFFe21a25b07ffde21a25b0, + FFFFe21a26187ffde21a2618, + FFFFe21a26807ffde21a2680, + FFFFe21a26e87ffde21a26e8, + FFFFe21a27507ffde21a2750, + FFFFe21a27b87ffde21a27b8, + FFFFe21a28207ffde21a2820, + FFFFe21a28887ffde21a2888, + FFFFe21a31787ffde21a3178, + FFFFe21a31e07ffde21a31e0, + FFFFe21a32487ffde21a3248, + FFFFe21a32b07ffde21a32b0, + FFFFe21a0ee07ffde21a0ee0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -880,56 +880,56 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4b9abea407f87b9abea40 /* PBXTargetDependency */ = { + FFF4e295e8007ffde295e800 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb85c61b07f87b85c61b0 /* PsFastXml */; - targetProxy = FFF5b85c61b07f87b85c61b0 /* PBXContainerItemProxy */; + target = FFFAe2942d107ffde2942d10 /* PsFastXml */; + targetProxy = FFF5e2942d107ffde2942d10 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SceneQuery */ - FFFFbc8192007f87bc819200 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbc8192007f87bc819200 /* SqAABBPruner.cpp */; }; - FFFFbc8192687f87bc819268 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbc8192687f87bc819268 /* SqAABBTree.cpp */; }; - FFFFbc8192d07f87bc8192d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbc8192d07f87bc8192d0 /* SqAABBTreeUpdateMap.cpp */; }; - FFFFbc8193387f87bc819338 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbc8193387f87bc819338 /* SqBounds.cpp */; }; - FFFFbc8193a07f87bc8193a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbc8193a07f87bc8193a0 /* SqBucketPruner.cpp */; }; - FFFFbc8194087f87bc819408 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbc8194087f87bc819408 /* SqExtendedBucketPruner.cpp */; }; - FFFFbc8194707f87bc819470 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbc8194707f87bc819470 /* SqMetaData.cpp */; }; - FFFFbc8194d87f87bc8194d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbc8194d87f87bc8194d8 /* SqPruningPool.cpp */; }; - FFFFbc8195407f87bc819540 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbc8195407f87bc819540 /* SqPruningStructure.cpp */; }; - FFFFbc8195a87f87bc8195a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbc8195a87f87bc8195a8 /* SqSceneQueryManager.cpp */; }; + FFFFe21a70007ffde21a7000 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a70007ffde21a7000 /* SqAABBPruner.cpp */; }; + FFFFe21a70687ffde21a7068 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a70687ffde21a7068 /* SqAABBTree.cpp */; }; + FFFFe21a70d07ffde21a70d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a70d07ffde21a70d0 /* SqAABBTreeUpdateMap.cpp */; }; + FFFFe21a71387ffde21a7138 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a71387ffde21a7138 /* SqBounds.cpp */; }; + FFFFe21a71a07ffde21a71a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a71a07ffde21a71a0 /* SqBucketPruner.cpp */; }; + FFFFe21a72087ffde21a7208 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a72087ffde21a7208 /* SqExtendedBucketPruner.cpp */; }; + FFFFe21a72707ffde21a7270 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a72707ffde21a7270 /* SqMetaData.cpp */; }; + FFFFe21a72d87ffde21a72d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a72d87ffde21a72d8 /* SqPruningPool.cpp */; }; + FFFFe21a73407ffde21a7340 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a73407ffde21a7340 /* SqPruningStructure.cpp */; }; + FFFFe21a73a87ffde21a73a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a73a87ffde21a73a8 /* SqSceneQueryManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDb9b326907f87b9b32690 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDbc8192007f87bc819200 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc8192687f87bc819268 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc8192d07f87bc8192d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc8193387f87bc819338 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc8193a07f87bc8193a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc8194087f87bc819408 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc8194707f87bc819470 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc8194d87f87bc8194d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc8195407f87bc819540 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc8195a87f87bc8195a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc8196107f87bc819610 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8196787f87bc819678 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8196e07f87bc8196e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8197487f87bc819748 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8197b07f87bc8197b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8198187f87bc819818 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8198807f87bc819880 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8198e87f87bc8198e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8199507f87bc819950 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8199b87f87bc8199b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9b32e407f87b9b32e40 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9b32ea87f87b9b32ea8 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9b32f107f87b9b32f10 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9b32f787f87b9b32f78 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe450b7207ffde450b720 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe21a70007ffde21a7000 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a70687ffde21a7068 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a70d07ffde21a70d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a71387ffde21a7138 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a71a07ffde21a71a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a72087ffde21a7208 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a72707ffde21a7270 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a72d87ffde21a72d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a73407ffde21a7340 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a73a87ffde21a73a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21a74107ffde21a7410 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a74787ffde21a7478 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a74e07ffde21a74e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a75487ffde21a7548 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a75b07ffde21a75b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a76187ffde21a7618 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a76807ffde21a7680 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a76e87ffde21a76e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a77507ffde21a7750 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a77b87ffde21a77b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; + FFFDe450f9307ffde450f930 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDe450f9987ffde450f998 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe450fa007ffde450fa00 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFDe450fa687ffde450fa68 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2b9b326907f87b9b32690 /* Resources */ = { + FFF2e450b7207ffde450b720 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -939,7 +939,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCb9b326907f87b9b32690 /* Frameworks */ = { + FFFCe450b7207ffde450b720 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -949,20 +949,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8b9b326907f87b9b32690 /* Sources */ = { + FFF8e450b7207ffde450b720 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFbc8192007f87bc819200, - FFFFbc8192687f87bc819268, - FFFFbc8192d07f87bc8192d0, - FFFFbc8193387f87bc819338, - FFFFbc8193a07f87bc8193a0, - FFFFbc8194087f87bc819408, - FFFFbc8194707f87bc819470, - FFFFbc8194d87f87bc8194d8, - FFFFbc8195407f87bc819540, - FFFFbc8195a87f87bc8195a8, + FFFFe21a70007ffde21a7000, + FFFFe21a70687ffde21a7068, + FFFFe21a70d07ffde21a70d0, + FFFFe21a71387ffde21a7138, + FFFFe21a71a07ffde21a71a0, + FFFFe21a72087ffde21a7208, + FFFFe21a72707ffde21a7270, + FFFFe21a72d87ffde21a72d8, + FFFFe21a73407ffde21a7340, + FFFFe21a73a87ffde21a73a8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -974,154 +974,154 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SimulationController */ - FFFFbb8137d07f87bb8137d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8137d07f87bb8137d0 /* ScActorCore.cpp */; }; - FFFFbb8138387f87bb813838 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8138387f87bb813838 /* ScActorSim.cpp */; }; - FFFFbb8138a07f87bb8138a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8138a07f87bb8138a0 /* ScArticulationCore.cpp */; }; - FFFFbb8139087f87bb813908 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8139087f87bb813908 /* ScArticulationJointCore.cpp */; }; - FFFFbb8139707f87bb813970 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8139707f87bb813970 /* ScArticulationJointSim.cpp */; }; - FFFFbb8139d87f87bb8139d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8139d87f87bb8139d8 /* ScArticulationSim.cpp */; }; - FFFFbb813a407f87bb813a40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813a407f87bb813a40 /* ScBodyCore.cpp */; }; - FFFFbb813aa87f87bb813aa8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813aa87f87bb813aa8 /* ScBodyCoreKinematic.cpp */; }; - FFFFbb813b107f87bb813b10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813b107f87bb813b10 /* ScBodySim.cpp */; }; - FFFFbb813b787f87bb813b78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813b787f87bb813b78 /* ScConstraintCore.cpp */; }; - FFFFbb813be07f87bb813be0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813be07f87bb813be0 /* ScConstraintGroupNode.cpp */; }; - FFFFbb813c487f87bb813c48 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813c487f87bb813c48 /* ScConstraintInteraction.cpp */; }; - FFFFbb813cb07f87bb813cb0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813cb07f87bb813cb0 /* ScConstraintProjectionManager.cpp */; }; - FFFFbb813d187f87bb813d18 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813d187f87bb813d18 /* ScConstraintProjectionTree.cpp */; }; - FFFFbb813d807f87bb813d80 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813d807f87bb813d80 /* ScConstraintSim.cpp */; }; - FFFFbb813de87f87bb813de8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813de87f87bb813de8 /* ScElementInteractionMarker.cpp */; }; - FFFFbb813e507f87bb813e50 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813e507f87bb813e50 /* ScElementSim.cpp */; }; - FFFFbb813eb87f87bb813eb8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813eb87f87bb813eb8 /* ScInteraction.cpp */; }; - FFFFbb813f207f87bb813f20 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813f207f87bb813f20 /* ScIterators.cpp */; }; - FFFFbb813f887f87bb813f88 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813f887f87bb813f88 /* ScMaterialCore.cpp */; }; - FFFFbb813ff07f87bb813ff0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb813ff07f87bb813ff0 /* ScMetaData.cpp */; }; - FFFFbb8140587f87bb814058 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8140587f87bb814058 /* ScNPhaseCore.cpp */; }; - FFFFbb8140c07f87bb8140c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8140c07f87bb8140c0 /* ScPhysics.cpp */; }; - FFFFbb8141287f87bb814128 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8141287f87bb814128 /* ScRigidCore.cpp */; }; - FFFFbb8141907f87bb814190 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8141907f87bb814190 /* ScRigidSim.cpp */; }; - FFFFbb8141f87f87bb8141f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8141f87f87bb8141f8 /* ScScene.cpp */; }; - FFFFbb8142607f87bb814260 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8142607f87bb814260 /* ScShapeCore.cpp */; }; - FFFFbb8142c87f87bb8142c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8142c87f87bb8142c8 /* ScShapeInteraction.cpp */; }; - FFFFbb8143307f87bb814330 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8143307f87bb814330 /* ScShapeSim.cpp */; }; - FFFFbb8143987f87bb814398 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8143987f87bb814398 /* ScSimStats.cpp */; }; - FFFFbb8144007f87bb814400 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8144007f87bb814400 /* ScSimulationController.cpp */; }; - FFFFbb8144687f87bb814468 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8144687f87bb814468 /* ScSqBoundsManager.cpp */; }; - FFFFbb8144d07f87bb8144d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8144d07f87bb8144d0 /* ScStaticCore.cpp */; }; - FFFFbb8145387f87bb814538 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8145387f87bb814538 /* ScStaticSim.cpp */; }; - FFFFbb8145a07f87bb8145a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8145a07f87bb8145a0 /* ScTriggerInteraction.cpp */; }; - FFFFbb8147407f87bb814740 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8147407f87bb814740 /* particles/ScParticleBodyInteraction.cpp */; }; - FFFFbb8147a87f87bb8147a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8147a87f87bb8147a8 /* particles/ScParticlePacketShape.cpp */; }; - FFFFbb8148107f87bb814810 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8148107f87bb814810 /* particles/ScParticleSystemCore.cpp */; }; - FFFFbb8148787f87bb814878 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8148787f87bb814878 /* particles/ScParticleSystemSim.cpp */; }; - FFFFbb8149b07f87bb8149b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8149b07f87bb8149b0 /* cloth/ScClothCore.cpp */; }; - FFFFbb814a187f87bb814a18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb814a187f87bb814a18 /* cloth/ScClothFabricCore.cpp */; }; - FFFFbb814a807f87bb814a80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb814a807f87bb814a80 /* cloth/ScClothShape.cpp */; }; - FFFFbb814ae87f87bb814ae8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb814ae87f87bb814ae8 /* cloth/ScClothSim.cpp */; }; + FFFFe21b0bd07ffde21b0bd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0bd07ffde21b0bd0 /* ScActorCore.cpp */; }; + FFFFe21b0c387ffde21b0c38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0c387ffde21b0c38 /* ScActorSim.cpp */; }; + FFFFe21b0ca07ffde21b0ca0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0ca07ffde21b0ca0 /* ScArticulationCore.cpp */; }; + FFFFe21b0d087ffde21b0d08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0d087ffde21b0d08 /* ScArticulationJointCore.cpp */; }; + FFFFe21b0d707ffde21b0d70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0d707ffde21b0d70 /* ScArticulationJointSim.cpp */; }; + FFFFe21b0dd87ffde21b0dd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0dd87ffde21b0dd8 /* ScArticulationSim.cpp */; }; + FFFFe21b0e407ffde21b0e40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0e407ffde21b0e40 /* ScBodyCore.cpp */; }; + FFFFe21b0ea87ffde21b0ea8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0ea87ffde21b0ea8 /* ScBodyCoreKinematic.cpp */; }; + FFFFe21b0f107ffde21b0f10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0f107ffde21b0f10 /* ScBodySim.cpp */; }; + FFFFe21b0f787ffde21b0f78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0f787ffde21b0f78 /* ScConstraintCore.cpp */; }; + FFFFe21b0fe07ffde21b0fe0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0fe07ffde21b0fe0 /* ScConstraintGroupNode.cpp */; }; + FFFFe21b10487ffde21b1048 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b10487ffde21b1048 /* ScConstraintInteraction.cpp */; }; + FFFFe21b10b07ffde21b10b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b10b07ffde21b10b0 /* ScConstraintProjectionManager.cpp */; }; + FFFFe21b11187ffde21b1118 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b11187ffde21b1118 /* ScConstraintProjectionTree.cpp */; }; + FFFFe21b11807ffde21b1180 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b11807ffde21b1180 /* ScConstraintSim.cpp */; }; + FFFFe21b11e87ffde21b11e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b11e87ffde21b11e8 /* ScElementInteractionMarker.cpp */; }; + FFFFe21b12507ffde21b1250 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b12507ffde21b1250 /* ScElementSim.cpp */; }; + FFFFe21b12b87ffde21b12b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b12b87ffde21b12b8 /* ScInteraction.cpp */; }; + FFFFe21b13207ffde21b1320 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b13207ffde21b1320 /* ScIterators.cpp */; }; + FFFFe21b13887ffde21b1388 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b13887ffde21b1388 /* ScMaterialCore.cpp */; }; + FFFFe21b13f07ffde21b13f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b13f07ffde21b13f0 /* ScMetaData.cpp */; }; + FFFFe21b14587ffde21b1458 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b14587ffde21b1458 /* ScNPhaseCore.cpp */; }; + FFFFe21b14c07ffde21b14c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b14c07ffde21b14c0 /* ScPhysics.cpp */; }; + FFFFe21b15287ffde21b1528 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b15287ffde21b1528 /* ScRigidCore.cpp */; }; + FFFFe21b15907ffde21b1590 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b15907ffde21b1590 /* ScRigidSim.cpp */; }; + FFFFe21b15f87ffde21b15f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b15f87ffde21b15f8 /* ScScene.cpp */; }; + FFFFe21b16607ffde21b1660 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b16607ffde21b1660 /* ScShapeCore.cpp */; }; + FFFFe21b16c87ffde21b16c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b16c87ffde21b16c8 /* ScShapeInteraction.cpp */; }; + FFFFe21b17307ffde21b1730 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b17307ffde21b1730 /* ScShapeSim.cpp */; }; + FFFFe21b17987ffde21b1798 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b17987ffde21b1798 /* ScSimStats.cpp */; }; + FFFFe21b18007ffde21b1800 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b18007ffde21b1800 /* ScSimulationController.cpp */; }; + FFFFe21b18687ffde21b1868 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b18687ffde21b1868 /* ScSqBoundsManager.cpp */; }; + FFFFe21b18d07ffde21b18d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b18d07ffde21b18d0 /* ScStaticCore.cpp */; }; + FFFFe21b19387ffde21b1938 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b19387ffde21b1938 /* ScStaticSim.cpp */; }; + FFFFe21b19a07ffde21b19a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b19a07ffde21b19a0 /* ScTriggerInteraction.cpp */; }; + FFFFe21b1b407ffde21b1b40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1b407ffde21b1b40 /* particles/ScParticleBodyInteraction.cpp */; }; + FFFFe21b1ba87ffde21b1ba8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1ba87ffde21b1ba8 /* particles/ScParticlePacketShape.cpp */; }; + FFFFe21b1c107ffde21b1c10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1c107ffde21b1c10 /* particles/ScParticleSystemCore.cpp */; }; + FFFFe21b1c787ffde21b1c78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1c787ffde21b1c78 /* particles/ScParticleSystemSim.cpp */; }; + FFFFe21b1db07ffde21b1db0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1db07ffde21b1db0 /* cloth/ScClothCore.cpp */; }; + FFFFe21b1e187ffde21b1e18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1e187ffde21b1e18 /* cloth/ScClothFabricCore.cpp */; }; + FFFFe21b1e807ffde21b1e80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1e807ffde21b1e80 /* cloth/ScClothShape.cpp */; }; + FFFFe21b1ee87ffde21b1ee8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1ee87ffde21b1ee8 /* cloth/ScClothSim.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDb9b2f6c07f87b9b2f6c0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDbc8174007f87bc817400 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8174687f87bc817468 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8174d07f87bc8174d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8175387f87bc817538 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8175a07f87bc8175a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8176087f87bc817608 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8176707f87bc817670 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8176d87f87bc8176d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8177407f87bc817740 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8177a87f87bc8177a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8178107f87bc817810 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8178787f87bc817878 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8178e07f87bc8178e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8179487f87bc817948 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc8179b07f87bc8179b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812a007f87bb812a00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812a687f87bb812a68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812ad07f87bb812ad0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812b387f87bb812b38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812ba07f87bb812ba0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812c087f87bb812c08 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812c707f87bb812c70 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812cd87f87bb812cd8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812d407f87bb812d40 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812da87f87bb812da8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812e107f87bb812e10 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812e787f87bb812e78 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812ee07f87bb812ee0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812f487f87bb812f48 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb812fb07f87bb812fb0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8130187f87bb813018 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8130807f87bb813080 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8130e87f87bb8130e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8131507f87bb813150 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8131b87f87bb8131b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8132207f87bb813220 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8132887f87bb813288 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8132f07f87bb8132f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8133587f87bb813358 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8133c07f87bb8133c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8134287f87bb813428 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8134907f87bb813490 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8134f87f87bb8134f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8135607f87bb813560 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8135c87f87bb8135c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8136307f87bb813630 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8136987f87bb813698 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8137007f87bb813700 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8137687f87bb813768 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8137d07f87bb8137d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8138387f87bb813838 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8138a07f87bb8138a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8139087f87bb813908 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8139707f87bb813970 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8139d87f87bb8139d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813a407f87bb813a40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813aa87f87bb813aa8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813b107f87bb813b10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813b787f87bb813b78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813be07f87bb813be0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813c487f87bb813c48 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813cb07f87bb813cb0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813d187f87bb813d18 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813d807f87bb813d80 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813de87f87bb813de8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813e507f87bb813e50 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813eb87f87bb813eb8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813f207f87bb813f20 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813f887f87bb813f88 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb813ff07f87bb813ff0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8140587f87bb814058 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8140c07f87bb8140c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8141287f87bb814128 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8141907f87bb814190 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8141f87f87bb8141f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8142607f87bb814260 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8142c87f87bb8142c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8143307f87bb814330 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8143987f87bb814398 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8144007f87bb814400 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8144687f87bb814468 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8144d07f87bb8144d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8145387f87bb814538 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8145a07f87bb8145a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8146087f87bb814608 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8146707f87bb814670 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8146d87f87bb8146d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8147407f87bb814740 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8147a87f87bb8147a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8148107f87bb814810 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8148787f87bb814878 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8148e07f87bb8148e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8149487f87bb814948 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8149b07f87bb8149b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb814a187f87bb814a18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb814a807f87bb814a80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb814ae87f87bb814ae8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe450fbf07ffde450fbf0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe21a9a007ffde21a9a00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9a687ffde21a9a68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9ad07ffde21a9ad0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9b387ffde21a9b38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9ba07ffde21a9ba0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9c087ffde21a9c08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9c707ffde21a9c70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9cd87ffde21a9cd8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9d407ffde21a9d40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9da87ffde21a9da8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9e107ffde21a9e10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9e787ffde21a9e78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9ee07ffde21a9ee0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9f487ffde21a9f48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21a9fb07ffde21a9fb0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21afe007ffde21afe00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21afe687ffde21afe68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21afed07ffde21afed0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21aff387ffde21aff38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21affa07ffde21affa0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b00087ffde21b0008 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b00707ffde21b0070 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b00d87ffde21b00d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b01407ffde21b0140 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b01a87ffde21b01a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b02107ffde21b0210 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b02787ffde21b0278 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b02e07ffde21b02e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b03487ffde21b0348 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b03b07ffde21b03b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b04187ffde21b0418 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b04807ffde21b0480 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b04e87ffde21b04e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b05507ffde21b0550 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b05b87ffde21b05b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b06207ffde21b0620 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b06887ffde21b0688 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b06f07ffde21b06f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b07587ffde21b0758 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b07c07ffde21b07c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b08287ffde21b0828 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b08907ffde21b0890 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b08f87ffde21b08f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b09607ffde21b0960 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b09c87ffde21b09c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0a307ffde21b0a30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0a987ffde21b0a98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0b007ffde21b0b00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0b687ffde21b0b68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0bd07ffde21b0bd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0c387ffde21b0c38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0ca07ffde21b0ca0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0d087ffde21b0d08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0d707ffde21b0d70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0dd87ffde21b0dd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0e407ffde21b0e40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0ea87ffde21b0ea8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0f107ffde21b0f10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0f787ffde21b0f78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b0fe07ffde21b0fe0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b10487ffde21b1048 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b10b07ffde21b10b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b11187ffde21b1118 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b11807ffde21b1180 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b11e87ffde21b11e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b12507ffde21b1250 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b12b87ffde21b12b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b13207ffde21b1320 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b13887ffde21b1388 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b13f07ffde21b13f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b14587ffde21b1458 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b14c07ffde21b14c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b15287ffde21b1528 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b15907ffde21b1590 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b15f87ffde21b15f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b16607ffde21b1660 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b16c87ffde21b16c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b17307ffde21b1730 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b17987ffde21b1798 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b18007ffde21b1800 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b18687ffde21b1868 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b18d07ffde21b18d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b19387ffde21b1938 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b19a07ffde21b19a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1a087ffde21b1a08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1a707ffde21b1a70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1ad87ffde21b1ad8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1b407ffde21b1b40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1ba87ffde21b1ba8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1c107ffde21b1c10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1c787ffde21b1c78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1ce07ffde21b1ce0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1d487ffde21b1d48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1db07ffde21b1db0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1e187ffde21b1e18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1e807ffde21b1e80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21b1ee87ffde21b1ee8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2b9b2f6c07f87b9b2f6c0 /* Resources */ = { + FFF2e450fbf07ffde450fbf0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1131,7 +1131,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCb9b2f6c07f87b9b2f6c0 /* Frameworks */ = { + FFFCe450fbf07ffde450fbf0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1141,53 +1141,53 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8b9b2f6c07f87b9b2f6c0 /* Sources */ = { + FFF8e450fbf07ffde450fbf0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFbb8137d07f87bb8137d0, - FFFFbb8138387f87bb813838, - FFFFbb8138a07f87bb8138a0, - FFFFbb8139087f87bb813908, - FFFFbb8139707f87bb813970, - FFFFbb8139d87f87bb8139d8, - FFFFbb813a407f87bb813a40, - FFFFbb813aa87f87bb813aa8, - FFFFbb813b107f87bb813b10, - FFFFbb813b787f87bb813b78, - FFFFbb813be07f87bb813be0, - FFFFbb813c487f87bb813c48, - FFFFbb813cb07f87bb813cb0, - FFFFbb813d187f87bb813d18, - FFFFbb813d807f87bb813d80, - FFFFbb813de87f87bb813de8, - FFFFbb813e507f87bb813e50, - FFFFbb813eb87f87bb813eb8, - FFFFbb813f207f87bb813f20, - FFFFbb813f887f87bb813f88, - FFFFbb813ff07f87bb813ff0, - FFFFbb8140587f87bb814058, - FFFFbb8140c07f87bb8140c0, - FFFFbb8141287f87bb814128, - FFFFbb8141907f87bb814190, - FFFFbb8141f87f87bb8141f8, - FFFFbb8142607f87bb814260, - FFFFbb8142c87f87bb8142c8, - FFFFbb8143307f87bb814330, - FFFFbb8143987f87bb814398, - FFFFbb8144007f87bb814400, - FFFFbb8144687f87bb814468, - FFFFbb8144d07f87bb8144d0, - FFFFbb8145387f87bb814538, - FFFFbb8145a07f87bb8145a0, - FFFFbb8147407f87bb814740, - FFFFbb8147a87f87bb8147a8, - FFFFbb8148107f87bb814810, - FFFFbb8148787f87bb814878, - FFFFbb8149b07f87bb8149b0, - FFFFbb814a187f87bb814a18, - FFFFbb814a807f87bb814a80, - FFFFbb814ae87f87bb814ae8, + FFFFe21b0bd07ffde21b0bd0, + FFFFe21b0c387ffde21b0c38, + FFFFe21b0ca07ffde21b0ca0, + FFFFe21b0d087ffde21b0d08, + FFFFe21b0d707ffde21b0d70, + FFFFe21b0dd87ffde21b0dd8, + FFFFe21b0e407ffde21b0e40, + FFFFe21b0ea87ffde21b0ea8, + FFFFe21b0f107ffde21b0f10, + FFFFe21b0f787ffde21b0f78, + FFFFe21b0fe07ffde21b0fe0, + FFFFe21b10487ffde21b1048, + FFFFe21b10b07ffde21b10b0, + FFFFe21b11187ffde21b1118, + FFFFe21b11807ffde21b1180, + FFFFe21b11e87ffde21b11e8, + FFFFe21b12507ffde21b1250, + FFFFe21b12b87ffde21b12b8, + FFFFe21b13207ffde21b1320, + FFFFe21b13887ffde21b1388, + FFFFe21b13f07ffde21b13f0, + FFFFe21b14587ffde21b1458, + FFFFe21b14c07ffde21b14c0, + FFFFe21b15287ffde21b1528, + FFFFe21b15907ffde21b1590, + FFFFe21b15f87ffde21b15f8, + FFFFe21b16607ffde21b1660, + FFFFe21b16c87ffde21b16c8, + FFFFe21b17307ffde21b1730, + FFFFe21b17987ffde21b1798, + FFFFe21b18007ffde21b1800, + FFFFe21b18687ffde21b1868, + FFFFe21b18d07ffde21b18d0, + FFFFe21b19387ffde21b1938, + FFFFe21b19a07ffde21b19a0, + FFFFe21b1b407ffde21b1b40, + FFFFe21b1ba87ffde21b1ba8, + FFFFe21b1c107ffde21b1c10, + FFFFe21b1c787ffde21b1c78, + FFFFe21b1db07ffde21b1db0, + FFFFe21b1e187ffde21b1e18, + FFFFe21b1e807ffde21b1e80, + FFFFe21b1ee87ffde21b1ee8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1199,80 +1199,80 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCooking */ - FFFFbd3650b07f87bd3650b0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb9ac2fb07f87b9ac2fb0 /* PhysXExtensions */; }; - FFFFbb8194007f87bb819400 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8194007f87bb819400 /* Adjacencies.cpp */; }; - FFFFbb8194687f87bb819468 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8194687f87bb819468 /* Cooking.cpp */; }; - FFFFbb8194d07f87bb8194d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8194d07f87bb8194d0 /* CookingUtils.cpp */; }; - FFFFbb8195387f87bb819538 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8195387f87bb819538 /* EdgeList.cpp */; }; - FFFFbb8195a07f87bb8195a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8195a07f87bb8195a0 /* MeshCleaner.cpp */; }; - FFFFbb8196087f87bb819608 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8196087f87bb819608 /* Quantizer.cpp */; }; - FFFFbb8198e07f87bb8198e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8198e07f87bb8198e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; - FFFFbb8199487f87bb819948 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8199487f87bb819948 /* mesh/HeightFieldCooking.cpp */; }; - FFFFbb8199b07f87bb8199b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8199b07f87bb8199b0 /* mesh/RTreeCooking.cpp */; }; - FFFFbb819a187f87bb819a18 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb819a187f87bb819a18 /* mesh/TriangleMeshBuilder.cpp */; }; - FFFFbb819c887f87bb819c88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb819c887f87bb819c88 /* convex/BigConvexDataBuilder.cpp */; }; - FFFFbb819cf07f87bb819cf0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb819cf07f87bb819cf0 /* convex/ConvexHullBuilder.cpp */; }; - FFFFbb819d587f87bb819d58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb819d587f87bb819d58 /* convex/ConvexHullLib.cpp */; }; - FFFFbb819dc07f87bb819dc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb819dc07f87bb819dc0 /* convex/ConvexHullUtils.cpp */; }; - FFFFbb819e287f87bb819e28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb819e287f87bb819e28 /* convex/ConvexMeshBuilder.cpp */; }; - FFFFbb819e907f87bb819e90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb819e907f87bb819e90 /* convex/ConvexPolygonsBuilder.cpp */; }; - FFFFbb819ef87f87bb819ef8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb819ef87f87bb819ef8 /* convex/InflationConvexHullLib.cpp */; }; - FFFFbb819f607f87bb819f60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb819f607f87bb819f60 /* convex/QuickHullConvexHullLib.cpp */; }; - FFFFbb819fc87f87bb819fc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb819fc87f87bb819fc8 /* convex/VolumeIntegration.cpp */; }; + FFFFe2d762407ffde2d76240 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDe29617f07ffde29617f0 /* PhysXExtensions */; }; + FFFFe3829c007ffde3829c00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3829c007ffde3829c00 /* Adjacencies.cpp */; }; + FFFFe3829c687ffde3829c68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3829c687ffde3829c68 /* Cooking.cpp */; }; + FFFFe3829cd07ffde3829cd0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3829cd07ffde3829cd0 /* CookingUtils.cpp */; }; + FFFFe3829d387ffde3829d38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3829d387ffde3829d38 /* EdgeList.cpp */; }; + FFFFe3829da07ffde3829da0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3829da07ffde3829da0 /* MeshCleaner.cpp */; }; + FFFFe3829e087ffde3829e08 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3829e087ffde3829e08 /* Quantizer.cpp */; }; + FFFFe382a0e07ffde382a0e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a0e07ffde382a0e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; + FFFFe382a1487ffde382a148 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a1487ffde382a148 /* mesh/HeightFieldCooking.cpp */; }; + FFFFe382a1b07ffde382a1b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a1b07ffde382a1b0 /* mesh/RTreeCooking.cpp */; }; + FFFFe382a2187ffde382a218 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a2187ffde382a218 /* mesh/TriangleMeshBuilder.cpp */; }; + FFFFe382a4887ffde382a488 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a4887ffde382a488 /* convex/BigConvexDataBuilder.cpp */; }; + FFFFe382a4f07ffde382a4f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a4f07ffde382a4f0 /* convex/ConvexHullBuilder.cpp */; }; + FFFFe382a5587ffde382a558 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a5587ffde382a558 /* convex/ConvexHullLib.cpp */; }; + FFFFe382a5c07ffde382a5c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a5c07ffde382a5c0 /* convex/ConvexHullUtils.cpp */; }; + FFFFe382a6287ffde382a628 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a6287ffde382a628 /* convex/ConvexMeshBuilder.cpp */; }; + FFFFe382a6907ffde382a690 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a6907ffde382a690 /* convex/ConvexPolygonsBuilder.cpp */; }; + FFFFe382a6f87ffde382a6f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a6f87ffde382a6f8 /* convex/InflationConvexHullLib.cpp */; }; + FFFFe382a7607ffde382a760 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a7607ffde382a760 /* convex/QuickHullConvexHullLib.cpp */; }; + FFFFe382a7c87ffde382a7c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a7c87ffde382a7c8 /* convex/VolumeIntegration.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDbd3609d07f87bd3609d0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDbd3560707f87bd356070 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd3560d87f87bd3560d8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd3561407f87bd356140 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd3561a87f87bd3561a8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd3562107f87bd356210 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd3562787f87bd356278 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd3562e07f87bd3562e0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8194007f87bb819400 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8194687f87bb819468 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8194d07f87bb8194d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8195387f87bb819538 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8195a07f87bb8195a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8196087f87bb819608 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8196707f87bb819670 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8196d87f87bb8196d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8197407f87bb819740 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8197a87f87bb8197a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8198107f87bb819810 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8198787f87bb819878 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8198e07f87bb8198e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8199487f87bb819948 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8199b07f87bb8199b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb819a187f87bb819a18 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb819a807f87bb819a80 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb819ae87f87bb819ae8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb819b507f87bb819b50 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb819bb87f87bb819bb8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb819c207f87bb819c20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb819c887f87bb819c88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb819cf07f87bb819cf0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb819d587f87bb819d58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb819dc07f87bb819dc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb819e287f87bb819e28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb819e907f87bb819e90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb819ef87f87bb819ef8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb819f607f87bb819f60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb819fc87f87bb819fc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb81a0307f87bb81a030 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb81a0987f87bb81a098 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb81a1007f87bb81a100 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb81a1687f87bb81a168 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb81a1d07f87bb81a1d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb81a2387f87bb81a238 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb81a2a07f87bb81a2a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb81a3087f87bb81a308 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb81a3707f87bb81a370 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d74eb07ffde2d74eb0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe2d68c307ffde2d68c30 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d68c987ffde2d68c98 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d68d007ffde2d68d00 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d68d687ffde2d68d68 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d68dd07ffde2d68dd0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d68e387ffde2d68e38 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d68ea07ffde2d68ea0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3829c007ffde3829c00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3829c687ffde3829c68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3829cd07ffde3829cd0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3829d387ffde3829d38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3829da07ffde3829da0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3829e087ffde3829e08 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3829e707ffde3829e70 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3829ed87ffde3829ed8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3829f407ffde3829f40 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3829fa87ffde3829fa8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382a0107ffde382a010 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382a0787ffde382a078 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382a0e07ffde382a0e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a1487ffde382a148 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a1b07ffde382a1b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a2187ffde382a218 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a2807ffde382a280 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382a2e87ffde382a2e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382a3507ffde382a350 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382a3b87ffde382a3b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382a4207ffde382a420 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382a4887ffde382a488 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a4f07ffde382a4f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a5587ffde382a558 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a5c07ffde382a5c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a6287ffde382a628 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a6907ffde382a690 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a6f87ffde382a6f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a7607ffde382a760 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a7c87ffde382a7c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe382a8307ffde382a830 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382a8987ffde382a898 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382a9007ffde382a900 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382a9687ffde382a968 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382a9d07ffde382a9d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382aa387ffde382aa38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382aaa07ffde382aaa0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382ab087ffde382ab08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDe382ab707ffde382ab70 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2bd3609d07f87bd3609d0 /* Resources */ = { + FFF2e2d74eb07ffde2d74eb0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1282,7 +1282,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCbd3609d07f87bd3609d0 /* Frameworks */ = { + FFFCe2d74eb07ffde2d74eb0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1292,29 +1292,29 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8bd3609d07f87bd3609d0 /* Sources */ = { + FFF8e2d74eb07ffde2d74eb0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFbb8194007f87bb819400, - FFFFbb8194687f87bb819468, - FFFFbb8194d07f87bb8194d0, - FFFFbb8195387f87bb819538, - FFFFbb8195a07f87bb8195a0, - FFFFbb8196087f87bb819608, - FFFFbb8198e07f87bb8198e0, - FFFFbb8199487f87bb819948, - FFFFbb8199b07f87bb8199b0, - FFFFbb819a187f87bb819a18, - FFFFbb819c887f87bb819c88, - FFFFbb819cf07f87bb819cf0, - FFFFbb819d587f87bb819d58, - FFFFbb819dc07f87bb819dc0, - FFFFbb819e287f87bb819e28, - FFFFbb819e907f87bb819e90, - FFFFbb819ef87f87bb819ef8, - FFFFbb819f607f87bb819f60, - FFFFbb819fc87f87bb819fc8, + FFFFe3829c007ffde3829c00, + FFFFe3829c687ffde3829c68, + FFFFe3829cd07ffde3829cd0, + FFFFe3829d387ffde3829d38, + FFFFe3829da07ffde3829da0, + FFFFe3829e087ffde3829e08, + FFFFe382a0e07ffde382a0e0, + FFFFe382a1487ffde382a148, + FFFFe382a1b07ffde382a1b0, + FFFFe382a2187ffde382a218, + FFFFe382a4887ffde382a488, + FFFFe382a4f07ffde382a4f0, + FFFFe382a5587ffde382a558, + FFFFe382a5c07ffde382a5c0, + FFFFe382a6287ffde382a628, + FFFFe382a6907ffde382a690, + FFFFe382a6f87ffde382a6f8, + FFFFe382a7607ffde382a760, + FFFFe382a7c87ffde382a7c8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1323,515 +1323,515 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4bd3642207f87bd364220 /* PBXTargetDependency */ = { + FFF4e2d66cf07ffde2d66cf0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb85164f07f87b85164f0 /* PhysXCommon */; - targetProxy = FFF5b85164f07f87b85164f0 /* PBXContainerItemProxy */; + target = FFFAe2c17a107ffde2c17a10 /* PhysXCommon */; + targetProxy = FFF5e2c17a107ffde2c17a10 /* PBXContainerItemProxy */; }; - FFF4bd3650b07f87bd3650b0 /* PBXTargetDependency */ = { + FFF4e2d762407ffde2d76240 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb9ac2fb07f87b9ac2fb0 /* PhysXExtensions */; - targetProxy = FFF5b9ac2fb07f87b9ac2fb0 /* PBXContainerItemProxy */; + target = FFFAe29617f07ffde29617f0 /* PhysXExtensions */; + targetProxy = FFF5e29617f07ffde29617f0 /* PBXContainerItemProxy */; }; - FFF4bd3608a07f87bd3608a0 /* PBXTargetDependency */ = { + FFF4e2d748507ffde2d74850 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb8500ad07f87b8500ad0 /* PxFoundation */; - targetProxy = FFF5b8500ad07f87b8500ad0 /* PBXContainerItemProxy */; + target = FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */; + targetProxy = FFF5e2c0b7d07ffde2c0b7d0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCommon */ - FFFFb8806c007f87b8806c00 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb8806c007f87b8806c00 /* src/CmBoxPruning.cpp */; }; - FFFFb8806c687f87b8806c68 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb8806c687f87b8806c68 /* src/CmCollection.cpp */; }; - FFFFb8806cd07f87b8806cd0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb8806cd07f87b8806cd0 /* src/CmMathUtils.cpp */; }; - FFFFb8806d387f87b8806d38 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb8806d387f87b8806d38 /* src/CmPtrTable.cpp */; }; - FFFFb8806da07f87b8806da0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb8806da07f87b8806da0 /* src/CmRadixSort.cpp */; }; - FFFFb8806e087f87b8806e08 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb8806e087f87b8806e08 /* src/CmRadixSortBuffered.cpp */; }; - FFFFb8806e707f87b8806e70 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb8806e707f87b8806e70 /* src/CmRenderOutput.cpp */; }; - FFFFb8806ed87f87b8806ed8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb8806ed87f87b8806ed8 /* src/CmVisualization.cpp */; }; - FFFFba0649a87f87ba0649a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0649a87f87ba0649a8 /* ../../Include/GeomUtils */; }; - FFFFba067ee07f87ba067ee0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba067ee07f87ba067ee0 /* src/GuBounds.cpp */; }; - FFFFba067f487f87ba067f48 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba067f487f87ba067f48 /* src/GuBox.cpp */; }; - FFFFba067fb07f87ba067fb0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba067fb07f87ba067fb0 /* src/GuCCTSweepTests.cpp */; }; - FFFFba0680187f87ba068018 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0680187f87ba068018 /* src/GuCapsule.cpp */; }; - FFFFba0680807f87ba068080 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0680807f87ba068080 /* src/GuGeometryQuery.cpp */; }; - FFFFba0680e87f87ba0680e8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0680e87f87ba0680e8 /* src/GuGeometryUnion.cpp */; }; - FFFFba0681507f87ba068150 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0681507f87ba068150 /* src/GuInternal.cpp */; }; - FFFFba0681b87f87ba0681b8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0681b87f87ba0681b8 /* src/GuMTD.cpp */; }; - FFFFba0682207f87ba068220 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0682207f87ba068220 /* src/GuMeshFactory.cpp */; }; - FFFFba0682887f87ba068288 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0682887f87ba068288 /* src/GuMetaData.cpp */; }; - FFFFba0682f07f87ba0682f0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0682f07f87ba0682f0 /* src/GuOverlapTests.cpp */; }; - FFFFba0683587f87ba068358 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0683587f87ba068358 /* src/GuRaycastTests.cpp */; }; - FFFFba0683c07f87ba0683c0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0683c07f87ba0683c0 /* src/GuSerialize.cpp */; }; - FFFFba0684287f87ba068428 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0684287f87ba068428 /* src/GuSweepMTD.cpp */; }; - FFFFba0684907f87ba068490 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0684907f87ba068490 /* src/GuSweepSharedTests.cpp */; }; - FFFFba0684f87f87ba0684f8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0684f87f87ba0684f8 /* src/GuSweepTests.cpp */; }; - FFFFba0685607f87ba068560 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0685607f87ba068560 /* src/contact/GuContactBoxBox.cpp */; }; - FFFFba0685c87f87ba0685c8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0685c87f87ba0685c8 /* src/contact/GuContactCapsuleBox.cpp */; }; - FFFFba0686307f87ba068630 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0686307f87ba068630 /* src/contact/GuContactCapsuleCapsule.cpp */; }; - FFFFba0686987f87ba068698 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0686987f87ba068698 /* src/contact/GuContactCapsuleConvex.cpp */; }; - FFFFba0687007f87ba068700 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0687007f87ba068700 /* src/contact/GuContactCapsuleMesh.cpp */; }; - FFFFba0687687f87ba068768 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0687687f87ba068768 /* src/contact/GuContactConvexConvex.cpp */; }; - FFFFba0687d07f87ba0687d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0687d07f87ba0687d0 /* src/contact/GuContactConvexMesh.cpp */; }; - FFFFba0688387f87ba068838 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0688387f87ba068838 /* src/contact/GuContactPlaneBox.cpp */; }; - FFFFba0688a07f87ba0688a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0688a07f87ba0688a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; - FFFFba0689087f87ba068908 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0689087f87ba068908 /* src/contact/GuContactPlaneConvex.cpp */; }; - FFFFba0689707f87ba068970 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0689707f87ba068970 /* src/contact/GuContactPolygonPolygon.cpp */; }; - FFFFba0689d87f87ba0689d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0689d87f87ba0689d8 /* src/contact/GuContactSphereBox.cpp */; }; - FFFFba068a407f87ba068a40 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068a407f87ba068a40 /* src/contact/GuContactSphereCapsule.cpp */; }; - FFFFba068aa87f87ba068aa8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068aa87f87ba068aa8 /* src/contact/GuContactSphereMesh.cpp */; }; - FFFFba068b107f87ba068b10 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068b107f87ba068b10 /* src/contact/GuContactSpherePlane.cpp */; }; - FFFFba068b787f87ba068b78 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068b787f87ba068b78 /* src/contact/GuContactSphereSphere.cpp */; }; - FFFFba068be07f87ba068be0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068be07f87ba068be0 /* src/contact/GuFeatureCode.cpp */; }; - FFFFba068c487f87ba068c48 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068c487f87ba068c48 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; - FFFFba068cb07f87ba068cb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068cb07f87ba068cb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; - FFFFba068d187f87ba068d18 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068d187f87ba068d18 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; - FFFFba068d807f87ba068d80 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068d807f87ba068d80 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; - FFFFba068de87f87ba068de8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068de87f87ba068de8 /* src/common/GuBarycentricCoordinates.cpp */; }; - FFFFba068e507f87ba068e50 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068e507f87ba068e50 /* src/common/GuSeparatingAxes.cpp */; }; - FFFFba068eb87f87ba068eb8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068eb87f87ba068eb8 /* src/convex/GuBigConvexData.cpp */; }; - FFFFba068f207f87ba068f20 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068f207f87ba068f20 /* src/convex/GuConvexHelper.cpp */; }; - FFFFba068f887f87ba068f88 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068f887f87ba068f88 /* src/convex/GuConvexMesh.cpp */; }; - FFFFba068ff07f87ba068ff0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba068ff07f87ba068ff0 /* src/convex/GuConvexSupportTable.cpp */; }; - FFFFba0690587f87ba069058 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0690587f87ba069058 /* src/convex/GuConvexUtilsInternal.cpp */; }; - FFFFba0690c07f87ba0690c0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0690c07f87ba0690c0 /* src/convex/GuHillClimbing.cpp */; }; - FFFFba0691287f87ba069128 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0691287f87ba069128 /* src/convex/GuShapeConvex.cpp */; }; - FFFFba0691907f87ba069190 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0691907f87ba069190 /* src/distance/GuDistancePointBox.cpp */; }; - FFFFba0691f87f87ba0691f8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0691f87f87ba0691f8 /* src/distance/GuDistancePointTriangle.cpp */; }; - FFFFba0692607f87ba069260 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0692607f87ba069260 /* src/distance/GuDistanceSegmentBox.cpp */; }; - FFFFba0692c87f87ba0692c8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0692c87f87ba0692c8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; - FFFFba0693307f87ba069330 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0693307f87ba069330 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; - FFFFba0693987f87ba069398 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0693987f87ba069398 /* src/sweep/GuSweepBoxBox.cpp */; }; - FFFFba0694007f87ba069400 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0694007f87ba069400 /* src/sweep/GuSweepBoxSphere.cpp */; }; - FFFFba0694687f87ba069468 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0694687f87ba069468 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; - FFFFba0694d07f87ba0694d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0694d07f87ba0694d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; - FFFFba0695387f87ba069538 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0695387f87ba069538 /* src/sweep/GuSweepCapsuleBox.cpp */; }; - FFFFba0695a07f87ba0695a0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0695a07f87ba0695a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; - FFFFba0696087f87ba069608 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0696087f87ba069608 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; - FFFFba0696707f87ba069670 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0696707f87ba069670 /* src/sweep/GuSweepSphereCapsule.cpp */; }; - FFFFba0696d87f87ba0696d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0696d87f87ba0696d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; - FFFFba0697407f87ba069740 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0697407f87ba069740 /* src/sweep/GuSweepSphereTriangle.cpp */; }; - FFFFba0697a87f87ba0697a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0697a87f87ba0697a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; - FFFFba0698107f87ba069810 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0698107f87ba069810 /* src/gjk/GuEPA.cpp */; }; - FFFFba0698787f87ba069878 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0698787f87ba069878 /* src/gjk/GuGJKSimplex.cpp */; }; - FFFFba0698e07f87ba0698e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0698e07f87ba0698e0 /* src/gjk/GuGJKTest.cpp */; }; - FFFFba0699487f87ba069948 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0699487f87ba069948 /* src/intersection/GuIntersectionBoxBox.cpp */; }; - FFFFba0699b07f87ba0699b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0699b07f87ba0699b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; - FFFFba069a187f87ba069a18 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069a187f87ba069a18 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; - FFFFba069a807f87ba069a80 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069a807f87ba069a80 /* src/intersection/GuIntersectionRayBox.cpp */; }; - FFFFba069ae87f87ba069ae8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069ae87f87ba069ae8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; - FFFFba069b507f87ba069b50 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069b507f87ba069b50 /* src/intersection/GuIntersectionRaySphere.cpp */; }; - FFFFba069bb87f87ba069bb8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069bb87f87ba069bb8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; - FFFFba069c207f87ba069c20 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069c207f87ba069c20 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; - FFFFba069c887f87ba069c88 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069c887f87ba069c88 /* src/mesh/GuBV32.cpp */; }; - FFFFba069cf07f87ba069cf0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069cf07f87ba069cf0 /* src/mesh/GuBV32Build.cpp */; }; - FFFFba069d587f87ba069d58 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069d587f87ba069d58 /* src/mesh/GuBV4.cpp */; }; - FFFFba069dc07f87ba069dc0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069dc07f87ba069dc0 /* src/mesh/GuBV4Build.cpp */; }; - FFFFba069e287f87ba069e28 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069e287f87ba069e28 /* src/mesh/GuBV4_AABBSweep.cpp */; }; - FFFFba069e907f87ba069e90 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069e907f87ba069e90 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; - FFFFba069ef87f87ba069ef8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069ef87f87ba069ef8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; - FFFFba069f607f87ba069f60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069f607f87ba069f60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; - FFFFba069fc87f87ba069fc8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba069fc87f87ba069fc8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; - FFFFba06a0307f87ba06a030 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a0307f87ba06a030 /* src/mesh/GuBV4_Raycast.cpp */; }; - FFFFba06a0987f87ba06a098 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a0987f87ba06a098 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; - FFFFba06a1007f87ba06a100 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a1007f87ba06a100 /* src/mesh/GuBV4_SphereSweep.cpp */; }; - FFFFba06a1687f87ba06a168 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a1687f87ba06a168 /* src/mesh/GuMeshQuery.cpp */; }; - FFFFba06a1d07f87ba06a1d0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a1d07f87ba06a1d0 /* src/mesh/GuMidphaseBV4.cpp */; }; - FFFFba06a2387f87ba06a238 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a2387f87ba06a238 /* src/mesh/GuMidphaseRTree.cpp */; }; - FFFFba06a2a07f87ba06a2a0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a2a07f87ba06a2a0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; - FFFFba06a3087f87ba06a308 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a3087f87ba06a308 /* src/mesh/GuRTree.cpp */; }; - FFFFba06a3707f87ba06a370 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a3707f87ba06a370 /* src/mesh/GuRTreeQueries.cpp */; }; - FFFFba06a3d87f87ba06a3d8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a3d87f87ba06a3d8 /* src/mesh/GuSweepsMesh.cpp */; }; - FFFFba06a4407f87ba06a440 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a4407f87ba06a440 /* src/mesh/GuTriangleMesh.cpp */; }; - FFFFba06a4a87f87ba06a4a8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a4a87f87ba06a4a8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; - FFFFba06a5107f87ba06a510 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a5107f87ba06a510 /* src/mesh/GuTriangleMeshRTree.cpp */; }; - FFFFba06a5787f87ba06a578 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a5787f87ba06a578 /* src/hf/GuHeightField.cpp */; }; - FFFFba06a5e07f87ba06a5e0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a5e07f87ba06a5e0 /* src/hf/GuHeightFieldUtil.cpp */; }; - FFFFba06a6487f87ba06a648 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a6487f87ba06a648 /* src/hf/GuOverlapTestsHF.cpp */; }; - FFFFba06a6b07f87ba06a6b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a6b07f87ba06a6b0 /* src/hf/GuSweepsHF.cpp */; }; - FFFFba06a7187f87ba06a718 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a7187f87ba06a718 /* src/pcm/GuPCMContactBoxBox.cpp */; }; - FFFFba06a7807f87ba06a780 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a7807f87ba06a780 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; - FFFFba06a7e87f87ba06a7e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a7e87f87ba06a7e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; - FFFFba06a8507f87ba06a850 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a8507f87ba06a850 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; - FFFFba06a8b87f87ba06a8b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a8b87f87ba06a8b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; - FFFFba06a9207f87ba06a920 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a9207f87ba06a920 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; - FFFFba06a9887f87ba06a988 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a9887f87ba06a988 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; - FFFFba06a9f07f87ba06a9f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06a9f07f87ba06a9f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; - FFFFba06aa587f87ba06aa58 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06aa587f87ba06aa58 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; - FFFFba06aac07f87ba06aac0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06aac07f87ba06aac0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; - FFFFba06ab287f87ba06ab28 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06ab287f87ba06ab28 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; - FFFFba06ab907f87ba06ab90 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06ab907f87ba06ab90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; - FFFFba06abf87f87ba06abf8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06abf87f87ba06abf8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; - FFFFba06ac607f87ba06ac60 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06ac607f87ba06ac60 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; - FFFFba06acc87f87ba06acc8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06acc87f87ba06acc8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; - FFFFba06ad307f87ba06ad30 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06ad307f87ba06ad30 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; - FFFFba06ad987f87ba06ad98 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06ad987f87ba06ad98 /* src/pcm/GuPCMContactSphereBox.cpp */; }; - FFFFba06ae007f87ba06ae00 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06ae007f87ba06ae00 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; - FFFFba06ae687f87ba06ae68 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06ae687f87ba06ae68 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; - FFFFba06aed07f87ba06aed0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06aed07f87ba06aed0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; - FFFFba06af387f87ba06af38 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06af387f87ba06af38 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; - FFFFba06afa07f87ba06afa0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06afa07f87ba06afa0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; - FFFFba06b0087f87ba06b008 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06b0087f87ba06b008 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; - FFFFba06b0707f87ba06b070 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06b0707f87ba06b070 /* src/pcm/GuPCMShapeConvex.cpp */; }; - FFFFba06b0d87f87ba06b0d8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06b0d87f87ba06b0d8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; - FFFFba06b1407f87ba06b140 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06b1407f87ba06b140 /* src/pcm/GuPersistentContactManifold.cpp */; }; - FFFFba06b1a87f87ba06b1a8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06b1a87f87ba06b1a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; - FFFFba06b2107f87ba06b210 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba06b2107f87ba06b210 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; + FFFFe30290007ffde3029000 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30290007ffde3029000 /* src/CmBoxPruning.cpp */; }; + FFFFe30290687ffde3029068 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30290687ffde3029068 /* src/CmCollection.cpp */; }; + FFFFe30290d07ffde30290d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30290d07ffde30290d0 /* src/CmMathUtils.cpp */; }; + FFFFe30291387ffde3029138 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30291387ffde3029138 /* src/CmPtrTable.cpp */; }; + FFFFe30291a07ffde30291a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30291a07ffde30291a0 /* src/CmRadixSort.cpp */; }; + FFFFe30292087ffde3029208 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30292087ffde3029208 /* src/CmRadixSortBuffered.cpp */; }; + FFFFe30292707ffde3029270 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30292707ffde3029270 /* src/CmRenderOutput.cpp */; }; + FFFFe30292d87ffde30292d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30292d87ffde30292d8 /* src/CmVisualization.cpp */; }; + FFFFe38013a87ffde38013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38013a87ffde38013a8 /* ../../Include/GeomUtils */; }; + FFFFe38048e07ffde38048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38048e07ffde38048e0 /* src/GuBounds.cpp */; }; + FFFFe38049487ffde3804948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38049487ffde3804948 /* src/GuBox.cpp */; }; + FFFFe38049b07ffde38049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38049b07ffde38049b0 /* src/GuCCTSweepTests.cpp */; }; + FFFFe3804a187ffde3804a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804a187ffde3804a18 /* src/GuCapsule.cpp */; }; + FFFFe3804a807ffde3804a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804a807ffde3804a80 /* src/GuGeometryQuery.cpp */; }; + FFFFe3804ae87ffde3804ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804ae87ffde3804ae8 /* src/GuGeometryUnion.cpp */; }; + FFFFe3804b507ffde3804b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804b507ffde3804b50 /* src/GuInternal.cpp */; }; + FFFFe3804bb87ffde3804bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804bb87ffde3804bb8 /* src/GuMTD.cpp */; }; + FFFFe3804c207ffde3804c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804c207ffde3804c20 /* src/GuMeshFactory.cpp */; }; + FFFFe3804c887ffde3804c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804c887ffde3804c88 /* src/GuMetaData.cpp */; }; + FFFFe3804cf07ffde3804cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804cf07ffde3804cf0 /* src/GuOverlapTests.cpp */; }; + FFFFe3804d587ffde3804d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804d587ffde3804d58 /* src/GuRaycastTests.cpp */; }; + FFFFe3804dc07ffde3804dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804dc07ffde3804dc0 /* src/GuSerialize.cpp */; }; + FFFFe3804e287ffde3804e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804e287ffde3804e28 /* src/GuSweepMTD.cpp */; }; + FFFFe3804e907ffde3804e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804e907ffde3804e90 /* src/GuSweepSharedTests.cpp */; }; + FFFFe3804ef87ffde3804ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804ef87ffde3804ef8 /* src/GuSweepTests.cpp */; }; + FFFFe3804f607ffde3804f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804f607ffde3804f60 /* src/contact/GuContactBoxBox.cpp */; }; + FFFFe3804fc87ffde3804fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804fc87ffde3804fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; + FFFFe38050307ffde3805030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38050307ffde3805030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; + FFFFe38050987ffde3805098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38050987ffde3805098 /* src/contact/GuContactCapsuleConvex.cpp */; }; + FFFFe38051007ffde3805100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38051007ffde3805100 /* src/contact/GuContactCapsuleMesh.cpp */; }; + FFFFe38051687ffde3805168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38051687ffde3805168 /* src/contact/GuContactConvexConvex.cpp */; }; + FFFFe38051d07ffde38051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38051d07ffde38051d0 /* src/contact/GuContactConvexMesh.cpp */; }; + FFFFe38052387ffde3805238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38052387ffde3805238 /* src/contact/GuContactPlaneBox.cpp */; }; + FFFFe38052a07ffde38052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38052a07ffde38052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; + FFFFe38053087ffde3805308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38053087ffde3805308 /* src/contact/GuContactPlaneConvex.cpp */; }; + FFFFe38053707ffde3805370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38053707ffde3805370 /* src/contact/GuContactPolygonPolygon.cpp */; }; + FFFFe38053d87ffde38053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38053d87ffde38053d8 /* src/contact/GuContactSphereBox.cpp */; }; + FFFFe38054407ffde3805440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38054407ffde3805440 /* src/contact/GuContactSphereCapsule.cpp */; }; + FFFFe38054a87ffde38054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38054a87ffde38054a8 /* src/contact/GuContactSphereMesh.cpp */; }; + FFFFe38055107ffde3805510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38055107ffde3805510 /* src/contact/GuContactSpherePlane.cpp */; }; + FFFFe38055787ffde3805578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38055787ffde3805578 /* src/contact/GuContactSphereSphere.cpp */; }; + FFFFe38055e07ffde38055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38055e07ffde38055e0 /* src/contact/GuFeatureCode.cpp */; }; + FFFFe38056487ffde3805648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38056487ffde3805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; + FFFFe38056b07ffde38056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38056b07ffde38056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; + FFFFe38057187ffde3805718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38057187ffde3805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; + FFFFe38057807ffde3805780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38057807ffde3805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; + FFFFe38057e87ffde38057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38057e87ffde38057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; + FFFFe38058507ffde3805850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38058507ffde3805850 /* src/common/GuSeparatingAxes.cpp */; }; + FFFFe38058b87ffde38058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38058b87ffde38058b8 /* src/convex/GuBigConvexData.cpp */; }; + FFFFe38059207ffde3805920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38059207ffde3805920 /* src/convex/GuConvexHelper.cpp */; }; + FFFFe38059887ffde3805988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38059887ffde3805988 /* src/convex/GuConvexMesh.cpp */; }; + FFFFe38059f07ffde38059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38059f07ffde38059f0 /* src/convex/GuConvexSupportTable.cpp */; }; + FFFFe3805a587ffde3805a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805a587ffde3805a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; + FFFFe3805ac07ffde3805ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805ac07ffde3805ac0 /* src/convex/GuHillClimbing.cpp */; }; + FFFFe3805b287ffde3805b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805b287ffde3805b28 /* src/convex/GuShapeConvex.cpp */; }; + FFFFe3805b907ffde3805b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805b907ffde3805b90 /* src/distance/GuDistancePointBox.cpp */; }; + FFFFe3805bf87ffde3805bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805bf87ffde3805bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; + FFFFe3805c607ffde3805c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805c607ffde3805c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; + FFFFe3805cc87ffde3805cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805cc87ffde3805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; + FFFFe3805d307ffde3805d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805d307ffde3805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; + FFFFe3805d987ffde3805d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805d987ffde3805d98 /* src/sweep/GuSweepBoxBox.cpp */; }; + FFFFe3805e007ffde3805e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805e007ffde3805e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; + FFFFe3805e687ffde3805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805e687ffde3805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; + FFFFe3805ed07ffde3805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805ed07ffde3805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; + FFFFe3805f387ffde3805f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805f387ffde3805f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; + FFFFe3805fa07ffde3805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805fa07ffde3805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; + FFFFe38060087ffde3806008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38060087ffde3806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; + FFFFe38060707ffde3806070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38060707ffde3806070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; + FFFFe38060d87ffde38060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38060d87ffde38060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; + FFFFe38061407ffde3806140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38061407ffde3806140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; + FFFFe38061a87ffde38061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38061a87ffde38061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; + FFFFe38062107ffde3806210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38062107ffde3806210 /* src/gjk/GuEPA.cpp */; }; + FFFFe38062787ffde3806278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38062787ffde3806278 /* src/gjk/GuGJKSimplex.cpp */; }; + FFFFe38062e07ffde38062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38062e07ffde38062e0 /* src/gjk/GuGJKTest.cpp */; }; + FFFFe38063487ffde3806348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38063487ffde3806348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; + FFFFe38063b07ffde38063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38063b07ffde38063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; + FFFFe38064187ffde3806418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38064187ffde3806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; + FFFFe38064807ffde3806480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38064807ffde3806480 /* src/intersection/GuIntersectionRayBox.cpp */; }; + FFFFe38064e87ffde38064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38064e87ffde38064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; + FFFFe38065507ffde3806550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38065507ffde3806550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; + FFFFe38065b87ffde38065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38065b87ffde38065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; + FFFFe38066207ffde3806620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38066207ffde3806620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; + FFFFe38066887ffde3806688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38066887ffde3806688 /* src/mesh/GuBV32.cpp */; }; + FFFFe38066f07ffde38066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38066f07ffde38066f0 /* src/mesh/GuBV32Build.cpp */; }; + FFFFe38067587ffde3806758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38067587ffde3806758 /* src/mesh/GuBV4.cpp */; }; + FFFFe38067c07ffde38067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38067c07ffde38067c0 /* src/mesh/GuBV4Build.cpp */; }; + FFFFe38068287ffde3806828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38068287ffde3806828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; + FFFFe38068907ffde3806890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38068907ffde3806890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; + FFFFe38068f87ffde38068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38068f87ffde38068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; + FFFFe38069607ffde3806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38069607ffde3806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; + FFFFe38069c87ffde38069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38069c87ffde38069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; + FFFFe3806a307ffde3806a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806a307ffde3806a30 /* src/mesh/GuBV4_Raycast.cpp */; }; + FFFFe3806a987ffde3806a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806a987ffde3806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; + FFFFe3806b007ffde3806b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806b007ffde3806b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; + FFFFe3806b687ffde3806b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806b687ffde3806b68 /* src/mesh/GuMeshQuery.cpp */; }; + FFFFe3806bd07ffde3806bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806bd07ffde3806bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; + FFFFe3806c387ffde3806c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806c387ffde3806c38 /* src/mesh/GuMidphaseRTree.cpp */; }; + FFFFe3806ca07ffde3806ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806ca07ffde3806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; + FFFFe3806d087ffde3806d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806d087ffde3806d08 /* src/mesh/GuRTree.cpp */; }; + FFFFe3806d707ffde3806d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806d707ffde3806d70 /* src/mesh/GuRTreeQueries.cpp */; }; + FFFFe3806dd87ffde3806dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806dd87ffde3806dd8 /* src/mesh/GuSweepsMesh.cpp */; }; + FFFFe3806e407ffde3806e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806e407ffde3806e40 /* src/mesh/GuTriangleMesh.cpp */; }; + FFFFe3806ea87ffde3806ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806ea87ffde3806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; + FFFFe3806f107ffde3806f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806f107ffde3806f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; + FFFFe3806f787ffde3806f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806f787ffde3806f78 /* src/hf/GuHeightField.cpp */; }; + FFFFe3806fe07ffde3806fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806fe07ffde3806fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; + FFFFe38070487ffde3807048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38070487ffde3807048 /* src/hf/GuOverlapTestsHF.cpp */; }; + FFFFe38070b07ffde38070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38070b07ffde38070b0 /* src/hf/GuSweepsHF.cpp */; }; + FFFFe38071187ffde3807118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38071187ffde3807118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; + FFFFe38071807ffde3807180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38071807ffde3807180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; + FFFFe38071e87ffde38071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38071e87ffde38071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; + FFFFe38072507ffde3807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38072507ffde3807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; + FFFFe38072b87ffde38072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38072b87ffde38072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; + FFFFe38073207ffde3807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38073207ffde3807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; + FFFFe38073887ffde3807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38073887ffde3807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; + FFFFe38073f07ffde38073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38073f07ffde38073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; + FFFFe38074587ffde3807458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38074587ffde3807458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; + FFFFe38074c07ffde38074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38074c07ffde38074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; + FFFFe38075287ffde3807528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38075287ffde3807528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; + FFFFe38075907ffde3807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38075907ffde3807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; + FFFFe38075f87ffde38075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38075f87ffde38075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; + FFFFe38076607ffde3807660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38076607ffde3807660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; + FFFFe38076c87ffde38076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38076c87ffde38076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; + FFFFe38077307ffde3807730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38077307ffde3807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; + FFFFe38077987ffde3807798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38077987ffde3807798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; + FFFFe38078007ffde3807800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38078007ffde3807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; + FFFFe38078687ffde3807868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38078687ffde3807868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; + FFFFe38078d07ffde38078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38078d07ffde38078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; + FFFFe38079387ffde3807938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38079387ffde3807938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; + FFFFe38079a07ffde38079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38079a07ffde38079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; + FFFFe3807a087ffde3807a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3807a087ffde3807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; + FFFFe3807a707ffde3807a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3807a707ffde3807a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; + FFFFe3807ad87ffde3807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3807ad87ffde3807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; + FFFFe3807b407ffde3807b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3807b407ffde3807b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; + FFFFe3807ba87ffde3807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3807ba87ffde3807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; + FFFFe3807c107ffde3807c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3807c107ffde3807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDb85164f07f87b85164f0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDba05b0007f87ba05b000 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b0687f87ba05b068 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b0d07f87ba05b0d0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b1387f87ba05b138 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b1a07f87ba05b1a0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b2087f87ba05b208 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b2707f87ba05b270 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b2d87f87ba05b2d8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b3407f87ba05b340 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b3a87f87ba05b3a8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b4107f87ba05b410 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b4787f87ba05b478 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b4e07f87ba05b4e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b5487f87ba05b548 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b5b07f87ba05b5b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b6187f87ba05b618 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b6807f87ba05b680 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b6e87f87ba05b6e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b7507f87ba05b750 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b7b87f87ba05b7b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b8207f87ba05b820 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b8887f87ba05b888 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b8f07f87ba05b8f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b9587f87ba05b958 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05b9c07f87ba05b9c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05ba287f87ba05ba28 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05ba907f87ba05ba90 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05baf87f87ba05baf8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05bb607f87ba05bb60 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05bbc87f87ba05bbc8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05bc307f87ba05bc30 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05bc987f87ba05bc98 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05bd007f87ba05bd00 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDb8806c007f87b8806c00 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb8806c687f87b8806c68 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb8806cd07f87b8806cd0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb8806d387f87b8806d38 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb8806da07f87b8806da0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb8806e087f87b8806e08 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb8806e707f87b8806e70 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb8806ed87f87b8806ed8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb8806f407f87b8806f40 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDb8806fa87f87b8806fa8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88070107f87b8807010 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88070787f87b8807078 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88070e07f87b88070e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88071487f87b8807148 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88071b07f87b88071b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88072187f87b8807218 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88072807f87b8807280 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88072e87f87b88072e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88073507f87b8807350 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88073b87f87b88073b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88074207f87b8807420 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88074887f87b8807488 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88074f07f87b88074f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88075587f87b8807558 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88075c07f87b88075c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88076287f87b8807628 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88076907f87b8807690 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88076f87f87b88076f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88077607f87b8807760 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88077c87f87b88077c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88078307f87b8807830 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88078987f87b8807898 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88079007f87b8807900 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88079687f87b8807968 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDb88079d07f87b88079d0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDb8807a387f87b8807a38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0646007f87ba064600 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0646687f87ba064668 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0646d07f87ba0646d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0647387f87ba064738 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0647a07f87ba0647a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0648087f87ba064808 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0648707f87ba064870 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0648d87f87ba0648d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0649407f87ba064940 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0649a87f87ba0649a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; - FFFDba064a107f87ba064a10 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064a787f87ba064a78 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064ae07f87ba064ae0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064b487f87ba064b48 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064bb07f87ba064bb0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064c187f87ba064c18 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064c807f87ba064c80 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064ce87f87ba064ce8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064d507f87ba064d50 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064db87f87ba064db8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064e207f87ba064e20 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064e887f87ba064e88 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064ef07f87ba064ef0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064f587f87ba064f58 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDba064fc07f87ba064fc0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0650287f87ba065028 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0650907f87ba065090 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0650f87f87ba0650f8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0651607f87ba065160 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0651c87f87ba0651c8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0652307f87ba065230 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0652987f87ba065298 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0653007f87ba065300 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0653687f87ba065368 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0653d07f87ba0653d0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0654387f87ba065438 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0654a07f87ba0654a0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0655087f87ba065508 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0655707f87ba065570 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0655d87f87ba0655d8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0656407f87ba065640 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0656a87f87ba0656a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0657107f87ba065710 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0657787f87ba065778 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0657e07f87ba0657e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0658487f87ba065848 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0658b07f87ba0658b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0659187f87ba065918 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0659807f87ba065980 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0659e87f87ba0659e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065a507f87ba065a50 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065ab87f87ba065ab8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065b207f87ba065b20 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065b887f87ba065b88 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065bf07f87ba065bf0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065c587f87ba065c58 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065cc07f87ba065cc0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065d287f87ba065d28 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065d907f87ba065d90 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065df87f87ba065df8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065e607f87ba065e60 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065ec87f87ba065ec8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065f307f87ba065f30 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; - FFFDba065f987f87ba065f98 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0660007f87ba066000 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0660687f87ba066068 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0660d07f87ba0660d0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0661387f87ba066138 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0661a07f87ba0661a0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0662087f87ba066208 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0662707f87ba066270 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0662d87f87ba0662d8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0663407f87ba066340 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0663a87f87ba0663a8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0664107f87ba066410 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0664787f87ba066478 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0664e07f87ba0664e0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0665487f87ba066548 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0665b07f87ba0665b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0666187f87ba066618 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0666807f87ba066680 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0666e87f87ba0666e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0667507f87ba066750 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0667b87f87ba0667b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0668207f87ba066820 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0668887f87ba066888 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0668f07f87ba0668f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0669587f87ba066958 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0669c07f87ba0669c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066a287f87ba066a28 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066a907f87ba066a90 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066af87f87ba066af8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066b607f87ba066b60 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066bc87f87ba066bc8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066c307f87ba066c30 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066c987f87ba066c98 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066d007f87ba066d00 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066d687f87ba066d68 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066dd07f87ba066dd0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066e387f87ba066e38 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066ea07f87ba066ea0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066f087f87ba066f08 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066f707f87ba066f70 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFDba066fd87f87ba066fd8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0670407f87ba067040 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0670a87f87ba0670a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0671107f87ba067110 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0671787f87ba067178 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0671e07f87ba0671e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0672487f87ba067248 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0672b07f87ba0672b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0673187f87ba067318 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0673807f87ba067380 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0673e87f87ba0673e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0674507f87ba067450 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0674b87f87ba0674b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0675207f87ba067520 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0675887f87ba067588 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0675f07f87ba0675f0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0676587f87ba067658 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0676c07f87ba0676c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0677287f87ba067728 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0677907f87ba067790 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0677f87f87ba0677f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0678607f87ba067860 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0678c87f87ba0678c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0679307f87ba067930 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0679987f87ba067998 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067a007f87ba067a00 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067a687f87ba067a68 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067ad07f87ba067ad0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067b387f87ba067b38 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067ba07f87ba067ba0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067c087f87ba067c08 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067c707f87ba067c70 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067cd87f87ba067cd8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067d407f87ba067d40 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067da87f87ba067da8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067e107f87ba067e10 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067e787f87ba067e78 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDba067ee07f87ba067ee0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba067f487f87ba067f48 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba067fb07f87ba067fb0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0680187f87ba068018 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0680807f87ba068080 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0680e87f87ba0680e8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0681507f87ba068150 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0681b87f87ba0681b8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0682207f87ba068220 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0682887f87ba068288 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0682f07f87ba0682f0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0683587f87ba068358 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0683c07f87ba0683c0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0684287f87ba068428 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0684907f87ba068490 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0684f87f87ba0684f8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0685607f87ba068560 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0685c87f87ba0685c8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0686307f87ba068630 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0686987f87ba068698 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0687007f87ba068700 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0687687f87ba068768 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0687d07f87ba0687d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0688387f87ba068838 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0688a07f87ba0688a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0689087f87ba068908 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0689707f87ba068970 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0689d87f87ba0689d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068a407f87ba068a40 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068aa87f87ba068aa8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068b107f87ba068b10 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068b787f87ba068b78 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068be07f87ba068be0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068c487f87ba068c48 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068cb07f87ba068cb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068d187f87ba068d18 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068d807f87ba068d80 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068de87f87ba068de8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068e507f87ba068e50 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068eb87f87ba068eb8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068f207f87ba068f20 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068f887f87ba068f88 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba068ff07f87ba068ff0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0690587f87ba069058 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0690c07f87ba0690c0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0691287f87ba069128 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0691907f87ba069190 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0691f87f87ba0691f8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0692607f87ba069260 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0692c87f87ba0692c8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0693307f87ba069330 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0693987f87ba069398 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0694007f87ba069400 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0694687f87ba069468 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0694d07f87ba0694d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0695387f87ba069538 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0695a07f87ba0695a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0696087f87ba069608 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0696707f87ba069670 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0696d87f87ba0696d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0697407f87ba069740 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0697a87f87ba0697a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0698107f87ba069810 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0698787f87ba069878 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0698e07f87ba0698e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0699487f87ba069948 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0699b07f87ba0699b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069a187f87ba069a18 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069a807f87ba069a80 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069ae87f87ba069ae8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069b507f87ba069b50 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069bb87f87ba069bb8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069c207f87ba069c20 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069c887f87ba069c88 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069cf07f87ba069cf0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069d587f87ba069d58 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069dc07f87ba069dc0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069e287f87ba069e28 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069e907f87ba069e90 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069ef87f87ba069ef8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069f607f87ba069f60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba069fc87f87ba069fc8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a0307f87ba06a030 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a0987f87ba06a098 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a1007f87ba06a100 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a1687f87ba06a168 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a1d07f87ba06a1d0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a2387f87ba06a238 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a2a07f87ba06a2a0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a3087f87ba06a308 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a3707f87ba06a370 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a3d87f87ba06a3d8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a4407f87ba06a440 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a4a87f87ba06a4a8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a5107f87ba06a510 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a5787f87ba06a578 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a5e07f87ba06a5e0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a6487f87ba06a648 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a6b07f87ba06a6b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a7187f87ba06a718 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a7807f87ba06a780 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a7e87f87ba06a7e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a8507f87ba06a850 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a8b87f87ba06a8b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a9207f87ba06a920 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a9887f87ba06a988 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06a9f07f87ba06a9f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06aa587f87ba06aa58 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06aac07f87ba06aac0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06ab287f87ba06ab28 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06ab907f87ba06ab90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06abf87f87ba06abf8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06ac607f87ba06ac60 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06acc87f87ba06acc8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06ad307f87ba06ad30 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06ad987f87ba06ad98 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06ae007f87ba06ae00 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06ae687f87ba06ae68 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06aed07f87ba06aed0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06af387f87ba06af38 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06afa07f87ba06afa0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06b0087f87ba06b008 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06b0707f87ba06b070 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06b0d87f87ba06b0d8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06b1407f87ba06b140 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06b1a87f87ba06b1a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba06b2107f87ba06b210 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2c17a107ffde2c17a10 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe380ec007ffde380ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380ec687ffde380ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380ecd07ffde380ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380ed387ffde380ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380eda07ffde380eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380ee087ffde380ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380ee707ffde380ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380eed87ffde380eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380ef407ffde380ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380efa87ffde380efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f0107ffde380f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f0787ffde380f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f0e07ffde380f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f1487ffde380f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f1b07ffde380f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f2187ffde380f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f2807ffde380f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f2e87ffde380f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f3507ffde380f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f3b87ffde380f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f4207ffde380f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f4887ffde380f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f4f07ffde380f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f5587ffde380f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f5c07ffde380f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f6287ffde380f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f6907ffde380f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f6f87ffde380f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f7607ffde380f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f7c87ffde380f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f8307ffde380f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f8987ffde380f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDe380f9007ffde380f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30290007ffde3029000 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30290687ffde3029068 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30290d07ffde30290d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30291387ffde3029138 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30291a07ffde30291a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30292087ffde3029208 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30292707ffde3029270 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30292d87ffde30292d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30293407ffde3029340 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30293a87ffde30293a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30294107ffde3029410 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30294787ffde3029478 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30294e07ffde30294e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30295487ffde3029548 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30295b07ffde30295b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30296187ffde3029618 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30296807ffde3029680 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30296e87ffde30296e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30297507ffde3029750 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30297b87ffde30297b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30298207ffde3029820 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30298887ffde3029888 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30298f07ffde30298f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30299587ffde3029958 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30299c07ffde30299c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3029a287ffde3029a28 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3029a907ffde3029a90 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3029af87ffde3029af8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3029b607ffde3029b60 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3029bc87ffde3029bc8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3029c307ffde3029c30 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3029c987ffde3029c98 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3029d007ffde3029d00 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3029d687ffde3029d68 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3029dd07ffde3029dd0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3029e387ffde3029e38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38010007ffde3801000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38010687ffde3801068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38010d07ffde38010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38011387ffde3801138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38011a07ffde38011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38012087ffde3801208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38012707ffde3801270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38012d87ffde38012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38013407ffde3801340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38013a87ffde38013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; + FFFDe38014107ffde3801410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38014787ffde3801478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38014e07ffde38014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38015487ffde3801548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38015b07ffde38015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38016187ffde3801618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38016807ffde3801680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38016e87ffde38016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38017507ffde3801750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38017b87ffde38017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38018207ffde3801820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38018887ffde3801888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38018f07ffde38018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38019587ffde3801958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38019c07ffde38019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801a287ffde3801a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801a907ffde3801a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801af87ffde3801af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801b607ffde3801b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801bc87ffde3801bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801c307ffde3801c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801c987ffde3801c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801d007ffde3801d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801d687ffde3801d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801dd07ffde3801dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801e387ffde3801e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801ea07ffde3801ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801f087ffde3801f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801f707ffde3801f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3801fd87ffde3801fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38020407ffde3802040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38020a87ffde38020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38021107ffde3802110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38021787ffde3802178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38021e07ffde38021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38022487ffde3802248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38022b07ffde38022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38023187ffde3802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38023807ffde3802380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38023e87ffde38023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38024507ffde3802450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38024b87ffde38024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38025207ffde3802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38025887ffde3802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38025f07ffde38025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38026587ffde3802658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38026c07ffde38026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38027287ffde3802728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38027907ffde3802790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38027f87ffde38027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38028607ffde3802860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38028c87ffde38028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38029307ffde3802930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38029987ffde3802998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802a007ffde3802a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802a687ffde3802a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802ad07ffde3802ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802b387ffde3802b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802ba07ffde3802ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802c087ffde3802c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802c707ffde3802c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802cd87ffde3802cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802d407ffde3802d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802da87ffde3802da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802e107ffde3802e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802e787ffde3802e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802ee07ffde3802ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802f487ffde3802f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3802fb07ffde3802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38030187ffde3803018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38030807ffde3803080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38030e87ffde38030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38031507ffde3803150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38031b87ffde38031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38032207ffde3803220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38032887ffde3803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38032f07ffde38032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38033587ffde3803358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38033c07ffde38033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38034287ffde3803428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38034907ffde3803490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38034f87ffde38034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38035607ffde3803560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38035c87ffde38035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38036307ffde3803630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38036987ffde3803698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38037007ffde3803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38037687ffde3803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38037d07ffde38037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38038387ffde3803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38038a07ffde38038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38039087ffde3803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38039707ffde3803970 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38039d87ffde38039d8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803a407ffde3803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803aa87ffde3803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803b107ffde3803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803b787ffde3803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803be07ffde3803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803c487ffde3803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803cb07ffde3803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803d187ffde3803d18 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803d807ffde3803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803de87ffde3803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803e507ffde3803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803eb87ffde3803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803f207ffde3803f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803f887ffde3803f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3803ff07ffde3803ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38040587ffde3804058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38040c07ffde38040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38041287ffde3804128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38041907ffde3804190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38041f87ffde38041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38042607ffde3804260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38042c87ffde38042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38043307ffde3804330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38043987ffde3804398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38044007ffde3804400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38044687ffde3804468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38044d07ffde38044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38045387ffde3804538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38045a07ffde38045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38046087ffde3804608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38046707ffde3804670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38046d87ffde38046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38047407ffde3804740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38047a87ffde38047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38048107ffde3804810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38048787ffde3804878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38048e07ffde38048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38049487ffde3804948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38049b07ffde38049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804a187ffde3804a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804a807ffde3804a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804ae87ffde3804ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804b507ffde3804b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804bb87ffde3804bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804c207ffde3804c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804c887ffde3804c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804cf07ffde3804cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804d587ffde3804d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804dc07ffde3804dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804e287ffde3804e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804e907ffde3804e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804ef87ffde3804ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804f607ffde3804f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3804fc87ffde3804fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38050307ffde3805030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38050987ffde3805098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38051007ffde3805100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38051687ffde3805168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38051d07ffde38051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38052387ffde3805238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38052a07ffde38052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38053087ffde3805308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38053707ffde3805370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38053d87ffde38053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38054407ffde3805440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38054a87ffde38054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38055107ffde3805510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38055787ffde3805578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38055e07ffde38055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38056487ffde3805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38056b07ffde38056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38057187ffde3805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38057807ffde3805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38057e87ffde38057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38058507ffde3805850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38058b87ffde38058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38059207ffde3805920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38059887ffde3805988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38059f07ffde38059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805a587ffde3805a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805ac07ffde3805ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805b287ffde3805b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805b907ffde3805b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805bf87ffde3805bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805c607ffde3805c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805cc87ffde3805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805d307ffde3805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805d987ffde3805d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805e007ffde3805e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805e687ffde3805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805ed07ffde3805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805f387ffde3805f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3805fa07ffde3805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38060087ffde3806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38060707ffde3806070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38060d87ffde38060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38061407ffde3806140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38061a87ffde38061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38062107ffde3806210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38062787ffde3806278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38062e07ffde38062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38063487ffde3806348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38063b07ffde38063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38064187ffde3806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38064807ffde3806480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38064e87ffde38064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38065507ffde3806550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38065b87ffde38065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38066207ffde3806620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38066887ffde3806688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38066f07ffde38066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38067587ffde3806758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38067c07ffde38067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38068287ffde3806828 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38068907ffde3806890 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38068f87ffde38068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38069607ffde3806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38069c87ffde38069c8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806a307ffde3806a30 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806a987ffde3806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806b007ffde3806b00 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806b687ffde3806b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806bd07ffde3806bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806c387ffde3806c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806ca07ffde3806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806d087ffde3806d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806d707ffde3806d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806dd87ffde3806dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806e407ffde3806e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806ea87ffde3806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806f107ffde3806f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806f787ffde3806f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3806fe07ffde3806fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38070487ffde3807048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38070b07ffde38070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38071187ffde3807118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38071807ffde3807180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38071e87ffde38071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38072507ffde3807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38072b87ffde38072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38073207ffde3807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38073887ffde3807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38073f07ffde38073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38074587ffde3807458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38074c07ffde38074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38075287ffde3807528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38075907ffde3807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38075f87ffde38075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38076607ffde3807660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38076c87ffde38076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38077307ffde3807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38077987ffde3807798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38078007ffde3807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38078687ffde3807868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38078d07ffde38078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38079387ffde3807938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38079a07ffde38079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3807a087ffde3807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3807a707ffde3807a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3807ad87ffde3807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3807b407ffde3807b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3807ba87ffde3807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3807c107ffde3807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2b85164f07f87b85164f0 /* Resources */ = { + FFF2e2c17a107ffde2c17a10 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFba0649a87f87ba0649a8, + FFFFe38013a87ffde38013a8, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCb85164f07f87b85164f0 /* Frameworks */ = { + FFFCe2c17a107ffde2c17a10 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1841,145 +1841,145 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8b85164f07f87b85164f0 /* Sources */ = { + FFF8e2c17a107ffde2c17a10 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFb8806c007f87b8806c00, - FFFFb8806c687f87b8806c68, - FFFFb8806cd07f87b8806cd0, - FFFFb8806d387f87b8806d38, - FFFFb8806da07f87b8806da0, - FFFFb8806e087f87b8806e08, - FFFFb8806e707f87b8806e70, - FFFFb8806ed87f87b8806ed8, - FFFFba067ee07f87ba067ee0, - FFFFba067f487f87ba067f48, - FFFFba067fb07f87ba067fb0, - FFFFba0680187f87ba068018, - FFFFba0680807f87ba068080, - FFFFba0680e87f87ba0680e8, - FFFFba0681507f87ba068150, - FFFFba0681b87f87ba0681b8, - FFFFba0682207f87ba068220, - FFFFba0682887f87ba068288, - FFFFba0682f07f87ba0682f0, - FFFFba0683587f87ba068358, - FFFFba0683c07f87ba0683c0, - FFFFba0684287f87ba068428, - FFFFba0684907f87ba068490, - FFFFba0684f87f87ba0684f8, - FFFFba0685607f87ba068560, - FFFFba0685c87f87ba0685c8, - FFFFba0686307f87ba068630, - FFFFba0686987f87ba068698, - FFFFba0687007f87ba068700, - FFFFba0687687f87ba068768, - FFFFba0687d07f87ba0687d0, - FFFFba0688387f87ba068838, - FFFFba0688a07f87ba0688a0, - FFFFba0689087f87ba068908, - FFFFba0689707f87ba068970, - FFFFba0689d87f87ba0689d8, - FFFFba068a407f87ba068a40, - FFFFba068aa87f87ba068aa8, - FFFFba068b107f87ba068b10, - FFFFba068b787f87ba068b78, - FFFFba068be07f87ba068be0, - FFFFba068c487f87ba068c48, - FFFFba068cb07f87ba068cb0, - FFFFba068d187f87ba068d18, - FFFFba068d807f87ba068d80, - FFFFba068de87f87ba068de8, - FFFFba068e507f87ba068e50, - FFFFba068eb87f87ba068eb8, - FFFFba068f207f87ba068f20, - FFFFba068f887f87ba068f88, - FFFFba068ff07f87ba068ff0, - FFFFba0690587f87ba069058, - FFFFba0690c07f87ba0690c0, - FFFFba0691287f87ba069128, - FFFFba0691907f87ba069190, - FFFFba0691f87f87ba0691f8, - FFFFba0692607f87ba069260, - FFFFba0692c87f87ba0692c8, - FFFFba0693307f87ba069330, - FFFFba0693987f87ba069398, - FFFFba0694007f87ba069400, - FFFFba0694687f87ba069468, - FFFFba0694d07f87ba0694d0, - FFFFba0695387f87ba069538, - FFFFba0695a07f87ba0695a0, - FFFFba0696087f87ba069608, - FFFFba0696707f87ba069670, - FFFFba0696d87f87ba0696d8, - FFFFba0697407f87ba069740, - FFFFba0697a87f87ba0697a8, - FFFFba0698107f87ba069810, - FFFFba0698787f87ba069878, - FFFFba0698e07f87ba0698e0, - FFFFba0699487f87ba069948, - FFFFba0699b07f87ba0699b0, - FFFFba069a187f87ba069a18, - FFFFba069a807f87ba069a80, - FFFFba069ae87f87ba069ae8, - FFFFba069b507f87ba069b50, - FFFFba069bb87f87ba069bb8, - FFFFba069c207f87ba069c20, - FFFFba069c887f87ba069c88, - FFFFba069cf07f87ba069cf0, - FFFFba069d587f87ba069d58, - FFFFba069dc07f87ba069dc0, - FFFFba069e287f87ba069e28, - FFFFba069e907f87ba069e90, - FFFFba069ef87f87ba069ef8, - FFFFba069f607f87ba069f60, - FFFFba069fc87f87ba069fc8, - FFFFba06a0307f87ba06a030, - FFFFba06a0987f87ba06a098, - FFFFba06a1007f87ba06a100, - FFFFba06a1687f87ba06a168, - FFFFba06a1d07f87ba06a1d0, - FFFFba06a2387f87ba06a238, - FFFFba06a2a07f87ba06a2a0, - FFFFba06a3087f87ba06a308, - FFFFba06a3707f87ba06a370, - FFFFba06a3d87f87ba06a3d8, - FFFFba06a4407f87ba06a440, - FFFFba06a4a87f87ba06a4a8, - FFFFba06a5107f87ba06a510, - FFFFba06a5787f87ba06a578, - FFFFba06a5e07f87ba06a5e0, - FFFFba06a6487f87ba06a648, - FFFFba06a6b07f87ba06a6b0, - FFFFba06a7187f87ba06a718, - FFFFba06a7807f87ba06a780, - FFFFba06a7e87f87ba06a7e8, - FFFFba06a8507f87ba06a850, - FFFFba06a8b87f87ba06a8b8, - FFFFba06a9207f87ba06a920, - FFFFba06a9887f87ba06a988, - FFFFba06a9f07f87ba06a9f0, - FFFFba06aa587f87ba06aa58, - FFFFba06aac07f87ba06aac0, - FFFFba06ab287f87ba06ab28, - FFFFba06ab907f87ba06ab90, - FFFFba06abf87f87ba06abf8, - FFFFba06ac607f87ba06ac60, - FFFFba06acc87f87ba06acc8, - FFFFba06ad307f87ba06ad30, - FFFFba06ad987f87ba06ad98, - FFFFba06ae007f87ba06ae00, - FFFFba06ae687f87ba06ae68, - FFFFba06aed07f87ba06aed0, - FFFFba06af387f87ba06af38, - FFFFba06afa07f87ba06afa0, - FFFFba06b0087f87ba06b008, - FFFFba06b0707f87ba06b070, - FFFFba06b0d87f87ba06b0d8, - FFFFba06b1407f87ba06b140, - FFFFba06b1a87f87ba06b1a8, - FFFFba06b2107f87ba06b210, + FFFFe30290007ffde3029000, + FFFFe30290687ffde3029068, + FFFFe30290d07ffde30290d0, + FFFFe30291387ffde3029138, + FFFFe30291a07ffde30291a0, + FFFFe30292087ffde3029208, + FFFFe30292707ffde3029270, + FFFFe30292d87ffde30292d8, + FFFFe38048e07ffde38048e0, + FFFFe38049487ffde3804948, + FFFFe38049b07ffde38049b0, + FFFFe3804a187ffde3804a18, + FFFFe3804a807ffde3804a80, + FFFFe3804ae87ffde3804ae8, + FFFFe3804b507ffde3804b50, + FFFFe3804bb87ffde3804bb8, + FFFFe3804c207ffde3804c20, + FFFFe3804c887ffde3804c88, + FFFFe3804cf07ffde3804cf0, + FFFFe3804d587ffde3804d58, + FFFFe3804dc07ffde3804dc0, + FFFFe3804e287ffde3804e28, + FFFFe3804e907ffde3804e90, + FFFFe3804ef87ffde3804ef8, + FFFFe3804f607ffde3804f60, + FFFFe3804fc87ffde3804fc8, + FFFFe38050307ffde3805030, + FFFFe38050987ffde3805098, + FFFFe38051007ffde3805100, + FFFFe38051687ffde3805168, + FFFFe38051d07ffde38051d0, + FFFFe38052387ffde3805238, + FFFFe38052a07ffde38052a0, + FFFFe38053087ffde3805308, + FFFFe38053707ffde3805370, + FFFFe38053d87ffde38053d8, + FFFFe38054407ffde3805440, + FFFFe38054a87ffde38054a8, + FFFFe38055107ffde3805510, + FFFFe38055787ffde3805578, + FFFFe38055e07ffde38055e0, + FFFFe38056487ffde3805648, + FFFFe38056b07ffde38056b0, + FFFFe38057187ffde3805718, + FFFFe38057807ffde3805780, + FFFFe38057e87ffde38057e8, + FFFFe38058507ffde3805850, + FFFFe38058b87ffde38058b8, + FFFFe38059207ffde3805920, + FFFFe38059887ffde3805988, + FFFFe38059f07ffde38059f0, + FFFFe3805a587ffde3805a58, + FFFFe3805ac07ffde3805ac0, + FFFFe3805b287ffde3805b28, + FFFFe3805b907ffde3805b90, + FFFFe3805bf87ffde3805bf8, + FFFFe3805c607ffde3805c60, + FFFFe3805cc87ffde3805cc8, + FFFFe3805d307ffde3805d30, + FFFFe3805d987ffde3805d98, + FFFFe3805e007ffde3805e00, + FFFFe3805e687ffde3805e68, + FFFFe3805ed07ffde3805ed0, + FFFFe3805f387ffde3805f38, + FFFFe3805fa07ffde3805fa0, + FFFFe38060087ffde3806008, + FFFFe38060707ffde3806070, + FFFFe38060d87ffde38060d8, + FFFFe38061407ffde3806140, + FFFFe38061a87ffde38061a8, + FFFFe38062107ffde3806210, + FFFFe38062787ffde3806278, + FFFFe38062e07ffde38062e0, + FFFFe38063487ffde3806348, + FFFFe38063b07ffde38063b0, + FFFFe38064187ffde3806418, + FFFFe38064807ffde3806480, + FFFFe38064e87ffde38064e8, + FFFFe38065507ffde3806550, + FFFFe38065b87ffde38065b8, + FFFFe38066207ffde3806620, + FFFFe38066887ffde3806688, + FFFFe38066f07ffde38066f0, + FFFFe38067587ffde3806758, + FFFFe38067c07ffde38067c0, + FFFFe38068287ffde3806828, + FFFFe38068907ffde3806890, + FFFFe38068f87ffde38068f8, + FFFFe38069607ffde3806960, + FFFFe38069c87ffde38069c8, + FFFFe3806a307ffde3806a30, + FFFFe3806a987ffde3806a98, + FFFFe3806b007ffde3806b00, + FFFFe3806b687ffde3806b68, + FFFFe3806bd07ffde3806bd0, + FFFFe3806c387ffde3806c38, + FFFFe3806ca07ffde3806ca0, + FFFFe3806d087ffde3806d08, + FFFFe3806d707ffde3806d70, + FFFFe3806dd87ffde3806dd8, + FFFFe3806e407ffde3806e40, + FFFFe3806ea87ffde3806ea8, + FFFFe3806f107ffde3806f10, + FFFFe3806f787ffde3806f78, + FFFFe3806fe07ffde3806fe0, + FFFFe38070487ffde3807048, + FFFFe38070b07ffde38070b0, + FFFFe38071187ffde3807118, + FFFFe38071807ffde3807180, + FFFFe38071e87ffde38071e8, + FFFFe38072507ffde3807250, + FFFFe38072b87ffde38072b8, + FFFFe38073207ffde3807320, + FFFFe38073887ffde3807388, + FFFFe38073f07ffde38073f0, + FFFFe38074587ffde3807458, + FFFFe38074c07ffde38074c0, + FFFFe38075287ffde3807528, + FFFFe38075907ffde3807590, + FFFFe38075f87ffde38075f8, + FFFFe38076607ffde3807660, + FFFFe38076c87ffde38076c8, + FFFFe38077307ffde3807730, + FFFFe38077987ffde3807798, + FFFFe38078007ffde3807800, + FFFFe38078687ffde3807868, + FFFFe38078d07ffde38078d0, + FFFFe38079387ffde3807938, + FFFFe38079a07ffde38079a0, + FFFFe3807a087ffde3807a08, + FFFFe3807a707ffde3807a70, + FFFFe3807ad87ffde3807ad8, + FFFFe3807b407ffde3807b40, + FFFFe3807ba87ffde3807ba8, + FFFFe3807c107ffde3807c10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1988,132 +1988,132 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4b86f4c707f87b86f4c70 /* PBXTargetDependency */ = { + FFF4e2c08f307ffde2c08f30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb8500ad07f87b8500ad0 /* PxFoundation */; - targetProxy = FFF5b8500ad07f87b8500ad0 /* PBXContainerItemProxy */; + target = FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */; + targetProxy = FFF5e2c0b7d07ffde2c0b7d0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxFoundation */ - FFFFb9010f187f87b9010f18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9010f187f87b9010f18 /* src/PsAllocator.cpp */; }; - FFFFb9010f807f87b9010f80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9010f807f87b9010f80 /* src/PsAssert.cpp */; }; - FFFFb9010fe87f87b9010fe8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9010fe87f87b9010fe8 /* src/PsFoundation.cpp */; }; - FFFFb90110507f87b9011050 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90110507f87b9011050 /* src/PsMathUtils.cpp */; }; - FFFFb90110b87f87b90110b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90110b87f87b90110b8 /* src/PsString.cpp */; }; - FFFFb90111207f87b9011120 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90111207f87b9011120 /* src/PsTempAllocator.cpp */; }; - FFFFb90111887f87b9011188 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90111887f87b9011188 /* src/PsUtilities.cpp */; }; - FFFFb90111f07f87b90111f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90111f07f87b90111f0 /* src/unix/PsUnixAtomic.cpp */; }; - FFFFb90112587f87b9011258 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90112587f87b9011258 /* src/unix/PsUnixCpu.cpp */; }; - FFFFb90112c07f87b90112c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90112c07f87b90112c0 /* src/unix/PsUnixFPU.cpp */; }; - FFFFb90113287f87b9011328 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90113287f87b9011328 /* src/unix/PsUnixMutex.cpp */; }; - FFFFb90113907f87b9011390 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90113907f87b9011390 /* src/unix/PsUnixPrintString.cpp */; }; - FFFFb90113f87f87b90113f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90113f87f87b90113f8 /* src/unix/PsUnixSList.cpp */; }; - FFFFb90114607f87b9011460 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90114607f87b9011460 /* src/unix/PsUnixSocket.cpp */; }; - FFFFb90114c87f87b90114c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90114c87f87b90114c8 /* src/unix/PsUnixSync.cpp */; }; - FFFFb90115307f87b9011530 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90115307f87b9011530 /* src/unix/PsUnixThread.cpp */; }; - FFFFb90115987f87b9011598 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90115987f87b9011598 /* src/unix/PsUnixTime.cpp */; }; + FFFFe3005b187ffde3005b18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005b187ffde3005b18 /* src/PsAllocator.cpp */; }; + FFFFe3005b807ffde3005b80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005b807ffde3005b80 /* src/PsAssert.cpp */; }; + FFFFe3005be87ffde3005be8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005be87ffde3005be8 /* src/PsFoundation.cpp */; }; + FFFFe3005c507ffde3005c50 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005c507ffde3005c50 /* src/PsMathUtils.cpp */; }; + FFFFe3005cb87ffde3005cb8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005cb87ffde3005cb8 /* src/PsString.cpp */; }; + FFFFe3005d207ffde3005d20 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005d207ffde3005d20 /* src/PsTempAllocator.cpp */; }; + FFFFe3005d887ffde3005d88 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005d887ffde3005d88 /* src/PsUtilities.cpp */; }; + FFFFe3005df07ffde3005df0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005df07ffde3005df0 /* src/unix/PsUnixAtomic.cpp */; }; + FFFFe3005e587ffde3005e58 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005e587ffde3005e58 /* src/unix/PsUnixCpu.cpp */; }; + FFFFe3005ec07ffde3005ec0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005ec07ffde3005ec0 /* src/unix/PsUnixFPU.cpp */; }; + FFFFe3005f287ffde3005f28 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005f287ffde3005f28 /* src/unix/PsUnixMutex.cpp */; }; + FFFFe3005f907ffde3005f90 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005f907ffde3005f90 /* src/unix/PsUnixPrintString.cpp */; }; + FFFFe3005ff87ffde3005ff8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005ff87ffde3005ff8 /* src/unix/PsUnixSList.cpp */; }; + FFFFe30060607ffde3006060 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe30060607ffde3006060 /* src/unix/PsUnixSocket.cpp */; }; + FFFFe30060c87ffde30060c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe30060c87ffde30060c8 /* src/unix/PsUnixSync.cpp */; }; + FFFFe30061307ffde3006130 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe30061307ffde3006130 /* src/unix/PsUnixThread.cpp */; }; + FFFFe30061987ffde3006198 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe30061987ffde3006198 /* src/unix/PsUnixTime.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDb8500ad07f87b8500ad0 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDb90192007f87b9019200 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90192687f87b9019268 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90192d07f87b90192d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90193387f87b9019338 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90193a07f87b90193a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90194087f87b9019408 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90194707f87b9019470 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90194d87f87b90194d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90195407f87b9019540 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90195a87f87b90195a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90196107f87b9019610 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90196787f87b9019678 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90196e07f87b90196e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90197487f87b9019748 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90197b07f87b90197b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90198187f87b9019818 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90198807f87b9019880 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90198e87f87b90198e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90199507f87b9019950 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90199b87f87b90199b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9019a207f87b9019a20 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9019a887f87b9019a88 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9019af07f87b9019af0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9019b587f87b9019b58 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9019bc07f87b9019bc0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9019c287f87b9019c28 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9019c907f87b9019c90 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9019cf87f87b9019cf8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9019d607f87b9019d60 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDb900fc007f87b900fc00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; - FFFDb900fc687f87b900fc68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; - FFFDb900fcd07f87b900fcd0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; - FFFDb900fd387f87b900fd38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDb900fda07f87b900fda0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDb900fe087f87b900fe08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; - FFFDb900fe707f87b900fe70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFDb900fed87f87b900fed8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; - FFFDb900ff407f87b900ff40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDb900ffa87f87b900ffa8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90100107f87b9010010 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90100787f87b9010078 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90100e07f87b90100e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90101487f87b9010148 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90101b07f87b90101b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90102187f87b9010218 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90102807f87b9010280 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90102e87f87b90102e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90103507f87b9010350 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90103b87f87b90103b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90104207f87b9010420 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90104887f87b9010488 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90104f07f87b90104f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90105587f87b9010558 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90105c07f87b90105c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90106287f87b9010628 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90106907f87b9010690 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90106f87f87b90106f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90107607f87b9010760 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90107c87f87b90107c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90108307f87b9010830 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90108987f87b9010898 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90109007f87b9010900 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90109687f87b9010968 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; - FFFDb90109d07f87b90109d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010a387f87b9010a38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010aa07f87b9010aa0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010b087f87b9010b08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010b707f87b9010b70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010bd87f87b9010bd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010c407f87b9010c40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010ca87f87b9010ca8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010d107f87b9010d10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010d787f87b9010d78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010de07f87b9010de0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010e487f87b9010e48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010eb07f87b9010eb0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9010f187f87b9010f18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb9010f807f87b9010f80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb9010fe87f87b9010fe8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90110507f87b9011050 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90110b87f87b90110b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90111207f87b9011120 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90111887f87b9011188 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90111f07f87b90111f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90112587f87b9011258 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90112c07f87b90112c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90113287f87b9011328 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90113907f87b9011390 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90113f87f87b90113f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90114607f87b9011460 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90114c87f87b90114c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90115307f87b9011530 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb90115987f87b9011598 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2c0b7d07ffde2c0b7d0 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe3003c007ffde3003c00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3003c687ffde3003c68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3003cd07ffde3003cd0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3003d387ffde3003d38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3003da07ffde3003da0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3003e087ffde3003e08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3003e707ffde3003e70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3003ed87ffde3003ed8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3003f407ffde3003f40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3003fa87ffde3003fa8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30040107ffde3004010 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30040787ffde3004078 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30040e07ffde30040e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30041487ffde3004148 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30041b07ffde30041b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30042187ffde3004218 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30042807ffde3004280 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30042e87ffde30042e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30043507ffde3004350 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30043b87ffde30043b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30044207ffde3004420 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30044887ffde3004488 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30044f07ffde30044f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30045587ffde3004558 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30045c07ffde30045c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30046287ffde3004628 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30046907ffde3004690 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30046f87ffde30046f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30047607ffde3004760 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30048007ffde3004800 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30048687ffde3004868 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30048d07ffde30048d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30049387ffde3004938 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30049a07ffde30049a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004a087ffde3004a08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004a707ffde3004a70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004ad87ffde3004ad8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004b407ffde3004b40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004ba87ffde3004ba8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004c107ffde3004c10 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004c787ffde3004c78 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004ce07ffde3004ce0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004d487ffde3004d48 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004db07ffde3004db0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004e187ffde3004e18 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004e807ffde3004e80 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004ee87ffde3004ee8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004f507ffde3004f50 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3004fb87ffde3004fb8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30050207ffde3005020 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30050887ffde3005088 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30050f07ffde30050f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30051587ffde3005158 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30051c07ffde30051c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30052287ffde3005228 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30052907ffde3005290 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30052f87ffde30052f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30053607ffde3005360 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30053c87ffde30053c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30054307ffde3005430 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30054987ffde3005498 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30055007ffde3005500 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30055687ffde3005568 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30055d07ffde30055d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30056387ffde3005638 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30056a07ffde30056a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30057087ffde3005708 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30057707ffde3005770 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30057d87ffde30057d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30058407ffde3005840 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30058a87ffde30058a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30059107ffde3005910 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30059787ffde3005978 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30059e07ffde30059e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3005a487ffde3005a48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3005ab07ffde3005ab0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3005b187ffde3005b18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3005b807ffde3005b80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3005be87ffde3005be8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3005c507ffde3005c50 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3005cb87ffde3005cb8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3005d207ffde3005d20 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3005d887ffde3005d88 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3005df07ffde3005df0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3005e587ffde3005e58 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3005ec07ffde3005ec0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3005f287ffde3005f28 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3005f907ffde3005f90 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3005ff87ffde3005ff8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30060607ffde3006060 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30060c87ffde30060c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30061307ffde3006130 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30061987ffde3006198 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2b8500ad07f87b8500ad0 /* Resources */ = { + FFF2e2c0b7d07ffde2c0b7d0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2123,7 +2123,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCb8500ad07f87b8500ad0 /* Frameworks */ = { + FFFCe2c0b7d07ffde2c0b7d0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2133,27 +2133,27 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8b8500ad07f87b8500ad0 /* Sources */ = { + FFF8e2c0b7d07ffde2c0b7d0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFb9010f187f87b9010f18, - FFFFb9010f807f87b9010f80, - FFFFb9010fe87f87b9010fe8, - FFFFb90110507f87b9011050, - FFFFb90110b87f87b90110b8, - FFFFb90111207f87b9011120, - FFFFb90111887f87b9011188, - FFFFb90111f07f87b90111f0, - FFFFb90112587f87b9011258, - FFFFb90112c07f87b90112c0, - FFFFb90113287f87b9011328, - FFFFb90113907f87b9011390, - FFFFb90113f87f87b90113f8, - FFFFb90114607f87b9011460, - FFFFb90114c87f87b90114c8, - FFFFb90115307f87b9011530, - FFFFb90115987f87b9011598, + FFFFe3005b187ffde3005b18, + FFFFe3005b807ffde3005b80, + FFFFe3005be87ffde3005be8, + FFFFe3005c507ffde3005c50, + FFFFe3005cb87ffde3005cb8, + FFFFe3005d207ffde3005d20, + FFFFe3005d887ffde3005d88, + FFFFe3005df07ffde3005df0, + FFFFe3005e587ffde3005e58, + FFFFe3005ec07ffde3005ec0, + FFFFe3005f287ffde3005f28, + FFFFe3005f907ffde3005f90, + FFFFe3005ff87ffde3005ff8, + FFFFe30060607ffde3006060, + FFFFe30060c87ffde30060c8, + FFFFe30061307ffde3006130, + FFFFe30061987ffde3006198, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2165,103 +2165,103 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxPvdSDK */ - FFFFba0601a87f87ba0601a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0601a87f87ba0601a8 /* src/PxProfileEventImpl.cpp */; }; - FFFFba0602107f87ba060210 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0602107f87ba060210 /* src/PxPvd.cpp */; }; - FFFFba0602787f87ba060278 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0602787f87ba060278 /* src/PxPvdDataStream.cpp */; }; - FFFFba0602e07f87ba0602e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0602e07f87ba0602e0 /* src/PxPvdDefaultFileTransport.cpp */; }; - FFFFba0603487f87ba060348 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0603487f87ba060348 /* src/PxPvdDefaultSocketTransport.cpp */; }; - FFFFba0603b07f87ba0603b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0603b07f87ba0603b0 /* src/PxPvdImpl.cpp */; }; - FFFFba0604187f87ba060418 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0604187f87ba060418 /* src/PxPvdMemClient.cpp */; }; - FFFFba0604807f87ba060480 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0604807f87ba060480 /* src/PxPvdObjectModelMetaData.cpp */; }; - FFFFba0604e87f87ba0604e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0604e87f87ba0604e8 /* src/PxPvdObjectRegistrar.cpp */; }; - FFFFba0605507f87ba060550 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0605507f87ba060550 /* src/PxPvdProfileZoneClient.cpp */; }; - FFFFba0605b87f87ba0605b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0605b87f87ba0605b8 /* src/PxPvdUserRenderer.cpp */; }; + FFFFe217b1a87ffde217b1a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b1a87ffde217b1a8 /* src/PxProfileEventImpl.cpp */; }; + FFFFe217b2107ffde217b210 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b2107ffde217b210 /* src/PxPvd.cpp */; }; + FFFFe217b2787ffde217b278 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b2787ffde217b278 /* src/PxPvdDataStream.cpp */; }; + FFFFe217b2e07ffde217b2e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b2e07ffde217b2e0 /* src/PxPvdDefaultFileTransport.cpp */; }; + FFFFe217b3487ffde217b348 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b3487ffde217b348 /* src/PxPvdDefaultSocketTransport.cpp */; }; + FFFFe217b3b07ffde217b3b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b3b07ffde217b3b0 /* src/PxPvdImpl.cpp */; }; + FFFFe217b4187ffde217b418 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b4187ffde217b418 /* src/PxPvdMemClient.cpp */; }; + FFFFe217b4807ffde217b480 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b4807ffde217b480 /* src/PxPvdObjectModelMetaData.cpp */; }; + FFFFe217b4e87ffde217b4e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b4e87ffde217b4e8 /* src/PxPvdObjectRegistrar.cpp */; }; + FFFFe217b5507ffde217b550 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b5507ffde217b550 /* src/PxPvdProfileZoneClient.cpp */; }; + FFFFe217b5b87ffde217b5b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b5b87ffde217b5b8 /* src/PxPvdUserRenderer.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDb9b082f07f87b9b082f0 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDbd21b9f07f87bd21b9f0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDbd21ba587f87bd21ba58 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05fe007f87ba05fe00 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05fe687f87ba05fe68 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05fed07f87ba05fed0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05ff387f87ba05ff38 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDba05ffa07f87ba05ffa0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0600087f87ba060008 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0600707f87ba060070 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0600d87f87ba0600d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0601407f87ba060140 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0601a87f87ba0601a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0602107f87ba060210 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0602787f87ba060278 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0602e07f87ba0602e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0603487f87ba060348 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0603b07f87ba0603b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0604187f87ba060418 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0604807f87ba060480 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0604e87f87ba0604e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0605507f87ba060550 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0605b87f87ba0605b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba0606207f87ba060620 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0606887f87ba060688 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0606f07f87ba0606f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0607587f87ba060758 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0607c07f87ba0607c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0608287f87ba060828 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0608907f87ba060890 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0608f87f87ba0608f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0609607f87ba060960 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0609c87f87ba0609c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060a307f87ba060a30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060a987f87ba060a98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060b007f87ba060b00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060b687f87ba060b68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060bd07f87ba060bd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060c387f87ba060c38 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060ca07f87ba060ca0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060d087f87ba060d08 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060d707f87ba060d70 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060dd87f87ba060dd8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060e407f87ba060e40 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060ea87f87ba060ea8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060f107f87ba060f10 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060f787f87ba060f78 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFDba060fe07f87ba060fe0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0610487f87ba061048 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0610b07f87ba0610b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0611187f87ba061118 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0611807f87ba061180 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0611e87f87ba0611e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0612507f87ba061250 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0612b87f87ba0612b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0613207f87ba061320 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0613887f87ba061388 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0613f07f87ba0613f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0614587f87ba061458 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0614c07f87ba0614c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0615287f87ba061528 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0615907f87ba061590 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0615f87f87ba0615f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0616607f87ba061660 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0616c87f87ba0616c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0617307f87ba061730 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0617987f87ba061798 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0618007f87ba061800 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0618687f87ba061868 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0618d07f87ba0618d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0619387f87ba061938 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDba0619a07f87ba0619a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; - FFFDba061a087f87ba061a08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFDba061a707f87ba061a70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDba061ad87f87ba061ad8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba061b407f87ba061b40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; - FFFDba061ba87f87ba061ba8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDba061c107f87ba061c10 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDba061c787f87ba061c78 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe29691807ffde2969180 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe2915fb07ffde2915fb0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDe29160187ffde2916018 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217ae007ffde217ae00 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217ae687ffde217ae68 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217aed07ffde217aed0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217af387ffde217af38 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217afa07ffde217afa0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b0087ffde217b008 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b0707ffde217b070 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b0d87ffde217b0d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b1407ffde217b140 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b1a87ffde217b1a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe217b2107ffde217b210 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe217b2787ffde217b278 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe217b2e07ffde217b2e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe217b3487ffde217b348 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe217b3b07ffde217b3b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe217b4187ffde217b418 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe217b4807ffde217b480 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe217b4e87ffde217b4e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe217b5507ffde217b550 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe217b5b87ffde217b5b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe217b6207ffde217b620 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b6887ffde217b688 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b6f07ffde217b6f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b7587ffde217b758 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b7c07ffde217b7c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b8287ffde217b828 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b8907ffde217b890 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b8f87ffde217b8f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b9607ffde217b960 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217b9c87ffde217b9c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217ba307ffde217ba30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217ba987ffde217ba98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217bb007ffde217bb00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217bb687ffde217bb68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217bbd07ffde217bbd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217bc387ffde217bc38 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217bca07ffde217bca0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217bd087ffde217bd08 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217bd707ffde217bd70 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217bdd87ffde217bdd8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217be407ffde217be40 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217bea87ffde217bea8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217bf107ffde217bf10 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217bf787ffde217bf78 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217bfe07ffde217bfe0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c0487ffde217c048 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c0b07ffde217c0b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c1187ffde217c118 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c1807ffde217c180 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c1e87ffde217c1e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c2507ffde217c250 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c2b87ffde217c2b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c3207ffde217c320 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c3887ffde217c388 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c3f07ffde217c3f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c4587ffde217c458 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c4c07ffde217c4c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c5287ffde217c528 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c5907ffde217c590 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c5f87ffde217c5f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c6607ffde217c660 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c6c87ffde217c6c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c7307ffde217c730 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c7987ffde217c798 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c8007ffde217c800 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c8687ffde217c868 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c8d07ffde217c8d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c9387ffde217c938 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217c9a07ffde217c9a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217ca087ffde217ca08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217ca707ffde217ca70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217cad87ffde217cad8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217cb407ffde217cb40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217cba87ffde217cba8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217cc107ffde217cc10 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe217cc787ffde217cc78 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2b9b082f07f87b9b082f0 /* Resources */ = { + FFF2e29691807ffde2969180 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2271,7 +2271,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCb9b082f07f87b9b082f0 /* Frameworks */ = { + FFFCe29691807ffde2969180 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2281,21 +2281,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8b9b082f07f87b9b082f0 /* Sources */ = { + FFF8e29691807ffde2969180 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFba0601a87f87ba0601a8, - FFFFba0602107f87ba060210, - FFFFba0602787f87ba060278, - FFFFba0602e07f87ba0602e0, - FFFFba0603487f87ba060348, - FFFFba0603b07f87ba0603b0, - FFFFba0604187f87ba060418, - FFFFba0604807f87ba060480, - FFFFba0604e87f87ba0604e8, - FFFFba0605507f87ba060550, - FFFFba0605b87f87ba0605b8, + FFFFe217b1a87ffde217b1a8, + FFFFe217b2107ffde217b210, + FFFFe217b2787ffde217b278, + FFFFe217b2e07ffde217b2e0, + FFFFe217b3487ffde217b348, + FFFFe217b3b07ffde217b3b0, + FFFFe217b4187ffde217b418, + FFFFe217b4807ffde217b480, + FFFFe217b4e87ffde217b4e8, + FFFFe217b5507ffde217b550, + FFFFe217b5b87ffde217b5b8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2304,108 +2304,108 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4b9b091707f87b9b09170 /* PBXTargetDependency */ = { + FFF4e29150b07ffde29150b0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAb8500ad07f87b8500ad0 /* PxFoundation */; - targetProxy = FFF5b8500ad07f87b8500ad0 /* PBXContainerItemProxy */; + target = FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */; + targetProxy = FFF5e2c0b7d07ffde2c0b7d0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevel */ - FFFFb85118407f87b8511840 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDb85118407f87b8511840 /* px_globals.cpp */; }; - FFFFb851ffa07f87b851ffa0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb851ffa07f87b851ffa0 /* PxsCCD.cpp */; }; - FFFFb85200087f87b8520008 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb85200087f87b8520008 /* PxsContactManager.cpp */; }; - FFFFb85200707f87b8520070 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb85200707f87b8520070 /* PxsContext.cpp */; }; - FFFFb85200d87f87b85200d8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb85200d87f87b85200d8 /* PxsDefaultMemoryManager.cpp */; }; - FFFFb85201407f87b8520140 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb85201407f87b8520140 /* PxsIslandSim.cpp */; }; - FFFFb85201a87f87b85201a8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb85201a87f87b85201a8 /* PxsMaterialCombiner.cpp */; }; - FFFFb85202107f87b8520210 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb85202107f87b8520210 /* PxsNphaseImplementationContext.cpp */; }; - FFFFb85202787f87b8520278 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb85202787f87b8520278 /* PxsSimpleIslandManager.cpp */; }; - FFFFb901d8007f87b901d800 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb901d8007f87b901d800 /* collision/PxcContact.cpp */; }; - FFFFb901d8687f87b901d868 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb901d8687f87b901d868 /* pipeline/PxcContactCache.cpp */; }; - FFFFb901d8d07f87b901d8d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb901d8d07f87b901d8d0 /* pipeline/PxcContactMethodImpl.cpp */; }; - FFFFb901d9387f87b901d938 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb901d9387f87b901d938 /* pipeline/PxcMaterialHeightField.cpp */; }; - FFFFb901d9a07f87b901d9a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb901d9a07f87b901d9a0 /* pipeline/PxcMaterialMesh.cpp */; }; - FFFFb901da087f87b901da08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb901da087f87b901da08 /* pipeline/PxcMaterialMethodImpl.cpp */; }; - FFFFb901da707f87b901da70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb901da707f87b901da70 /* pipeline/PxcMaterialShape.cpp */; }; - FFFFb901dad87f87b901dad8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb901dad87f87b901dad8 /* pipeline/PxcNpBatch.cpp */; }; - FFFFb901db407f87b901db40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb901db407f87b901db40 /* pipeline/PxcNpCacheStreamPair.cpp */; }; - FFFFb901dba87f87b901dba8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb901dba87f87b901dba8 /* pipeline/PxcNpContactPrepShared.cpp */; }; - FFFFb901dc107f87b901dc10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb901dc107f87b901dc10 /* pipeline/PxcNpMemBlockPool.cpp */; }; - FFFFb901dc787f87b901dc78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb901dc787f87b901dc78 /* pipeline/PxcNpThreadContext.cpp */; }; + FFFFe2f26aa07ffde2f26aa0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDe2f26aa07ffde2f26aa0 /* px_globals.cpp */; }; + FFFFe2f2c1007ffde2f2c100 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c1007ffde2f2c100 /* PxsCCD.cpp */; }; + FFFFe2f2c1687ffde2f2c168 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c1687ffde2f2c168 /* PxsContactManager.cpp */; }; + FFFFe2f2c1d07ffde2f2c1d0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c1d07ffde2f2c1d0 /* PxsContext.cpp */; }; + FFFFe2f2c2387ffde2f2c238 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c2387ffde2f2c238 /* PxsDefaultMemoryManager.cpp */; }; + FFFFe2f2c2a07ffde2f2c2a0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c2a07ffde2f2c2a0 /* PxsIslandSim.cpp */; }; + FFFFe2f2c3087ffde2f2c308 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c3087ffde2f2c308 /* PxsMaterialCombiner.cpp */; }; + FFFFe2f2c3707ffde2f2c370 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c3707ffde2f2c370 /* PxsNphaseImplementationContext.cpp */; }; + FFFFe2f2c3d87ffde2f2c3d8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c3d87ffde2f2c3d8 /* PxsSimpleIslandManager.cpp */; }; + FFFFe3045e007ffde3045e00 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe3045e007ffde3045e00 /* collision/PxcContact.cpp */; }; + FFFFe3045e687ffde3045e68 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe3045e687ffde3045e68 /* pipeline/PxcContactCache.cpp */; }; + FFFFe3045ed07ffde3045ed0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe3045ed07ffde3045ed0 /* pipeline/PxcContactMethodImpl.cpp */; }; + FFFFe3045f387ffde3045f38 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe3045f387ffde3045f38 /* pipeline/PxcMaterialHeightField.cpp */; }; + FFFFe3045fa07ffde3045fa0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe3045fa07ffde3045fa0 /* pipeline/PxcMaterialMesh.cpp */; }; + FFFFe30460087ffde3046008 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30460087ffde3046008 /* pipeline/PxcMaterialMethodImpl.cpp */; }; + FFFFe30460707ffde3046070 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30460707ffde3046070 /* pipeline/PxcMaterialShape.cpp */; }; + FFFFe30460d87ffde30460d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30460d87ffde30460d8 /* pipeline/PxcNpBatch.cpp */; }; + FFFFe30461407ffde3046140 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30461407ffde3046140 /* pipeline/PxcNpCacheStreamPair.cpp */; }; + FFFFe30461a87ffde30461a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30461a87ffde30461a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; + FFFFe30462107ffde3046210 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30462107ffde3046210 /* pipeline/PxcNpMemBlockPool.cpp */; }; + FFFFe30462787ffde3046278 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30462787ffde3046278 /* pipeline/PxcNpThreadContext.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDb86f79707f87b86f7970 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDb85118407f87b8511840 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb8525ab07f87b8525ab0 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDb8525b187f87b8525b18 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDb8525b807f87b8525b80 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDb8525be87f87b8525be8 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDb8525c507f87b8525c50 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDb8525cb87f87b8525cb8 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDb8525d207f87b8525d20 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; - FFFDb8525d887f87b8525d88 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDb8525df07f87b8525df0 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFDb851ffa07f87b851ffa0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb85200087f87b8520008 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb85200707f87b8520070 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb85200d87f87b85200d8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb85201407f87b8520140 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb85201a87f87b85201a8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb85202107f87b8520210 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb85202787f87b8520278 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901ee007f87b901ee00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901ee687f87b901ee68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901eed07f87b901eed0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901ef387f87b901ef38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901efa07f87b901efa0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f0087f87b901f008 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f0707f87b901f070 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f0d87f87b901f0d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f1407f87b901f140 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f1a87f87b901f1a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f2107f87b901f210 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f2787f87b901f278 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f2e07f87b901f2e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f3487f87b901f348 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f3b07f87b901f3b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f4187f87b901f418 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f4807f87b901f480 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f4e87f87b901f4e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f5507f87b901f550 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901f5b87f87b901f5b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901d8007f87b901d800 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901d8687f87b901d868 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901d8d07f87b901d8d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901d9387f87b901d938 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901d9a07f87b901d9a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901da087f87b901da08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901da707f87b901da70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901dad87f87b901dad8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901db407f87b901db40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901dba87f87b901dba8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901dc107f87b901dc10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901dc787f87b901dc78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb901e0007f87b901e000 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e0687f87b901e068 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e0d07f87b901e0d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e1387f87b901e138 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e1a07f87b901e1a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e2087f87b901e208 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e2707f87b901e270 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e2d87f87b901e2d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e3407f87b901e340 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e3a87f87b901e3a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e4107f87b901e410 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e4787f87b901e478 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e4e07f87b901e4e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e5487f87b901e548 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDb901e5b07f87b901e5b0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f1a6b07ffde2f1a6b0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe2f26aa07ffde2f26aa0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2af807ffde2f2af80 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2afe87ffde2f2afe8 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2b0507ffde2f2b050 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2b0b87ffde2f2b0b8 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2b1207ffde2f2b120 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2b1887ffde2f2b188 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2b1f07ffde2f2b1f0 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2b2587ffde2f2b258 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2b2c07ffde2f2b2c0 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2c1007ffde2f2c100 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2c1687ffde2f2c168 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2c1d07ffde2f2c1d0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2c2387ffde2f2c238 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2c2a07ffde2f2c2a0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2c3087ffde2f2c308 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2c3707ffde2f2c370 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2f2c3d87ffde2f2c3d8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30454007ffde3045400 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30454687ffde3045468 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30454d07ffde30454d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30455387ffde3045538 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30455a07ffde30455a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30456087ffde3045608 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30456707ffde3045670 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30456d87ffde30456d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30457407ffde3045740 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30457a87ffde30457a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30458107ffde3045810 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30458787ffde3045878 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30458e07ffde30458e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30459487ffde3045948 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDe30459b07ffde30459b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3045a187ffde3045a18 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3045a807ffde3045a80 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3045ae87ffde3045ae8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3045b507ffde3045b50 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3045bb87ffde3045bb8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3045e007ffde3045e00 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3045e687ffde3045e68 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3045ed07ffde3045ed0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3045f387ffde3045f38 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3045fa07ffde3045fa0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30460087ffde3046008 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30460707ffde3046070 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30460d87ffde30460d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30461407ffde3046140 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30461a87ffde30461a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30462107ffde3046210 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe30462787ffde3046278 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe304d2007ffde304d200 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d2687ffde304d268 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d2d07ffde304d2d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d3387ffde304d338 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d3a07ffde304d3a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d4087ffde304d408 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d4707ffde304d470 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d4d87ffde304d4d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d5407ffde304d540 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d5a87ffde304d5a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d6107ffde304d610 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d6787ffde304d678 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d6e07ffde304d6e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d7487ffde304d748 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe304d7b07ffde304d7b0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2b86f79707f87b86f7970 /* Resources */ = { + FFF2e2f1a6b07ffde2f1a6b0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2415,7 +2415,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCb86f79707f87b86f7970 /* Frameworks */ = { + FFFCe2f1a6b07ffde2f1a6b0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2425,31 +2425,31 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8b86f79707f87b86f7970 /* Sources */ = { + FFF8e2f1a6b07ffde2f1a6b0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFb85118407f87b8511840, - FFFFb851ffa07f87b851ffa0, - FFFFb85200087f87b8520008, - FFFFb85200707f87b8520070, - FFFFb85200d87f87b85200d8, - FFFFb85201407f87b8520140, - FFFFb85201a87f87b85201a8, - FFFFb85202107f87b8520210, - FFFFb85202787f87b8520278, - FFFFb901d8007f87b901d800, - FFFFb901d8687f87b901d868, - FFFFb901d8d07f87b901d8d0, - FFFFb901d9387f87b901d938, - FFFFb901d9a07f87b901d9a0, - FFFFb901da087f87b901da08, - FFFFb901da707f87b901da70, - FFFFb901dad87f87b901dad8, - FFFFb901db407f87b901db40, - FFFFb901dba87f87b901dba8, - FFFFb901dc107f87b901dc10, - FFFFb901dc787f87b901dc78, + FFFFe2f26aa07ffde2f26aa0, + FFFFe2f2c1007ffde2f2c100, + FFFFe2f2c1687ffde2f2c168, + FFFFe2f2c1d07ffde2f2c1d0, + FFFFe2f2c2387ffde2f2c238, + FFFFe2f2c2a07ffde2f2c2a0, + FFFFe2f2c3087ffde2f2c308, + FFFFe2f2c3707ffde2f2c370, + FFFFe2f2c3d87ffde2f2c3d8, + FFFFe3045e007ffde3045e00, + FFFFe3045e687ffde3045e68, + FFFFe3045ed07ffde3045ed0, + FFFFe3045f387ffde3045f38, + FFFFe3045fa07ffde3045fa0, + FFFFe30460087ffde3046008, + FFFFe30460707ffde3046070, + FFFFe30460d87ffde30460d8, + FFFFe30461407ffde3046140, + FFFFe30461a87ffde30461a8, + FFFFe30462107ffde3046210, + FFFFe30462787ffde3046278, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2461,38 +2461,38 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelAABB */ - FFFFba80aa707f87ba80aa70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba80aa707f87ba80aa70 /* BpBroadPhase.cpp */; }; - FFFFba80aad87f87ba80aad8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba80aad87f87ba80aad8 /* BpBroadPhaseMBP.cpp */; }; - FFFFba80ab407f87ba80ab40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba80ab407f87ba80ab40 /* BpBroadPhaseSap.cpp */; }; - FFFFba80aba87f87ba80aba8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba80aba87f87ba80aba8 /* BpBroadPhaseSapAux.cpp */; }; - FFFFba80ac107f87ba80ac10 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba80ac107f87ba80ac10 /* BpMBPTasks.cpp */; }; - FFFFba80ac787f87ba80ac78 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba80ac787f87ba80ac78 /* BpSAPTasks.cpp */; }; - FFFFba80ace07f87ba80ace0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba80ace07f87ba80ace0 /* BpSimpleAABBManager.cpp */; }; + FFFFe3815c707ffde3815c70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815c707ffde3815c70 /* BpBroadPhase.cpp */; }; + FFFFe3815cd87ffde3815cd8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815cd87ffde3815cd8 /* BpBroadPhaseMBP.cpp */; }; + FFFFe3815d407ffde3815d40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815d407ffde3815d40 /* BpBroadPhaseSap.cpp */; }; + FFFFe3815da87ffde3815da8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815da87ffde3815da8 /* BpBroadPhaseSapAux.cpp */; }; + FFFFe3815e107ffde3815e10 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815e107ffde3815e10 /* BpMBPTasks.cpp */; }; + FFFFe3815e787ffde3815e78 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815e787ffde3815e78 /* BpSAPTasks.cpp */; }; + FFFFe3815ee07ffde3815ee0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815ee07ffde3815ee0 /* BpSimpleAABBManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDbd2378b07f87bd2378b0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDb9a4b1b07f87b9a4b1b0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9a4b2187f87b9a4b218 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9a4b2807f87b9a4b280 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9a4b2e87f87b9a4b2e8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80a8007f87ba80a800 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80a8687f87ba80a868 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80a8d07f87ba80a8d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80a9387f87ba80a938 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80a9a07f87ba80a9a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80aa087f87ba80aa08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80aa707f87ba80aa70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba80aad87f87ba80aad8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba80ab407f87ba80ab40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba80aba87f87ba80aba8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba80ac107f87ba80ac10 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba80ac787f87ba80ac78 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba80ace07f87ba80ace0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2d334507ffde2d33450 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe2d365f07ffde2d365f0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d366587ffde2d36658 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d366c07ffde2d366c0 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d367287ffde2d36728 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3815a007ffde3815a00 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3815a687ffde3815a68 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3815ad07ffde3815ad0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3815b387ffde3815b38 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3815ba07ffde3815ba0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3815c087ffde3815c08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3815c707ffde3815c70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3815cd87ffde3815cd8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3815d407ffde3815d40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3815da87ffde3815da8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3815e107ffde3815e10 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3815e787ffde3815e78 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe3815ee07ffde3815ee0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2bd2378b07f87bd2378b0 /* Resources */ = { + FFF2e2d334507ffde2d33450 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,7 +2502,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCbd2378b07f87bd2378b0 /* Frameworks */ = { + FFFCe2d334507ffde2d33450 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2512,17 +2512,17 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8bd2378b07f87bd2378b0 /* Sources */ = { + FFF8e2d334507ffde2d33450 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFba80aa707f87ba80aa70, - FFFFba80aad87f87ba80aad8, - FFFFba80ab407f87ba80ab40, - FFFFba80aba87f87ba80aba8, - FFFFba80ac107f87ba80ac10, - FFFFba80ac787f87ba80ac78, - FFFFba80ace07f87ba80ace0, + FFFFe3815c707ffde3815c70, + FFFFe3815cd87ffde3815cd8, + FFFFe3815d407ffde3815d40, + FFFFe3815da87ffde3815da8, + FFFFe3815e107ffde3815e10, + FFFFe3815e787ffde3815e78, + FFFFe3815ee07ffde3815ee0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2534,106 +2534,106 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelDynamics */ - FFFFbc0086007f87bc008600 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc0086007f87bc008600 /* DyArticulation.cpp */; }; - FFFFbc0086687f87bc008668 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc0086687f87bc008668 /* DyArticulationContactPrep.cpp */; }; - FFFFbc0086d07f87bc0086d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc0086d07f87bc0086d0 /* DyArticulationContactPrepPF.cpp */; }; - FFFFbc0087387f87bc008738 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc0087387f87bc008738 /* DyArticulationHelper.cpp */; }; - FFFFbc0087a07f87bc0087a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc0087a07f87bc0087a0 /* DyArticulationSIMD.cpp */; }; - FFFFbc0088087f87bc008808 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc0088087f87bc008808 /* DyArticulationScalar.cpp */; }; - FFFFbc0088707f87bc008870 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc0088707f87bc008870 /* DyConstraintPartition.cpp */; }; - FFFFbc0088d87f87bc0088d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc0088d87f87bc0088d8 /* DyConstraintSetup.cpp */; }; - FFFFbc0089407f87bc008940 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc0089407f87bc008940 /* DyConstraintSetupBlock.cpp */; }; - FFFFbc0089a87f87bc0089a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc0089a87f87bc0089a8 /* DyContactPrep.cpp */; }; - FFFFbc008a107f87bc008a10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008a107f87bc008a10 /* DyContactPrep4.cpp */; }; - FFFFbc008a787f87bc008a78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008a787f87bc008a78 /* DyContactPrep4PF.cpp */; }; - FFFFbc008ae07f87bc008ae0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008ae07f87bc008ae0 /* DyContactPrepPF.cpp */; }; - FFFFbc008b487f87bc008b48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008b487f87bc008b48 /* DyDynamics.cpp */; }; - FFFFbc008bb07f87bc008bb0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008bb07f87bc008bb0 /* DyFrictionCorrelation.cpp */; }; - FFFFbc008c187f87bc008c18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008c187f87bc008c18 /* DyRigidBodyToSolverBody.cpp */; }; - FFFFbc008c807f87bc008c80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008c807f87bc008c80 /* DySolverConstraints.cpp */; }; - FFFFbc008ce87f87bc008ce8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008ce87f87bc008ce8 /* DySolverConstraintsBlock.cpp */; }; - FFFFbc008d507f87bc008d50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008d507f87bc008d50 /* DySolverControl.cpp */; }; - FFFFbc008db87f87bc008db8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008db87f87bc008db8 /* DySolverControlPF.cpp */; }; - FFFFbc008e207f87bc008e20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008e207f87bc008e20 /* DySolverPFConstraints.cpp */; }; - FFFFbc008e887f87bc008e88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008e887f87bc008e88 /* DySolverPFConstraintsBlock.cpp */; }; - FFFFbc008ef07f87bc008ef0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008ef07f87bc008ef0 /* DyThreadContext.cpp */; }; - FFFFbc008f587f87bc008f58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDbc008f587f87bc008f58 /* DyThresholdTable.cpp */; }; + FFFFe38220007ffde3822000 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38220007ffde3822000 /* DyArticulation.cpp */; }; + FFFFe38220687ffde3822068 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38220687ffde3822068 /* DyArticulationContactPrep.cpp */; }; + FFFFe38220d07ffde38220d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38220d07ffde38220d0 /* DyArticulationContactPrepPF.cpp */; }; + FFFFe38221387ffde3822138 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38221387ffde3822138 /* DyArticulationHelper.cpp */; }; + FFFFe38221a07ffde38221a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38221a07ffde38221a0 /* DyArticulationSIMD.cpp */; }; + FFFFe38222087ffde3822208 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38222087ffde3822208 /* DyArticulationScalar.cpp */; }; + FFFFe38222707ffde3822270 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38222707ffde3822270 /* DyConstraintPartition.cpp */; }; + FFFFe38222d87ffde38222d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38222d87ffde38222d8 /* DyConstraintSetup.cpp */; }; + FFFFe38223407ffde3822340 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38223407ffde3822340 /* DyConstraintSetupBlock.cpp */; }; + FFFFe38223a87ffde38223a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38223a87ffde38223a8 /* DyContactPrep.cpp */; }; + FFFFe38224107ffde3822410 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38224107ffde3822410 /* DyContactPrep4.cpp */; }; + FFFFe38224787ffde3822478 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38224787ffde3822478 /* DyContactPrep4PF.cpp */; }; + FFFFe38224e07ffde38224e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38224e07ffde38224e0 /* DyContactPrepPF.cpp */; }; + FFFFe38225487ffde3822548 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38225487ffde3822548 /* DyDynamics.cpp */; }; + FFFFe38225b07ffde38225b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38225b07ffde38225b0 /* DyFrictionCorrelation.cpp */; }; + FFFFe38226187ffde3822618 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38226187ffde3822618 /* DyRigidBodyToSolverBody.cpp */; }; + FFFFe38226807ffde3822680 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38226807ffde3822680 /* DySolverConstraints.cpp */; }; + FFFFe38226e87ffde38226e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38226e87ffde38226e8 /* DySolverConstraintsBlock.cpp */; }; + FFFFe38227507ffde3822750 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38227507ffde3822750 /* DySolverControl.cpp */; }; + FFFFe38227b87ffde38227b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38227b87ffde38227b8 /* DySolverControlPF.cpp */; }; + FFFFe38228207ffde3822820 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38228207ffde3822820 /* DySolverPFConstraints.cpp */; }; + FFFFe38228887ffde3822888 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38228887ffde3822888 /* DySolverPFConstraintsBlock.cpp */; }; + FFFFe38228f07ffde38228f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38228f07ffde38228f0 /* DyThreadContext.cpp */; }; + FFFFe38229587ffde3822958 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38229587ffde3822958 /* DyThresholdTable.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDbd00c5a07f87bd00c5a0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDbc0086007f87bc008600 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc0086687f87bc008668 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc0086d07f87bc0086d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc0087387f87bc008738 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc0087a07f87bc0087a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc0088087f87bc008808 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc0088707f87bc008870 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc0088d87f87bc0088d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc0089407f87bc008940 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc0089a87f87bc0089a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008a107f87bc008a10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008a787f87bc008a78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008ae07f87bc008ae0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008b487f87bc008b48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008bb07f87bc008bb0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008c187f87bc008c18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008c807f87bc008c80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008ce87f87bc008ce8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008d507f87bc008d50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008db87f87bc008db8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008e207f87bc008e20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008e887f87bc008e88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008ef07f87bc008ef0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbc008f587f87bc008f58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDb9c8a7107f87b9c8a710 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9c8a7787f87b9c8a778 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9c8a7e07f87b9c8a7e0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9c8a8487f87b9c8a848 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9c8a8b07f87b9c8a8b0 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9c8a9187f87b9c8a918 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9c8a9807f87b9c8a980 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e2007f87ba80e200 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e2687f87ba80e268 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e2d07f87ba80e2d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e3387f87ba80e338 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e3a07f87ba80e3a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e4087f87ba80e408 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e4707f87ba80e470 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e4d87f87ba80e4d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e5407f87ba80e540 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e5a87f87ba80e5a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e6107f87ba80e610 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e6787f87ba80e678 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e6e07f87ba80e6e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e7487f87ba80e748 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e7b07f87ba80e7b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e8187f87ba80e818 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e8807f87ba80e880 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e8e87f87ba80e8e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e9507f87ba80e950 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80e9b87f87ba80e9b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80ea207f87ba80ea20 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80ea887f87ba80ea88 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80eaf07f87ba80eaf0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80eb587f87ba80eb58 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80ebc07f87ba80ebc0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80ec287f87ba80ec28 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80ec907f87ba80ec90 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80ecf87f87ba80ecf8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80ed607f87ba80ed60 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80edc87f87ba80edc8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80ee307f87ba80ee30 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80ee987f87ba80ee98 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80ef007f87ba80ef00 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80ef687f87ba80ef68 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80efd07f87ba80efd0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80f0387f87ba80f038 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; - FFFDba80f0a07f87ba80f0a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d544f07ffde2d544f0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe38220007ffde3822000 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38220687ffde3822068 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38220d07ffde38220d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38221387ffde3822138 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38221a07ffde38221a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38222087ffde3822208 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38222707ffde3822270 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38222d87ffde38222d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38223407ffde3822340 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38223a87ffde38223a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38224107ffde3822410 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38224787ffde3822478 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38224e07ffde38224e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38225487ffde3822548 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38225b07ffde38225b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38226187ffde3822618 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38226807ffde3822680 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38226e87ffde38226e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38227507ffde3822750 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38227b87ffde38227b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38228207ffde3822820 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38228887ffde3822888 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38228f07ffde38228f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe38229587ffde3822958 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2d51ff07ffde2d51ff0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d520587ffde2d52058 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d520c07ffde2d520c0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d521287ffde2d52128 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d521907ffde2d52190 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d521f87ffde2d521f8 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2d522607ffde2d52260 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38238007ffde3823800 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38238687ffde3823868 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38238d07ffde38238d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38239387ffde3823938 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38239a07ffde38239a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823a087ffde3823a08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823a707ffde3823a70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823ad87ffde3823ad8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823b407ffde3823b40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823ba87ffde3823ba8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823c107ffde3823c10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823c787ffde3823c78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823ce07ffde3823ce0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823d487ffde3823d48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823db07ffde3823db0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823e187ffde3823e18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823e807ffde3823e80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823ee87ffde3823ee8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823f507ffde3823f50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDe3823fb87ffde3823fb8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38240207ffde3824020 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38240887ffde3824088 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38240f07ffde38240f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38241587ffde3824158 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38241c07ffde38241c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38242287ffde3824228 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38242907ffde3824290 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38242f87ffde38242f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38243607ffde3824360 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38243c87ffde38243c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38244307ffde3824430 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38244987ffde3824498 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38245007ffde3824500 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38245687ffde3824568 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38245d07ffde38245d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38246387ffde3824638 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; + FFFDe38246a07ffde38246a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2bd00c5a07f87bd00c5a0 /* Resources */ = { + FFF2e2d544f07ffde2d544f0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2643,7 +2643,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCbd00c5a07f87bd00c5a0 /* Frameworks */ = { + FFFCe2d544f07ffde2d544f0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2653,34 +2653,34 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8bd00c5a07f87bd00c5a0 /* Sources */ = { + FFF8e2d544f07ffde2d544f0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFbc0086007f87bc008600, - FFFFbc0086687f87bc008668, - FFFFbc0086d07f87bc0086d0, - FFFFbc0087387f87bc008738, - FFFFbc0087a07f87bc0087a0, - FFFFbc0088087f87bc008808, - FFFFbc0088707f87bc008870, - FFFFbc0088d87f87bc0088d8, - FFFFbc0089407f87bc008940, - FFFFbc0089a87f87bc0089a8, - FFFFbc008a107f87bc008a10, - FFFFbc008a787f87bc008a78, - FFFFbc008ae07f87bc008ae0, - FFFFbc008b487f87bc008b48, - FFFFbc008bb07f87bc008bb0, - FFFFbc008c187f87bc008c18, - FFFFbc008c807f87bc008c80, - FFFFbc008ce87f87bc008ce8, - FFFFbc008d507f87bc008d50, - FFFFbc008db87f87bc008db8, - FFFFbc008e207f87bc008e20, - FFFFbc008e887f87bc008e88, - FFFFbc008ef07f87bc008ef0, - FFFFbc008f587f87bc008f58, + FFFFe38220007ffde3822000, + FFFFe38220687ffde3822068, + FFFFe38220d07ffde38220d0, + FFFFe38221387ffde3822138, + FFFFe38221a07ffde38221a0, + FFFFe38222087ffde3822208, + FFFFe38222707ffde3822270, + FFFFe38222d87ffde38222d8, + FFFFe38223407ffde3822340, + FFFFe38223a87ffde38223a8, + FFFFe38224107ffde3822410, + FFFFe38224787ffde3822478, + FFFFe38224e07ffde38224e0, + FFFFe38225487ffde3822548, + FFFFe38225b07ffde38225b0, + FFFFe38226187ffde3822618, + FFFFe38226807ffde3822680, + FFFFe38226e87ffde38226e8, + FFFFe38227507ffde3822750, + FFFFe38227b87ffde38227b8, + FFFFe38228207ffde3822820, + FFFFe38228887ffde3822888, + FFFFe38228f07ffde38228f0, + FFFFe38229587ffde3822958, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2692,70 +2692,70 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelCloth */ - FFFFba812f587f87ba812f58 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba812f587f87ba812f58 /* Allocator.cpp */; }; - FFFFba812fc07f87ba812fc0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba812fc07f87ba812fc0 /* Factory.cpp */; }; - FFFFba8130287f87ba813028 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8130287f87ba813028 /* PhaseConfig.cpp */; }; - FFFFba8130907f87ba813090 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8130907f87ba813090 /* SwCloth.cpp */; }; - FFFFba8130f87f87ba8130f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8130f87f87ba8130f8 /* SwClothData.cpp */; }; - FFFFba8131607f87ba813160 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8131607f87ba813160 /* SwCollision.cpp */; }; - FFFFba8131c87f87ba8131c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8131c87f87ba8131c8 /* SwFabric.cpp */; }; - FFFFba8132307f87ba813230 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8132307f87ba813230 /* SwFactory.cpp */; }; - FFFFba8132987f87ba813298 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8132987f87ba813298 /* SwInterCollision.cpp */; }; - FFFFba8133007f87ba813300 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8133007f87ba813300 /* SwSelfCollision.cpp */; }; - FFFFba8133687f87ba813368 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8133687f87ba813368 /* SwSolver.cpp */; }; - FFFFba8133d07f87ba8133d0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8133d07f87ba8133d0 /* SwSolverKernel.cpp */; }; - FFFFba8134387f87ba813438 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8134387f87ba813438 /* TripletScheduler.cpp */; }; + FFFFe21853587ffde2185358 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21853587ffde2185358 /* Allocator.cpp */; }; + FFFFe21853c07ffde21853c0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21853c07ffde21853c0 /* Factory.cpp */; }; + FFFFe21854287ffde2185428 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21854287ffde2185428 /* PhaseConfig.cpp */; }; + FFFFe21854907ffde2185490 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21854907ffde2185490 /* SwCloth.cpp */; }; + FFFFe21854f87ffde21854f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21854f87ffde21854f8 /* SwClothData.cpp */; }; + FFFFe21855607ffde2185560 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21855607ffde2185560 /* SwCollision.cpp */; }; + FFFFe21855c87ffde21855c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21855c87ffde21855c8 /* SwFabric.cpp */; }; + FFFFe21856307ffde2185630 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21856307ffde2185630 /* SwFactory.cpp */; }; + FFFFe21856987ffde2185698 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21856987ffde2185698 /* SwInterCollision.cpp */; }; + FFFFe21857007ffde2185700 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21857007ffde2185700 /* SwSelfCollision.cpp */; }; + FFFFe21857687ffde2185768 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21857687ffde2185768 /* SwSolver.cpp */; }; + FFFFe21857d07ffde21857d0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21857d07ffde21857d0 /* SwSolverKernel.cpp */; }; + FFFFe21858387ffde2185838 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21858387ffde2185838 /* TripletScheduler.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDbd0168307f87bd016830 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDb9a5e4007f87b9a5e400 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9a5e4687f87b9a5e468 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9a5e4d07f87b9a5e4d0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9a5e5387f87b9a5e538 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9a5e5a07f87b9a5e5a0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9a5e6087f87b9a5e608 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9a5e6707f87b9a5e670 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8126007f87ba812600 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8126687f87ba812668 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8126d07f87ba8126d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8127387f87ba812738 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8127a07f87ba8127a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8128087f87ba812808 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8128707f87ba812870 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8128d87f87ba8128d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8129407f87ba812940 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; - FFFDba8129a87f87ba8129a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812a107f87ba812a10 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812a787f87ba812a78 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812ae07f87ba812ae0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812b487f87ba812b48 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812bb07f87ba812bb0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812c187f87ba812c18 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812c807f87ba812c80 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812ce87f87ba812ce8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812d507f87ba812d50 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812db87f87ba812db8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812e207f87ba812e20 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812e887f87ba812e88 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812ef07f87ba812ef0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; - FFFDba812f587f87ba812f58 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba812fc07f87ba812fc0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8130287f87ba813028 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8130907f87ba813090 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8130f87f87ba8130f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8131607f87ba813160 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8131c87f87ba8131c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8132307f87ba813230 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8132987f87ba813298 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8133007f87ba813300 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8133687f87ba813368 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8133d07f87ba8133d0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDba8134387f87ba813438 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe292cb407ffde292cb40 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe292a0807ffde292a080 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDe292a0e87ffde292a0e8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDe292a1507ffde292a150 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; + FFFDe292a1b87ffde292a1b8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDe292a2207ffde292a220 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; + FFFDe292a2887ffde292a288 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; + FFFDe292a2f07ffde292a2f0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184a007ffde2184a00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184a687ffde2184a68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184ad07ffde2184ad0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184b387ffde2184b38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184ba07ffde2184ba0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184c087ffde2184c08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184c707ffde2184c70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184cd87ffde2184cd8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184d407ffde2184d40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184da87ffde2184da8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184e107ffde2184e10 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184e787ffde2184e78 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184ee07ffde2184ee0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184f487ffde2184f48 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2184fb07ffde2184fb0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21850187ffde2185018 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21850807ffde2185080 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21850e87ffde21850e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21851507ffde2185150 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21851b87ffde21851b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21852207ffde2185220 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21852887ffde2185288 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21852f07ffde21852f0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; + FFFDe21853587ffde2185358 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21853c07ffde21853c0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21854287ffde2185428 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21854907ffde2185490 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21854f87ffde21854f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21855607ffde2185560 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21855c87ffde21855c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21856307ffde2185630 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21856987ffde2185698 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21857007ffde2185700 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21857687ffde2185768 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21857d07ffde21857d0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe21858387ffde2185838 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2bd0168307f87bd016830 /* Resources */ = { + FFF2e292cb407ffde292cb40 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2765,7 +2765,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCbd0168307f87bd016830 /* Frameworks */ = { + FFFCe292cb407ffde292cb40 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2775,23 +2775,23 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8bd0168307f87bd016830 /* Sources */ = { + FFF8e292cb407ffde292cb40 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFba812f587f87ba812f58, - FFFFba812fc07f87ba812fc0, - FFFFba8130287f87ba813028, - FFFFba8130907f87ba813090, - FFFFba8130f87f87ba8130f8, - FFFFba8131607f87ba813160, - FFFFba8131c87f87ba8131c8, - FFFFba8132307f87ba813230, - FFFFba8132987f87ba813298, - FFFFba8133007f87ba813300, - FFFFba8133687f87ba813368, - FFFFba8133d07f87ba8133d0, - FFFFba8134387f87ba813438, + FFFFe21853587ffde2185358, + FFFFe21853c07ffde21853c0, + FFFFe21854287ffde2185428, + FFFFe21854907ffde2185490, + FFFFe21854f87ffde21854f8, + FFFFe21855607ffde2185560, + FFFFe21855c87ffde21855c8, + FFFFe21856307ffde2185630, + FFFFe21856987ffde2185698, + FFFFe21857007ffde2185700, + FFFFe21857687ffde2185768, + FFFFe21857d07ffde21857d0, + FFFFe21858387ffde2185838, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2803,79 +2803,79 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelParticles */ - FFFFbb810b587f87bb810b58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb810b587f87bb810b58 /* PtBatcher.cpp */; }; - FFFFbb810bc07f87bb810bc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb810bc07f87bb810bc0 /* PtBodyTransformVault.cpp */; }; - FFFFbb810c287f87bb810c28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb810c287f87bb810c28 /* PtCollision.cpp */; }; - FFFFbb810c907f87bb810c90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb810c907f87bb810c90 /* PtCollisionBox.cpp */; }; - FFFFbb810cf87f87bb810cf8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb810cf87f87bb810cf8 /* PtCollisionCapsule.cpp */; }; - FFFFbb810d607f87bb810d60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb810d607f87bb810d60 /* PtCollisionConvex.cpp */; }; - FFFFbb810dc87f87bb810dc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb810dc87f87bb810dc8 /* PtCollisionMesh.cpp */; }; - FFFFbb810e307f87bb810e30 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb810e307f87bb810e30 /* PtCollisionPlane.cpp */; }; - FFFFbb810e987f87bb810e98 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb810e987f87bb810e98 /* PtCollisionSphere.cpp */; }; - FFFFbb810f007f87bb810f00 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb810f007f87bb810f00 /* PtContextCpu.cpp */; }; - FFFFbb810f687f87bb810f68 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb810f687f87bb810f68 /* PtDynamics.cpp */; }; - FFFFbb810fd07f87bb810fd0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb810fd07f87bb810fd0 /* PtParticleData.cpp */; }; - FFFFbb8110387f87bb811038 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8110387f87bb811038 /* PtParticleShapeCpu.cpp */; }; - FFFFbb8110a07f87bb8110a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8110a07f87bb8110a0 /* PtParticleSystemSimCpu.cpp */; }; - FFFFbb8111087f87bb811108 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8111087f87bb811108 /* PtSpatialHash.cpp */; }; - FFFFbb8111707f87bb811170 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb8111707f87bb811170 /* PtSpatialLocalHash.cpp */; }; + FFFFe1822d587ffde1822d58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822d587ffde1822d58 /* PtBatcher.cpp */; }; + FFFFe1822dc07ffde1822dc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822dc07ffde1822dc0 /* PtBodyTransformVault.cpp */; }; + FFFFe1822e287ffde1822e28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822e287ffde1822e28 /* PtCollision.cpp */; }; + FFFFe1822e907ffde1822e90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822e907ffde1822e90 /* PtCollisionBox.cpp */; }; + FFFFe1822ef87ffde1822ef8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822ef87ffde1822ef8 /* PtCollisionCapsule.cpp */; }; + FFFFe1822f607ffde1822f60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822f607ffde1822f60 /* PtCollisionConvex.cpp */; }; + FFFFe1822fc87ffde1822fc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822fc87ffde1822fc8 /* PtCollisionMesh.cpp */; }; + FFFFe18230307ffde1823030 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18230307ffde1823030 /* PtCollisionPlane.cpp */; }; + FFFFe18230987ffde1823098 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18230987ffde1823098 /* PtCollisionSphere.cpp */; }; + FFFFe18231007ffde1823100 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18231007ffde1823100 /* PtContextCpu.cpp */; }; + FFFFe18231687ffde1823168 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18231687ffde1823168 /* PtDynamics.cpp */; }; + FFFFe18231d07ffde18231d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18231d07ffde18231d0 /* PtParticleData.cpp */; }; + FFFFe18232387ffde1823238 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18232387ffde1823238 /* PtParticleShapeCpu.cpp */; }; + FFFFe18232a07ffde18232a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18232a07ffde18232a0 /* PtParticleSystemSimCpu.cpp */; }; + FFFFe18233087ffde1823308 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18233087ffde1823308 /* PtSpatialHash.cpp */; }; + FFFFe18233707ffde1823370 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18233707ffde1823370 /* PtSpatialLocalHash.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDb85369107f87b8536910 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDbc0098007f87bc009800 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc0098687f87bc009868 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc0098d07f87bc0098d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc0099387f87bc009938 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc0099a07f87bc0099a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc009a087f87bc009a08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc009a707f87bc009a70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc009ad87f87bc009ad8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc009b407f87bc009b40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDbc009ba87f87bc009ba8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8102007f87bb810200 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8102687f87bb810268 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8102d07f87bb8102d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8103387f87bb810338 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8103a07f87bb8103a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8104087f87bb810408 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8104707f87bb810470 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8104d87f87bb8104d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8105407f87bb810540 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8105a87f87bb8105a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8106107f87bb810610 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8106787f87bb810678 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8106e07f87bb8106e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8107487f87bb810748 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8107b07f87bb8107b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8108187f87bb810818 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8108807f87bb810880 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8108e87f87bb8108e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8109507f87bb810950 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb8109b87f87bb8109b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb810a207f87bb810a20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb810a887f87bb810a88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb810af07f87bb810af0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; - FFFDbb810b587f87bb810b58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb810bc07f87bb810bc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb810c287f87bb810c28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb810c907f87bb810c90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb810cf87f87bb810cf8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb810d607f87bb810d60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb810dc87f87bb810dc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb810e307f87bb810e30 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb810e987f87bb810e98 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb810f007f87bb810f00 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb810f687f87bb810f68 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb810fd07f87bb810fd0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8110387f87bb811038 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8110a07f87bb8110a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8111087f87bb811108 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDbb8111707f87bb811170 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe1484d707ffde1484d70 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe18178007ffde1817800 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18178687ffde1817868 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18178d07ffde18178d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18179387ffde1817938 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18179a07ffde18179a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1817a087ffde1817a08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1817a707ffde1817a70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1817ad87ffde1817ad8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1817b407ffde1817b40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1817ba87ffde1817ba8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18224007ffde1822400 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18224687ffde1822468 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18224d07ffde18224d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18225387ffde1822538 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18225a07ffde18225a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18226087ffde1822608 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18226707ffde1822670 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18226d87ffde18226d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18227407ffde1822740 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18227a87ffde18227a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18228107ffde1822810 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18228787ffde1822878 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18228e07ffde18228e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18229487ffde1822948 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; + FFFDe18229b07ffde18229b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1822a187ffde1822a18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1822a807ffde1822a80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1822ae87ffde1822ae8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1822b507ffde1822b50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1822bb87ffde1822bb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1822c207ffde1822c20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1822c887ffde1822c88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1822cf07ffde1822cf0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; + FFFDe1822d587ffde1822d58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe1822dc07ffde1822dc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe1822e287ffde1822e28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe1822e907ffde1822e90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe1822ef87ffde1822ef8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe1822f607ffde1822f60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe1822fc87ffde1822fc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe18230307ffde1823030 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe18230987ffde1823098 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe18231007ffde1823100 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe18231687ffde1823168 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe18231d07ffde18231d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe18232387ffde1823238 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe18232a07ffde18232a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe18233087ffde1823308 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe18233707ffde1823370 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2b85369107f87b8536910 /* Resources */ = { + FFF2e1484d707ffde1484d70 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2885,7 +2885,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCb85369107f87b8536910 /* Frameworks */ = { + FFFCe1484d707ffde1484d70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2895,26 +2895,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8b85369107f87b8536910 /* Sources */ = { + FFF8e1484d707ffde1484d70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFbb810b587f87bb810b58, - FFFFbb810bc07f87bb810bc0, - FFFFbb810c287f87bb810c28, - FFFFbb810c907f87bb810c90, - FFFFbb810cf87f87bb810cf8, - FFFFbb810d607f87bb810d60, - FFFFbb810dc87f87bb810dc8, - FFFFbb810e307f87bb810e30, - FFFFbb810e987f87bb810e98, - FFFFbb810f007f87bb810f00, - FFFFbb810f687f87bb810f68, - FFFFbb810fd07f87bb810fd0, - FFFFbb8110387f87bb811038, - FFFFbb8110a07f87bb8110a0, - FFFFbb8111087f87bb811108, - FFFFbb8111707f87bb811170, + FFFFe1822d587ffde1822d58, + FFFFe1822dc07ffde1822dc0, + FFFFe1822e287ffde1822e28, + FFFFe1822e907ffde1822e90, + FFFFe1822ef87ffde1822ef8, + FFFFe1822f607ffde1822f60, + FFFFe1822fc87ffde1822fc8, + FFFFe18230307ffde1823030, + FFFFe18230987ffde1823098, + FFFFe18231007ffde1823100, + FFFFe18231687ffde1823168, + FFFFe18231d07ffde18231d0, + FFFFe18232387ffde1823238, + FFFFe18232a07ffde18232a0, + FFFFe18233087ffde1823308, + FFFFe18233707ffde1823370, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2926,22 +2926,22 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxTask */ - FFFFb9b657007f87b9b65700 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9b657007f87b9b65700 /* src/TaskManager.cpp */; }; + FFFFe2f4e2807ffde2f4e280 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2f4e2807ffde2f4e280 /* src/TaskManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDb9b1cd207f87b9b1cd20 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDb9b405807f87b9b40580 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9b405e87f87b9b405e8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9b406507f87b9b40650 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9b406b87f87b9b406b8 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9b407207f87b9b40720 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9b407887f87b9b40788 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDb9b657007f87b9b65700 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2f4cec07ffde2f4cec0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe2f4e0107ffde2f4e010 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f4e0787ffde2f4e078 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f4e0e07ffde2f4e0e0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f4e1487ffde2f4e148 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f4e1b07ffde2f4e1b0 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f4e2187ffde2f4e218 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDe2f4e2807ffde2f4e280 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2b9b1cd207f87b9b1cd20 /* Resources */ = { + FFF2e2f4cec07ffde2f4cec0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2951,7 +2951,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCb9b1cd207f87b9b1cd20 /* Frameworks */ = { + FFFCe2f4cec07ffde2f4cec0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2961,11 +2961,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8b9b1cd207f87b9b1cd20 /* Sources */ = { + FFF8e2f4cec07ffde2f4cec0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFb9b657007f87b9b65700, + FFFFe2f4e2807ffde2f4e280, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2977,17 +2977,17 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PsFastXml */ - FFFFb85c6a107f87b85c6a10 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb85c6a107f87b85c6a10 /* PsFastXml.cpp */; }; + FFFFe29434907ffde2943490 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe29434907ffde2943490 /* PsFastXml.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDb85c61b07f87b85c61b0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDb85c69107f87b85c6910 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; - FFFDb85c6a107f87b85c6a10 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDe2942d107ffde2942d10 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDe29433907ffde2943390 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; + FFFDe29434907ffde2943490 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2b85c61b07f87b85c61b0 /* Resources */ = { + FFF2e2942d107ffde2942d10 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2997,7 +2997,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCb85c61b07f87b85c61b0 /* Frameworks */ = { + FFFCe2942d107ffde2942d10 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3007,11 +3007,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8b85c61b07f87b85c61b0 /* Sources */ = { + FFF8e2942d107ffde2942d10 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFb85c6a107f87b85c6a10, + FFFFe29434907ffde2943490, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3023,1967 +3023,1967 @@ /* End PBXTargetDependency section */ /* Begin PBXContainerItemProxy section */ - FFF5b9b18ce07f87b9b18ce0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e29464b07ffde29464b0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAb9b18ce07f87b9b18ce0 /* PhysX */; + remoteGlobalIDString = FFFAe29464b07ffde29464b0 /* PhysX */; remoteInfo = "PhysX"; }; - FFF5bd2c56a07f87bd2c56a0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e294ef707ffde294ef70 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAbd2c56a07f87bd2c56a0 /* PhysXCharacterKinematic */; + remoteGlobalIDString = FFFAe294ef707ffde294ef70 /* PhysXCharacterKinematic */; remoteInfo = "PhysXCharacterKinematic"; }; - FFF5bd07bfb07f87bd07bfb0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e29504707ffde2950470 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAbd07bfb07f87bd07bfb0 /* PhysXVehicle */; + remoteGlobalIDString = FFFAe29504707ffde2950470 /* PhysXVehicle */; remoteInfo = "PhysXVehicle"; }; - FFF5b9ac2fb07f87b9ac2fb0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e29617f07ffde29617f0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAb9ac2fb07f87b9ac2fb0 /* PhysXExtensions */; + remoteGlobalIDString = FFFAe29617f07ffde29617f0 /* PhysXExtensions */; remoteInfo = "PhysXExtensions"; }; - FFF5b9b326907f87b9b32690 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e450b7207ffde450b720 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAb9b326907f87b9b32690 /* SceneQuery */; + remoteGlobalIDString = FFFAe450b7207ffde450b720 /* SceneQuery */; remoteInfo = "SceneQuery"; }; - FFF5b9b2f6c07f87b9b2f6c0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e450fbf07ffde450fbf0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAb9b2f6c07f87b9b2f6c0 /* SimulationController */; + remoteGlobalIDString = FFFAe450fbf07ffde450fbf0 /* SimulationController */; remoteInfo = "SimulationController"; }; - FFF5bd3609d07f87bd3609d0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e2d74eb07ffde2d74eb0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAbd3609d07f87bd3609d0 /* PhysXCooking */; + remoteGlobalIDString = FFFAe2d74eb07ffde2d74eb0 /* PhysXCooking */; remoteInfo = "PhysXCooking"; }; - FFF5b85164f07f87b85164f0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e2c17a107ffde2c17a10 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAb85164f07f87b85164f0 /* PhysXCommon */; + remoteGlobalIDString = FFFAe2c17a107ffde2c17a10 /* PhysXCommon */; remoteInfo = "PhysXCommon"; }; - FFF5b8500ad07f87b8500ad0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e2c0b7d07ffde2c0b7d0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAb8500ad07f87b8500ad0 /* PxFoundation */; + remoteGlobalIDString = FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */; remoteInfo = "PxFoundation"; }; - FFF5b9b082f07f87b9b082f0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e29691807ffde2969180 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAb9b082f07f87b9b082f0 /* PxPvdSDK */; + remoteGlobalIDString = FFFAe29691807ffde2969180 /* PxPvdSDK */; remoteInfo = "PxPvdSDK"; }; - FFF5b86f79707f87b86f7970 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e2f1a6b07ffde2f1a6b0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAb86f79707f87b86f7970 /* LowLevel */; + remoteGlobalIDString = FFFAe2f1a6b07ffde2f1a6b0 /* LowLevel */; remoteInfo = "LowLevel"; }; - FFF5bd2378b07f87bd2378b0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e2d334507ffde2d33450 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAbd2378b07f87bd2378b0 /* LowLevelAABB */; + remoteGlobalIDString = FFFAe2d334507ffde2d33450 /* LowLevelAABB */; remoteInfo = "LowLevelAABB"; }; - FFF5bd00c5a07f87bd00c5a0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e2d544f07ffde2d544f0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAbd00c5a07f87bd00c5a0 /* LowLevelDynamics */; + remoteGlobalIDString = FFFAe2d544f07ffde2d544f0 /* LowLevelDynamics */; remoteInfo = "LowLevelDynamics"; }; - FFF5bd0168307f87bd016830 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e292cb407ffde292cb40 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAbd0168307f87bd016830 /* LowLevelCloth */; + remoteGlobalIDString = FFFAe292cb407ffde292cb40 /* LowLevelCloth */; remoteInfo = "LowLevelCloth"; }; - FFF5b85369107f87b8536910 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e1484d707ffde1484d70 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAb85369107f87b8536910 /* LowLevelParticles */; + remoteGlobalIDString = FFFAe1484d707ffde1484d70 /* LowLevelParticles */; remoteInfo = "LowLevelParticles"; }; - FFF5b9b1cd207f87b9b1cd20 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e2f4cec07ffde2f4cec0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAb9b1cd207f87b9b1cd20 /* PxTask */; + remoteGlobalIDString = FFFAe2f4cec07ffde2f4cec0 /* PxTask */; remoteInfo = "PxTask"; }; - FFF5b85c61b07f87b85c61b0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9b980f9b07f87b980f9b0 /* Project object */; + FFF5e2942d107ffde2942d10 /* PBXContainerItemProxy */ = { + containerPortal = FFF9e170df007ffde170df00 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAb85c61b07f87b85c61b0 /* PsFastXml */; + remoteGlobalIDString = FFFAe2942d107ffde2942d10 /* PsFastXml */; remoteInfo = "PsFastXml"; }; /* End PBXContainerItemProxy section */ /* Begin PBXGroup section */ - FFFBb980fa187f87b980fa18 /* PhysX */ = { + FFFBe170df687ffde170df68 /* PhysX */ = { isa = PBXGroup; children = ( - FFF0b980f9b07f87b980f9b0 /* Source */, - FFEEb980f9b07f87b980f9b0 /* Products */, + FFF0e170df007ffde170df00 /* Source */, + FFEEe170df007ffde170df00 /* Products */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFF0b980f9b07f87b980f9b0 /* Source */ = { + FFF0e170df007ffde170df00 /* Source */ = { isa = PBXGroup; children = ( - FFFBb9b18ce07f87b9b18ce0, - FFFBbd2c56a07f87bd2c56a0, - FFFBbd07bfb07f87bd07bfb0, - FFFBb9ac2fb07f87b9ac2fb0, - FFFBb9b326907f87b9b32690, - FFFBb9b2f6c07f87b9b2f6c0, - FFFBbd3609d07f87bd3609d0, - FFFBb85164f07f87b85164f0, - FFFBb8500ad07f87b8500ad0, - FFFBb9b082f07f87b9b082f0, - FFFBb86f79707f87b86f7970, - FFFBbd2378b07f87bd2378b0, - FFFBbd00c5a07f87bd00c5a0, - FFFBbd0168307f87bd016830, - FFFBb85369107f87b8536910, - FFFBb9b1cd207f87b9b1cd20, - FFFBb85c61b07f87b85c61b0, + FFFBe29464b07ffde29464b0, + FFFBe294ef707ffde294ef70, + FFFBe29504707ffde2950470, + FFFBe29617f07ffde29617f0, + FFFBe450b7207ffde450b720, + FFFBe450fbf07ffde450fbf0, + FFFBe2d74eb07ffde2d74eb0, + FFFBe2c17a107ffde2c17a10, + FFFBe2c0b7d07ffde2c0b7d0, + FFFBe29691807ffde2969180, + FFFBe2f1a6b07ffde2f1a6b0, + FFFBe2d334507ffde2d33450, + FFFBe2d544f07ffde2d544f0, + FFFBe292cb407ffde292cb40, + FFFBe1484d707ffde1484d70, + FFFBe2f4cec07ffde2f4cec0, + FFFBe2942d107ffde2942d10, ); name = Source; sourceTree = "<group>"; }; - FFEEb980f9b07f87b980f9b0 /* Products */ = { + FFEEe170df007ffde170df00 /* Products */ = { isa = PBXGroup; children = ( - FFFDb9b18ce07f87b9b18ce0, - FFFDbd2c56a07f87bd2c56a0, - FFFDbd07bfb07f87bd07bfb0, - FFFDb9ac2fb07f87b9ac2fb0, - FFFDb9b326907f87b9b32690, - FFFDb9b2f6c07f87b9b2f6c0, - FFFDbd3609d07f87bd3609d0, - FFFDb85164f07f87b85164f0, - FFFDb8500ad07f87b8500ad0, - FFFDb9b082f07f87b9b082f0, - FFFDb86f79707f87b86f7970, - FFFDbd2378b07f87bd2378b0, - FFFDbd00c5a07f87bd00c5a0, - FFFDbd0168307f87bd016830, - FFFDb85369107f87b8536910, - FFFDb9b1cd207f87b9b1cd20, - FFFDb85c61b07f87b85c61b0, + FFFDe29464b07ffde29464b0, + FFFDe294ef707ffde294ef70, + FFFDe29504707ffde2950470, + FFFDe29617f07ffde29617f0, + FFFDe450b7207ffde450b720, + FFFDe450fbf07ffde450fbf0, + FFFDe2d74eb07ffde2d74eb0, + FFFDe2c17a107ffde2c17a10, + FFFDe2c0b7d07ffde2c0b7d0, + FFFDe29691807ffde2969180, + FFFDe2f1a6b07ffde2f1a6b0, + FFFDe2d334507ffde2d33450, + FFFDe2d544f07ffde2d544f0, + FFFDe292cb407ffde292cb40, + FFFDe1484d707ffde1484d70, + FFFDe2f4cec07ffde2f4cec0, + FFFDe2942d107ffde2942d10, ); name = Products; sourceTree = "<group>"; }; - FFFBb9b18ce07f87b9b18ce0 /* PhysX */ = { + FFFBe29464b07ffde29464b0 /* PhysX */ = { isa = PBXGroup; children = ( - FFFBbd2be1207f87bd2be120 /* src */, - FFFBbd2be1487f87bd2be148 /* include */, - FFFBbd2be1707f87bd2be170 /* metadata */, + FFFBe2956d507ffde2956d50 /* src */, + FFFBe2956d787ffde2956d78 /* include */, + FFFBe2956da07ffde2956da0 /* metadata */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFFBbd2be1207f87bd2be120 /* src */ = { + FFFBe2956d507ffde2956d50 /* src */ = { isa = PBXGroup; children = ( - FFFDba0756007f87ba075600 /* NpActor.h */, - FFFDba0756687f87ba075668 /* NpActorTemplate.h */, - FFFDba0756d07f87ba0756d0 /* NpAggregate.h */, - FFFDba0757387f87ba075738 /* NpArticulation.h */, - FFFDba0757a07f87ba0757a0 /* NpArticulationJoint.h */, - FFFDba0758087f87ba075808 /* NpArticulationLink.h */, - FFFDba0758707f87ba075870 /* NpBatchQuery.h */, - FFFDba0758d87f87ba0758d8 /* NpCast.h */, - FFFDba0759407f87ba075940 /* NpConnector.h */, - FFFDba0759a87f87ba0759a8 /* NpConstraint.h */, - FFFDba075a107f87ba075a10 /* NpFactory.h */, - FFFDba075a787f87ba075a78 /* NpMaterial.h */, - FFFDba075ae07f87ba075ae0 /* NpMaterialManager.h */, - FFFDba075b487f87ba075b48 /* NpPhysics.h */, - FFFDba075bb07f87ba075bb0 /* NpPhysicsInsertionCallback.h */, - FFFDba075c187f87ba075c18 /* NpPtrTableStorageManager.h */, - FFFDba075c807f87ba075c80 /* NpPvdSceneQueryCollector.h */, - FFFDba075ce87f87ba075ce8 /* NpQueryShared.h */, - FFFDba075d507f87ba075d50 /* NpReadCheck.h */, - FFFDba075db87f87ba075db8 /* NpRigidActorTemplate.h */, - FFFDba075e207f87ba075e20 /* NpRigidActorTemplateInternal.h */, - FFFDba075e887f87ba075e88 /* NpRigidBodyTemplate.h */, - FFFDba075ef07f87ba075ef0 /* NpRigidDynamic.h */, - FFFDba075f587f87ba075f58 /* NpRigidStatic.h */, - FFFDba075fc07f87ba075fc0 /* NpScene.h */, - FFFDba0760287f87ba076028 /* NpSceneQueries.h */, - FFFDba0760907f87ba076090 /* NpShape.h */, - FFFDba0760f87f87ba0760f8 /* NpShapeManager.h */, - FFFDba0761607f87ba076160 /* NpSpatialIndex.h */, - FFFDba0761c87f87ba0761c8 /* NpVolumeCache.h */, - FFFDba0762307f87ba076230 /* NpWriteCheck.h */, - FFFDba0762987f87ba076298 /* PvdMetaDataBindingData.h */, - FFFDba0763007f87ba076300 /* PvdMetaDataPvdBinding.h */, - FFFDba0763687f87ba076368 /* PvdPhysicsClient.h */, - FFFDba0763d07f87ba0763d0 /* PvdTypeNames.h */, - FFFDba0764387f87ba076438 /* NpActor.cpp */, - FFFDba0764a07f87ba0764a0 /* NpAggregate.cpp */, - FFFDba0765087f87ba076508 /* NpArticulation.cpp */, - FFFDba0765707f87ba076570 /* NpArticulationJoint.cpp */, - FFFDba0765d87f87ba0765d8 /* NpArticulationLink.cpp */, - FFFDba0766407f87ba076640 /* NpBatchQuery.cpp */, - FFFDba0766a87f87ba0766a8 /* NpConstraint.cpp */, - FFFDba0767107f87ba076710 /* NpFactory.cpp */, - FFFDba0767787f87ba076778 /* NpMaterial.cpp */, - FFFDba0767e07f87ba0767e0 /* NpMetaData.cpp */, - FFFDba0768487f87ba076848 /* NpPhysics.cpp */, - FFFDba0768b07f87ba0768b0 /* NpPvdSceneQueryCollector.cpp */, - FFFDba0769187f87ba076918 /* NpReadCheck.cpp */, - FFFDba0769807f87ba076980 /* NpRigidDynamic.cpp */, - FFFDba0769e87f87ba0769e8 /* NpRigidStatic.cpp */, - FFFDba076a507f87ba076a50 /* NpScene.cpp */, - FFFDba076ab87f87ba076ab8 /* NpSceneQueries.cpp */, - FFFDba076b207f87ba076b20 /* NpSerializerAdapter.cpp */, - FFFDba076b887f87ba076b88 /* NpShape.cpp */, - FFFDba076bf07f87ba076bf0 /* NpShapeManager.cpp */, - FFFDba076c587f87ba076c58 /* NpSpatialIndex.cpp */, - FFFDba076cc07f87ba076cc0 /* NpVolumeCache.cpp */, - FFFDba076d287f87ba076d28 /* NpWriteCheck.cpp */, - FFFDba076d907f87ba076d90 /* PvdMetaDataPvdBinding.cpp */, - FFFDba076df87f87ba076df8 /* PvdPhysicsClient.cpp */, - FFFDba076e607f87ba076e60 /* particles/NpParticleBaseTemplate.h */, - FFFDba076ec87f87ba076ec8 /* particles/NpParticleFluid.h */, - FFFDba076f307f87ba076f30 /* particles/NpParticleFluidReadData.h */, - FFFDba076f987f87ba076f98 /* particles/NpParticleSystem.h */, - FFFDba0770007f87ba077000 /* particles/NpParticleFluid.cpp */, - FFFDba0770687f87ba077068 /* particles/NpParticleSystem.cpp */, - FFFDba0770d07f87ba0770d0 /* buffering/ScbActor.h */, - FFFDba0771387f87ba077138 /* buffering/ScbAggregate.h */, - FFFDba0771a07f87ba0771a0 /* buffering/ScbArticulation.h */, - FFFDba0772087f87ba077208 /* buffering/ScbArticulationJoint.h */, - FFFDba0772707f87ba077270 /* buffering/ScbBase.h */, - FFFDba0772d87f87ba0772d8 /* buffering/ScbBody.h */, - FFFDba0773407f87ba077340 /* buffering/ScbCloth.h */, - FFFDba0773a87f87ba0773a8 /* buffering/ScbConstraint.h */, - FFFDba0774107f87ba077410 /* buffering/ScbDefs.h */, - FFFDba0774787f87ba077478 /* buffering/ScbNpDeps.h */, - FFFDba0774e07f87ba0774e0 /* buffering/ScbParticleSystem.h */, - FFFDba0775487f87ba077548 /* buffering/ScbRigidObject.h */, - FFFDba0775b07f87ba0775b0 /* buffering/ScbRigidStatic.h */, - FFFDba0776187f87ba077618 /* buffering/ScbScene.h */, - FFFDba0776807f87ba077680 /* buffering/ScbSceneBuffer.h */, - FFFDba0776e87f87ba0776e8 /* buffering/ScbScenePvdClient.h */, - FFFDba0777507f87ba077750 /* buffering/ScbShape.h */, - FFFDba0777b87f87ba0777b8 /* buffering/ScbType.h */, - FFFDba0778207f87ba077820 /* buffering/ScbActor.cpp */, - FFFDba0778887f87ba077888 /* buffering/ScbAggregate.cpp */, - FFFDba0778f07f87ba0778f0 /* buffering/ScbBase.cpp */, - FFFDba0779587f87ba077958 /* buffering/ScbCloth.cpp */, - FFFDba0779c07f87ba0779c0 /* buffering/ScbMetaData.cpp */, - FFFDba077a287f87ba077a28 /* buffering/ScbParticleSystem.cpp */, - FFFDba077a907f87ba077a90 /* buffering/ScbScene.cpp */, - FFFDba077af87f87ba077af8 /* buffering/ScbScenePvdClient.cpp */, - FFFDba077b607f87ba077b60 /* buffering/ScbShape.cpp */, - FFFDba077bc87f87ba077bc8 /* cloth/NpCloth.h */, - FFFDba077c307f87ba077c30 /* cloth/NpClothFabric.h */, - FFFDba077c987f87ba077c98 /* cloth/NpClothParticleData.h */, - FFFDba077d007f87ba077d00 /* cloth/NpCloth.cpp */, - FFFDba077d687f87ba077d68 /* cloth/NpClothFabric.cpp */, - FFFDba077dd07f87ba077dd0 /* cloth/NpClothParticleData.cpp */, - FFFDba077e387f87ba077e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, + FFFDe2193e007ffde2193e00 /* NpActor.h */, + FFFDe2193e687ffde2193e68 /* NpActorTemplate.h */, + FFFDe2193ed07ffde2193ed0 /* NpAggregate.h */, + FFFDe2193f387ffde2193f38 /* NpArticulation.h */, + FFFDe2193fa07ffde2193fa0 /* NpArticulationJoint.h */, + FFFDe21940087ffde2194008 /* NpArticulationLink.h */, + FFFDe21940707ffde2194070 /* NpBatchQuery.h */, + FFFDe21940d87ffde21940d8 /* NpCast.h */, + FFFDe21941407ffde2194140 /* NpConnector.h */, + FFFDe21941a87ffde21941a8 /* NpConstraint.h */, + FFFDe21942107ffde2194210 /* NpFactory.h */, + FFFDe21942787ffde2194278 /* NpMaterial.h */, + FFFDe21942e07ffde21942e0 /* NpMaterialManager.h */, + FFFDe21943487ffde2194348 /* NpPhysics.h */, + FFFDe21943b07ffde21943b0 /* NpPhysicsInsertionCallback.h */, + FFFDe21944187ffde2194418 /* NpPtrTableStorageManager.h */, + FFFDe21944807ffde2194480 /* NpPvdSceneQueryCollector.h */, + FFFDe21944e87ffde21944e8 /* NpQueryShared.h */, + FFFDe21945507ffde2194550 /* NpReadCheck.h */, + FFFDe21945b87ffde21945b8 /* NpRigidActorTemplate.h */, + FFFDe21946207ffde2194620 /* NpRigidActorTemplateInternal.h */, + FFFDe21946887ffde2194688 /* NpRigidBodyTemplate.h */, + FFFDe21946f07ffde21946f0 /* NpRigidDynamic.h */, + FFFDe21947587ffde2194758 /* NpRigidStatic.h */, + FFFDe21947c07ffde21947c0 /* NpScene.h */, + FFFDe21948287ffde2194828 /* NpSceneQueries.h */, + FFFDe21948907ffde2194890 /* NpShape.h */, + FFFDe21948f87ffde21948f8 /* NpShapeManager.h */, + FFFDe21949607ffde2194960 /* NpSpatialIndex.h */, + FFFDe21949c87ffde21949c8 /* NpVolumeCache.h */, + FFFDe2194a307ffde2194a30 /* NpWriteCheck.h */, + FFFDe2194a987ffde2194a98 /* PvdMetaDataBindingData.h */, + FFFDe2194b007ffde2194b00 /* PvdMetaDataPvdBinding.h */, + FFFDe2194b687ffde2194b68 /* PvdPhysicsClient.h */, + FFFDe2194bd07ffde2194bd0 /* PvdTypeNames.h */, + FFFDe2194c387ffde2194c38 /* NpActor.cpp */, + FFFDe2194ca07ffde2194ca0 /* NpAggregate.cpp */, + FFFDe2194d087ffde2194d08 /* NpArticulation.cpp */, + FFFDe2194d707ffde2194d70 /* NpArticulationJoint.cpp */, + FFFDe2194dd87ffde2194dd8 /* NpArticulationLink.cpp */, + FFFDe2194e407ffde2194e40 /* NpBatchQuery.cpp */, + FFFDe2194ea87ffde2194ea8 /* NpConstraint.cpp */, + FFFDe2194f107ffde2194f10 /* NpFactory.cpp */, + FFFDe2194f787ffde2194f78 /* NpMaterial.cpp */, + FFFDe2194fe07ffde2194fe0 /* NpMetaData.cpp */, + FFFDe21950487ffde2195048 /* NpPhysics.cpp */, + FFFDe21950b07ffde21950b0 /* NpPvdSceneQueryCollector.cpp */, + FFFDe21951187ffde2195118 /* NpReadCheck.cpp */, + FFFDe21951807ffde2195180 /* NpRigidDynamic.cpp */, + FFFDe21951e87ffde21951e8 /* NpRigidStatic.cpp */, + FFFDe21952507ffde2195250 /* NpScene.cpp */, + FFFDe21952b87ffde21952b8 /* NpSceneQueries.cpp */, + FFFDe21953207ffde2195320 /* NpSerializerAdapter.cpp */, + FFFDe21953887ffde2195388 /* NpShape.cpp */, + FFFDe21953f07ffde21953f0 /* NpShapeManager.cpp */, + FFFDe21954587ffde2195458 /* NpSpatialIndex.cpp */, + FFFDe21954c07ffde21954c0 /* NpVolumeCache.cpp */, + FFFDe21955287ffde2195528 /* NpWriteCheck.cpp */, + FFFDe21955907ffde2195590 /* PvdMetaDataPvdBinding.cpp */, + FFFDe21955f87ffde21955f8 /* PvdPhysicsClient.cpp */, + FFFDe21956607ffde2195660 /* particles/NpParticleBaseTemplate.h */, + FFFDe21956c87ffde21956c8 /* particles/NpParticleFluid.h */, + FFFDe21957307ffde2195730 /* particles/NpParticleFluidReadData.h */, + FFFDe21957987ffde2195798 /* particles/NpParticleSystem.h */, + FFFDe21958007ffde2195800 /* particles/NpParticleFluid.cpp */, + FFFDe21958687ffde2195868 /* particles/NpParticleSystem.cpp */, + FFFDe21958d07ffde21958d0 /* buffering/ScbActor.h */, + FFFDe21959387ffde2195938 /* buffering/ScbAggregate.h */, + FFFDe21959a07ffde21959a0 /* buffering/ScbArticulation.h */, + FFFDe2195a087ffde2195a08 /* buffering/ScbArticulationJoint.h */, + FFFDe2195a707ffde2195a70 /* buffering/ScbBase.h */, + FFFDe2195ad87ffde2195ad8 /* buffering/ScbBody.h */, + FFFDe2195b407ffde2195b40 /* buffering/ScbCloth.h */, + FFFDe2195ba87ffde2195ba8 /* buffering/ScbConstraint.h */, + FFFDe2195c107ffde2195c10 /* buffering/ScbDefs.h */, + FFFDe2195c787ffde2195c78 /* buffering/ScbNpDeps.h */, + FFFDe2195ce07ffde2195ce0 /* buffering/ScbParticleSystem.h */, + FFFDe2195d487ffde2195d48 /* buffering/ScbRigidObject.h */, + FFFDe2195db07ffde2195db0 /* buffering/ScbRigidStatic.h */, + FFFDe2195e187ffde2195e18 /* buffering/ScbScene.h */, + FFFDe2195e807ffde2195e80 /* buffering/ScbSceneBuffer.h */, + FFFDe2195ee87ffde2195ee8 /* buffering/ScbScenePvdClient.h */, + FFFDe2195f507ffde2195f50 /* buffering/ScbShape.h */, + FFFDe2195fb87ffde2195fb8 /* buffering/ScbType.h */, + FFFDe21960207ffde2196020 /* buffering/ScbActor.cpp */, + FFFDe21960887ffde2196088 /* buffering/ScbAggregate.cpp */, + FFFDe21960f07ffde21960f0 /* buffering/ScbBase.cpp */, + FFFDe21961587ffde2196158 /* buffering/ScbCloth.cpp */, + FFFDe21961c07ffde21961c0 /* buffering/ScbMetaData.cpp */, + FFFDe21962287ffde2196228 /* buffering/ScbParticleSystem.cpp */, + FFFDe21962907ffde2196290 /* buffering/ScbScene.cpp */, + FFFDe21962f87ffde21962f8 /* buffering/ScbScenePvdClient.cpp */, + FFFDe21963607ffde2196360 /* buffering/ScbShape.cpp */, + FFFDe21963c87ffde21963c8 /* cloth/NpCloth.h */, + FFFDe21964307ffde2196430 /* cloth/NpClothFabric.h */, + FFFDe21964987ffde2196498 /* cloth/NpClothParticleData.h */, + FFFDe21965007ffde2196500 /* cloth/NpCloth.cpp */, + FFFDe21965687ffde2196568 /* cloth/NpClothFabric.cpp */, + FFFDe21965d07ffde21965d0 /* cloth/NpClothParticleData.cpp */, + FFFDe21966387ffde2196638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBbd2be1487f87bd2be148 /* include */ = { + FFFBe2956d787ffde2956d78 /* include */ = { isa = PBXGroup; children = ( - FFFDba0780007f87ba078000 /* PxActor.h */, - FFFDba0780687f87ba078068 /* PxAggregate.h */, - FFFDba0780d07f87ba0780d0 /* PxArticulation.h */, - FFFDba0781387f87ba078138 /* PxArticulationJoint.h */, - FFFDba0781a07f87ba0781a0 /* PxArticulationLink.h */, - FFFDba0782087f87ba078208 /* PxBatchQuery.h */, - FFFDba0782707f87ba078270 /* PxBatchQueryDesc.h */, - FFFDba0782d87f87ba0782d8 /* PxBroadPhase.h */, - FFFDba0783407f87ba078340 /* PxClient.h */, - FFFDba0783a87f87ba0783a8 /* PxConstraint.h */, - FFFDba0784107f87ba078410 /* PxConstraintDesc.h */, - FFFDba0784787f87ba078478 /* PxContact.h */, - FFFDba0784e07f87ba0784e0 /* PxContactModifyCallback.h */, - FFFDba0785487f87ba078548 /* PxDeletionListener.h */, - FFFDba0785b07f87ba0785b0 /* PxFiltering.h */, - FFFDba0786187f87ba078618 /* PxForceMode.h */, - FFFDba0786807f87ba078680 /* PxImmediateMode.h */, - FFFDba0786e87f87ba0786e8 /* PxLockedData.h */, - FFFDba0787507f87ba078750 /* PxMaterial.h */, - FFFDba0787b87f87ba0787b8 /* PxPhysXConfig.h */, - FFFDba0788207f87ba078820 /* PxPhysics.h */, - FFFDba0788887f87ba078888 /* PxPhysicsAPI.h */, - FFFDba0788f07f87ba0788f0 /* PxPhysicsSerialization.h */, - FFFDba0789587f87ba078958 /* PxPhysicsVersion.h */, - FFFDba0789c07f87ba0789c0 /* PxPruningStructure.h */, - FFFDba078a287f87ba078a28 /* PxQueryFiltering.h */, - FFFDba078a907f87ba078a90 /* PxQueryReport.h */, - FFFDba078af87f87ba078af8 /* PxRigidActor.h */, - FFFDba078b607f87ba078b60 /* PxRigidBody.h */, - FFFDba078bc87f87ba078bc8 /* PxRigidDynamic.h */, - FFFDba078c307f87ba078c30 /* PxRigidStatic.h */, - FFFDba078c987f87ba078c98 /* PxScene.h */, - FFFDba078d007f87ba078d00 /* PxSceneDesc.h */, - FFFDba078d687f87ba078d68 /* PxSceneLock.h */, - FFFDba078dd07f87ba078dd0 /* PxShape.h */, - FFFDba078e387f87ba078e38 /* PxSimulationEventCallback.h */, - FFFDba078ea07f87ba078ea0 /* PxSimulationStatistics.h */, - FFFDba078f087f87ba078f08 /* PxSpatialIndex.h */, - FFFDba078f707f87ba078f70 /* PxVisualizationParameter.h */, - FFFDba078fd87f87ba078fd8 /* PxVolumeCache.h */, - FFFDba0790407f87ba079040 /* particles/PxParticleBase.h */, - FFFDba0790a87f87ba0790a8 /* particles/PxParticleBaseFlag.h */, - FFFDba0791107f87ba079110 /* particles/PxParticleCreationData.h */, - FFFDba0791787f87ba079178 /* particles/PxParticleFlag.h */, - FFFDba0791e07f87ba0791e0 /* particles/PxParticleFluid.h */, - FFFDba0792487f87ba079248 /* particles/PxParticleFluidReadData.h */, - FFFDba0792b07f87ba0792b0 /* particles/PxParticleReadData.h */, - FFFDba0793187f87ba079318 /* particles/PxParticleSystem.h */, - FFFDba0793807f87ba079380 /* pvd/PxPvdSceneClient.h */, - FFFDba0793e87f87ba0793e8 /* cloth/PxCloth.h */, - FFFDba0794507f87ba079450 /* cloth/PxClothCollisionData.h */, - FFFDba0794b87f87ba0794b8 /* cloth/PxClothFabric.h */, - FFFDba0795207f87ba079520 /* cloth/PxClothParticleData.h */, - FFFDba0795887f87ba079588 /* cloth/PxClothTypes.h */, + FFFDe21968007ffde2196800 /* PxActor.h */, + FFFDe21968687ffde2196868 /* PxAggregate.h */, + FFFDe21968d07ffde21968d0 /* PxArticulation.h */, + FFFDe21969387ffde2196938 /* PxArticulationJoint.h */, + FFFDe21969a07ffde21969a0 /* PxArticulationLink.h */, + FFFDe2196a087ffde2196a08 /* PxBatchQuery.h */, + FFFDe2196a707ffde2196a70 /* PxBatchQueryDesc.h */, + FFFDe2196ad87ffde2196ad8 /* PxBroadPhase.h */, + FFFDe2196b407ffde2196b40 /* PxClient.h */, + FFFDe2196ba87ffde2196ba8 /* PxConstraint.h */, + FFFDe2196c107ffde2196c10 /* PxConstraintDesc.h */, + FFFDe2196c787ffde2196c78 /* PxContact.h */, + FFFDe2196ce07ffde2196ce0 /* PxContactModifyCallback.h */, + FFFDe2196d487ffde2196d48 /* PxDeletionListener.h */, + FFFDe2196db07ffde2196db0 /* PxFiltering.h */, + FFFDe2196e187ffde2196e18 /* PxForceMode.h */, + FFFDe2196e807ffde2196e80 /* PxImmediateMode.h */, + FFFDe2196ee87ffde2196ee8 /* PxLockedData.h */, + FFFDe2196f507ffde2196f50 /* PxMaterial.h */, + FFFDe2196fb87ffde2196fb8 /* PxPhysXConfig.h */, + FFFDe21970207ffde2197020 /* PxPhysics.h */, + FFFDe21970887ffde2197088 /* PxPhysicsAPI.h */, + FFFDe21970f07ffde21970f0 /* PxPhysicsSerialization.h */, + FFFDe21971587ffde2197158 /* PxPhysicsVersion.h */, + FFFDe21971c07ffde21971c0 /* PxPruningStructure.h */, + FFFDe21972287ffde2197228 /* PxQueryFiltering.h */, + FFFDe21972907ffde2197290 /* PxQueryReport.h */, + FFFDe21972f87ffde21972f8 /* PxRigidActor.h */, + FFFDe21973607ffde2197360 /* PxRigidBody.h */, + FFFDe21973c87ffde21973c8 /* PxRigidDynamic.h */, + FFFDe21974307ffde2197430 /* PxRigidStatic.h */, + FFFDe21974987ffde2197498 /* PxScene.h */, + FFFDe21975007ffde2197500 /* PxSceneDesc.h */, + FFFDe21975687ffde2197568 /* PxSceneLock.h */, + FFFDe21975d07ffde21975d0 /* PxShape.h */, + FFFDe21976387ffde2197638 /* PxSimulationEventCallback.h */, + FFFDe21976a07ffde21976a0 /* PxSimulationStatistics.h */, + FFFDe21977087ffde2197708 /* PxSpatialIndex.h */, + FFFDe21977707ffde2197770 /* PxVisualizationParameter.h */, + FFFDe21977d87ffde21977d8 /* PxVolumeCache.h */, + FFFDe21978407ffde2197840 /* particles/PxParticleBase.h */, + FFFDe21978a87ffde21978a8 /* particles/PxParticleBaseFlag.h */, + FFFDe21979107ffde2197910 /* particles/PxParticleCreationData.h */, + FFFDe21979787ffde2197978 /* particles/PxParticleFlag.h */, + FFFDe21979e07ffde21979e0 /* particles/PxParticleFluid.h */, + FFFDe2197a487ffde2197a48 /* particles/PxParticleFluidReadData.h */, + FFFDe2197ab07ffde2197ab0 /* particles/PxParticleReadData.h */, + FFFDe2197b187ffde2197b18 /* particles/PxParticleSystem.h */, + FFFDe2197b807ffde2197b80 /* pvd/PxPvdSceneClient.h */, + FFFDe2197be87ffde2197be8 /* cloth/PxCloth.h */, + FFFDe2197c507ffde2197c50 /* cloth/PxClothCollisionData.h */, + FFFDe2197cb87ffde2197cb8 /* cloth/PxClothFabric.h */, + FFFDe2197d207ffde2197d20 /* cloth/PxClothParticleData.h */, + FFFDe2197d887ffde2197d88 /* cloth/PxClothTypes.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBbd2be1707f87bd2be170 /* metadata */ = { + FFFBe2956da07ffde2956da0 /* metadata */ = { isa = PBXGroup; children = ( - FFFDba0796007f87ba079600 /* core/include/PvdMetaDataDefineProperties.h */, - FFFDba0796687f87ba079668 /* core/include/PvdMetaDataExtensions.h */, - FFFDba0796d07f87ba0796d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFDba0797387f87ba079738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFDba0797a07f87ba0797a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFDba0798087f87ba079808 /* core/include/PxMetaDataCompare.h */, - FFFDba0798707f87ba079870 /* core/include/PxMetaDataCppPrefix.h */, - FFFDba0798d87f87ba0798d8 /* core/include/PxMetaDataObjects.h */, - FFFDba0799407f87ba079940 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFDba0799a87f87ba0799a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, - FFFDba079a107f87ba079a10 /* core/src/PxMetaDataObjects.cpp */, + FFFDe218ea007ffde218ea00 /* core/include/PvdMetaDataDefineProperties.h */, + FFFDe218ea687ffde218ea68 /* core/include/PvdMetaDataExtensions.h */, + FFFDe218ead07ffde218ead0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFDe218eb387ffde218eb38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFDe218eba07ffde218eba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFDe218ec087ffde218ec08 /* core/include/PxMetaDataCompare.h */, + FFFDe218ec707ffde218ec70 /* core/include/PxMetaDataCppPrefix.h */, + FFFDe218ecd87ffde218ecd8 /* core/include/PxMetaDataObjects.h */, + FFFDe218ed407ffde218ed40 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFDe218eda87ffde218eda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, + FFFDe218ee107ffde218ee10 /* core/src/PxMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBbd2c56a07f87bd2c56a0 /* PhysXCharacterKinematic */ = { + FFFBe294ef707ffde294ef70 /* PhysXCharacterKinematic */ = { isa = PBXGroup; children = ( - FFFBbd2c79007f87bd2c7900 /* include */, - FFFBbd2c79287f87bd2c7928 /* src */, + FFFBe29556107ffde2955610 /* include */, + FFFBe29556387ffde2955638 /* src */, ); name = "PhysXCharacterKinematic"; sourceTree = "<group>"; }; - FFFBbd2c79007f87bd2c7900 /* include */ = { + FFFBe29556107ffde2955610 /* include */ = { isa = PBXGroup; children = ( - FFFDbd2c8b707f87bd2c8b70 /* PxBoxController.h */, - FFFDbd2c8bd87f87bd2c8bd8 /* PxCapsuleController.h */, - FFFDbd2c8c407f87bd2c8c40 /* PxCharacter.h */, - FFFDbd2c8ca87f87bd2c8ca8 /* PxController.h */, - FFFDbd2c8d107f87bd2c8d10 /* PxControllerBehavior.h */, - FFFDbd2c8d787f87bd2c8d78 /* PxControllerManager.h */, - FFFDbd2c8de07f87bd2c8de0 /* PxControllerObstacles.h */, - FFFDbd2c8e487f87bd2c8e48 /* PxExtended.h */, + FFFDe29560807ffde2956080 /* PxBoxController.h */, + FFFDe29560e87ffde29560e8 /* PxCapsuleController.h */, + FFFDe29561507ffde2956150 /* PxCharacter.h */, + FFFDe29561b87ffde29561b8 /* PxController.h */, + FFFDe29562207ffde2956220 /* PxControllerBehavior.h */, + FFFDe29562887ffde2956288 /* PxControllerManager.h */, + FFFDe29562f07ffde29562f0 /* PxControllerObstacles.h */, + FFFDe29563587ffde2956358 /* PxExtended.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBbd2c79287f87bd2c7928 /* src */ = { + FFFBe29556387ffde2955638 /* src */ = { isa = PBXGroup; children = ( - FFFDbb0a74007f87bb0a7400 /* CctBoxController.h */, - FFFDbb0a74687f87bb0a7468 /* CctCapsuleController.h */, - FFFDbb0a74d07f87bb0a74d0 /* CctCharacterController.h */, - FFFDbb0a75387f87bb0a7538 /* CctCharacterControllerManager.h */, - FFFDbb0a75a07f87bb0a75a0 /* CctController.h */, - FFFDbb0a76087f87bb0a7608 /* CctInternalStructs.h */, - FFFDbb0a76707f87bb0a7670 /* CctObstacleContext.h */, - FFFDbb0a76d87f87bb0a76d8 /* CctSweptBox.h */, - FFFDbb0a77407f87bb0a7740 /* CctSweptCapsule.h */, - FFFDbb0a77a87f87bb0a77a8 /* CctSweptVolume.h */, - FFFDbb0a78107f87bb0a7810 /* CctUtils.h */, - FFFDbb0a78787f87bb0a7878 /* CctBoxController.cpp */, - FFFDbb0a78e07f87bb0a78e0 /* CctCapsuleController.cpp */, - FFFDbb0a79487f87bb0a7948 /* CctCharacterController.cpp */, - FFFDbb0a79b07f87bb0a79b0 /* CctCharacterControllerCallbacks.cpp */, - FFFDbb0a7a187f87bb0a7a18 /* CctCharacterControllerManager.cpp */, - FFFDbb0a7a807f87bb0a7a80 /* CctController.cpp */, - FFFDbb0a7ae87f87bb0a7ae8 /* CctObstacleContext.cpp */, - FFFDbb0a7b507f87bb0a7b50 /* CctSweptBox.cpp */, - FFFDbb0a7bb87f87bb0a7bb8 /* CctSweptCapsule.cpp */, - FFFDbb0a7c207f87bb0a7c20 /* CctSweptVolume.cpp */, + FFFDe2197e007ffde2197e00 /* CctBoxController.h */, + FFFDe2197e687ffde2197e68 /* CctCapsuleController.h */, + FFFDe2197ed07ffde2197ed0 /* CctCharacterController.h */, + FFFDe2197f387ffde2197f38 /* CctCharacterControllerManager.h */, + FFFDe2197fa07ffde2197fa0 /* CctController.h */, + FFFDe21980087ffde2198008 /* CctInternalStructs.h */, + FFFDe21980707ffde2198070 /* CctObstacleContext.h */, + FFFDe21980d87ffde21980d8 /* CctSweptBox.h */, + FFFDe21981407ffde2198140 /* CctSweptCapsule.h */, + FFFDe21981a87ffde21981a8 /* CctSweptVolume.h */, + FFFDe21982107ffde2198210 /* CctUtils.h */, + FFFDe21982787ffde2198278 /* CctBoxController.cpp */, + FFFDe21982e07ffde21982e0 /* CctCapsuleController.cpp */, + FFFDe21983487ffde2198348 /* CctCharacterController.cpp */, + FFFDe21983b07ffde21983b0 /* CctCharacterControllerCallbacks.cpp */, + FFFDe21984187ffde2198418 /* CctCharacterControllerManager.cpp */, + FFFDe21984807ffde2198480 /* CctController.cpp */, + FFFDe21984e87ffde21984e8 /* CctObstacleContext.cpp */, + FFFDe21985507ffde2198550 /* CctSweptBox.cpp */, + FFFDe21985b87ffde21985b8 /* CctSweptCapsule.cpp */, + FFFDe21986207ffde2198620 /* CctSweptVolume.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBbd07bfb07f87bd07bfb0 /* PhysXVehicle */ = { + FFFBe29504707ffde2950470 /* PhysXVehicle */ = { isa = PBXGroup; children = ( - FFFBb9ac21407f87b9ac2140 /* include */, - FFFBb9ac21687f87b9ac2168 /* src */, - FFFBb9ac21907f87b9ac2190 /* metadata */, + FFFBe29609a07ffde29609a0 /* include */, + FFFBe29609c87ffde29609c8 /* src */, + FFFBe29609f07ffde29609f0 /* metadata */, ); name = "PhysXVehicle"; sourceTree = "<group>"; }; - FFFBb9ac21407f87b9ac2140 /* include */ = { + FFFBe29609a07ffde29609a0 /* include */ = { isa = PBXGroup; children = ( - FFFDba80b0007f87ba80b000 /* PxVehicleComponents.h */, - FFFDba80b0687f87ba80b068 /* PxVehicleDrive.h */, - FFFDba80b0d07f87ba80b0d0 /* PxVehicleDrive4W.h */, - FFFDba80b1387f87ba80b138 /* PxVehicleDriveNW.h */, - FFFDba80b1a07f87ba80b1a0 /* PxVehicleDriveTank.h */, - FFFDba80b2087f87ba80b208 /* PxVehicleNoDrive.h */, - FFFDba80b2707f87ba80b270 /* PxVehicleSDK.h */, - FFFDba80b2d87f87ba80b2d8 /* PxVehicleShaders.h */, - FFFDba80b3407f87ba80b340 /* PxVehicleTireFriction.h */, - FFFDba80b3a87f87ba80b3a8 /* PxVehicleUpdate.h */, - FFFDba80b4107f87ba80b410 /* PxVehicleUtil.h */, - FFFDba80b4787f87ba80b478 /* PxVehicleUtilControl.h */, - FFFDba80b4e07f87ba80b4e0 /* PxVehicleUtilSetup.h */, - FFFDba80b5487f87ba80b548 /* PxVehicleUtilTelemetry.h */, - FFFDba80b5b07f87ba80b5b0 /* PxVehicleWheels.h */, + FFFDe219a4007ffde219a400 /* PxVehicleComponents.h */, + FFFDe219a4687ffde219a468 /* PxVehicleDrive.h */, + FFFDe219a4d07ffde219a4d0 /* PxVehicleDrive4W.h */, + FFFDe219a5387ffde219a538 /* PxVehicleDriveNW.h */, + FFFDe219a5a07ffde219a5a0 /* PxVehicleDriveTank.h */, + FFFDe219a6087ffde219a608 /* PxVehicleNoDrive.h */, + FFFDe219a6707ffde219a670 /* PxVehicleSDK.h */, + FFFDe219a6d87ffde219a6d8 /* PxVehicleShaders.h */, + FFFDe219a7407ffde219a740 /* PxVehicleTireFriction.h */, + FFFDe219a7a87ffde219a7a8 /* PxVehicleUpdate.h */, + FFFDe219a8107ffde219a810 /* PxVehicleUtil.h */, + FFFDe219a8787ffde219a878 /* PxVehicleUtilControl.h */, + FFFDe219a8e07ffde219a8e0 /* PxVehicleUtilSetup.h */, + FFFDe219a9487ffde219a948 /* PxVehicleUtilTelemetry.h */, + FFFDe219a9b07ffde219a9b0 /* PxVehicleWheels.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBb9ac21687f87b9ac2168 /* src */ = { + FFFBe29609c87ffde29609c8 /* src */ = { isa = PBXGroup; children = ( - FFFDba8194007f87ba819400 /* PxVehicleDefaults.h */, - FFFDba8194687f87ba819468 /* PxVehicleLinearMath.h */, - FFFDba8194d07f87ba8194d0 /* PxVehicleSerialization.h */, - FFFDba8195387f87ba819538 /* PxVehicleSuspLimitConstraintShader.h */, - FFFDba8195a07f87ba8195a0 /* PxVehicleSuspWheelTire4.h */, - FFFDba8196087f87ba819608 /* PxVehicleComponents.cpp */, - FFFDba8196707f87ba819670 /* PxVehicleDrive.cpp */, - FFFDba8196d87f87ba8196d8 /* PxVehicleDrive4W.cpp */, - FFFDba8197407f87ba819740 /* PxVehicleDriveNW.cpp */, - FFFDba8197a87f87ba8197a8 /* PxVehicleDriveTank.cpp */, - FFFDba8198107f87ba819810 /* PxVehicleMetaData.cpp */, - FFFDba8198787f87ba819878 /* PxVehicleNoDrive.cpp */, - FFFDba8198e07f87ba8198e0 /* PxVehicleSDK.cpp */, - FFFDba8199487f87ba819948 /* PxVehicleSerialization.cpp */, - FFFDba8199b07f87ba8199b0 /* PxVehicleSuspWheelTire4.cpp */, - FFFDba819a187f87ba819a18 /* PxVehicleTireFriction.cpp */, - FFFDba819a807f87ba819a80 /* PxVehicleUpdate.cpp */, - FFFDba819ae87f87ba819ae8 /* PxVehicleWheels.cpp */, - FFFDba819b507f87ba819b50 /* VehicleUtilControl.cpp */, - FFFDba819bb87f87ba819bb8 /* VehicleUtilSetup.cpp */, - FFFDba819c207f87ba819c20 /* VehicleUtilTelemetry.cpp */, + FFFDe219c2007ffde219c200 /* PxVehicleDefaults.h */, + FFFDe219c2687ffde219c268 /* PxVehicleLinearMath.h */, + FFFDe219c2d07ffde219c2d0 /* PxVehicleSerialization.h */, + FFFDe219c3387ffde219c338 /* PxVehicleSuspLimitConstraintShader.h */, + FFFDe219c3a07ffde219c3a0 /* PxVehicleSuspWheelTire4.h */, + FFFDe219c4087ffde219c408 /* PxVehicleComponents.cpp */, + FFFDe219c4707ffde219c470 /* PxVehicleDrive.cpp */, + FFFDe219c4d87ffde219c4d8 /* PxVehicleDrive4W.cpp */, + FFFDe219c5407ffde219c540 /* PxVehicleDriveNW.cpp */, + FFFDe219c5a87ffde219c5a8 /* PxVehicleDriveTank.cpp */, + FFFDe219c6107ffde219c610 /* PxVehicleMetaData.cpp */, + FFFDe219c6787ffde219c678 /* PxVehicleNoDrive.cpp */, + FFFDe219c6e07ffde219c6e0 /* PxVehicleSDK.cpp */, + FFFDe219c7487ffde219c748 /* PxVehicleSerialization.cpp */, + FFFDe219c7b07ffde219c7b0 /* PxVehicleSuspWheelTire4.cpp */, + FFFDe219c8187ffde219c818 /* PxVehicleTireFriction.cpp */, + FFFDe219c8807ffde219c880 /* PxVehicleUpdate.cpp */, + FFFDe219c8e87ffde219c8e8 /* PxVehicleWheels.cpp */, + FFFDe219c9507ffde219c950 /* VehicleUtilControl.cpp */, + FFFDe219c9b87ffde219c9b8 /* VehicleUtilSetup.cpp */, + FFFDe219ca207ffde219ca20 /* VehicleUtilTelemetry.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBb9ac21907f87b9ac2190 /* metadata */ = { + FFFBe29609f07ffde29609f0 /* metadata */ = { isa = PBXGroup; children = ( - FFFDb9ac33907f87b9ac3390 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, - FFFDb9ac33f87f87b9ac33f8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, - FFFDb9ac34607f87b9ac3460 /* include/PxVehicleMetaDataObjects.h */, - FFFDb9ac34c87f87b9ac34c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, - FFFDb9ac35307f87b9ac3530 /* src/PxVehicleMetaDataObjects.cpp */, + FFFDe2961ab07ffde2961ab0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, + FFFDe2961b187ffde2961b18 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, + FFFDe2961b807ffde2961b80 /* include/PxVehicleMetaDataObjects.h */, + FFFDe2961be87ffde2961be8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, + FFFDe2961c507ffde2961c50 /* src/PxVehicleMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBb9ac2fb07f87b9ac2fb0 /* PhysXExtensions */ = { + FFFBe29617f07ffde29617f0 /* PhysXExtensions */ = { isa = PBXGroup; children = ( - FFFBbd2cc1607f87bd2cc160 /* include */, - FFFBbd2cc1887f87bd2cc188 /* src */, - FFFBbd2cc1b07f87bd2cc1b0 /* serialization */, - FFFBbd2cc1d87f87bd2cc1d8 /* metadata */, + FFFBe29655407ffde2965540 /* include */, + FFFBe29655687ffde2965568 /* src */, + FFFBe29655907ffde2965590 /* serialization */, + FFFBe29655b87ffde29655b8 /* metadata */, ); name = "PhysXExtensions"; sourceTree = "<group>"; }; - FFFBbd2cc1607f87bd2cc160 /* include */ = { + FFFBe29655407ffde2965540 /* include */ = { isa = PBXGroup; children = ( - FFFDba0746007f87ba074600 /* PxBinaryConverter.h */, - FFFDba0746687f87ba074668 /* PxBroadPhaseExt.h */, - FFFDba0746d07f87ba0746d0 /* PxClothFabricCooker.h */, - FFFDba0747387f87ba074738 /* PxClothMeshDesc.h */, - FFFDba0747a07f87ba0747a0 /* PxClothMeshQuadifier.h */, - FFFDba0748087f87ba074808 /* PxClothTetherCooker.h */, - FFFDba0748707f87ba074870 /* PxCollectionExt.h */, - FFFDba0748d87f87ba0748d8 /* PxConstraintExt.h */, - FFFDba0749407f87ba074940 /* PxConvexMeshExt.h */, - FFFDba0749a87f87ba0749a8 /* PxD6Joint.h */, - FFFDba074a107f87ba074a10 /* PxDefaultAllocator.h */, - FFFDba074a787f87ba074a78 /* PxDefaultCpuDispatcher.h */, - FFFDba074ae07f87ba074ae0 /* PxDefaultErrorCallback.h */, - FFFDba074b487f87ba074b48 /* PxDefaultSimulationFilterShader.h */, - FFFDba074bb07f87ba074bb0 /* PxDefaultStreams.h */, - FFFDba074c187f87ba074c18 /* PxDistanceJoint.h */, - FFFDba074c807f87ba074c80 /* PxExtensionsAPI.h */, - FFFDba074ce87f87ba074ce8 /* PxFixedJoint.h */, - FFFDba074d507f87ba074d50 /* PxJoint.h */, - FFFDba074db87f87ba074db8 /* PxJointLimit.h */, - FFFDba074e207f87ba074e20 /* PxJointRepXSerializer.h */, - FFFDba074e887f87ba074e88 /* PxMassProperties.h */, - FFFDba074ef07f87ba074ef0 /* PxParticleExt.h */, - FFFDba074f587f87ba074f58 /* PxPrismaticJoint.h */, - FFFDba074fc07f87ba074fc0 /* PxRaycastCCD.h */, - FFFDba0750287f87ba075028 /* PxRepXSerializer.h */, - FFFDba0750907f87ba075090 /* PxRepXSimpleType.h */, - FFFDba0750f87f87ba0750f8 /* PxRevoluteJoint.h */, - FFFDba0751607f87ba075160 /* PxRigidActorExt.h */, - FFFDba0751c87f87ba0751c8 /* PxRigidBodyExt.h */, - FFFDba0752307f87ba075230 /* PxSceneQueryExt.h */, - FFFDba0752987f87ba075298 /* PxSerialization.h */, - FFFDba0753007f87ba075300 /* PxShapeExt.h */, - FFFDba0753687f87ba075368 /* PxSimpleFactory.h */, - FFFDba0753d07f87ba0753d0 /* PxSmoothNormals.h */, - FFFDba0754387f87ba075438 /* PxSphericalJoint.h */, - FFFDba0754a07f87ba0754a0 /* PxStringTableExt.h */, - FFFDba0755087f87ba075508 /* PxTriangleMeshExt.h */, + FFFDe219fa007ffde219fa00 /* PxBinaryConverter.h */, + FFFDe219fa687ffde219fa68 /* PxBroadPhaseExt.h */, + FFFDe219fad07ffde219fad0 /* PxClothFabricCooker.h */, + FFFDe219fb387ffde219fb38 /* PxClothMeshDesc.h */, + FFFDe219fba07ffde219fba0 /* PxClothMeshQuadifier.h */, + FFFDe219fc087ffde219fc08 /* PxClothTetherCooker.h */, + FFFDe219fc707ffde219fc70 /* PxCollectionExt.h */, + FFFDe219fcd87ffde219fcd8 /* PxConstraintExt.h */, + FFFDe219fd407ffde219fd40 /* PxConvexMeshExt.h */, + FFFDe219fda87ffde219fda8 /* PxD6Joint.h */, + FFFDe219fe107ffde219fe10 /* PxDefaultAllocator.h */, + FFFDe219fe787ffde219fe78 /* PxDefaultCpuDispatcher.h */, + FFFDe219fee07ffde219fee0 /* PxDefaultErrorCallback.h */, + FFFDe219ff487ffde219ff48 /* PxDefaultSimulationFilterShader.h */, + FFFDe219ffb07ffde219ffb0 /* PxDefaultStreams.h */, + FFFDe21a00187ffde21a0018 /* PxDistanceJoint.h */, + FFFDe21a00807ffde21a0080 /* PxExtensionsAPI.h */, + FFFDe21a00e87ffde21a00e8 /* PxFixedJoint.h */, + FFFDe21a01507ffde21a0150 /* PxJoint.h */, + FFFDe21a01b87ffde21a01b8 /* PxJointLimit.h */, + FFFDe21a02207ffde21a0220 /* PxJointRepXSerializer.h */, + FFFDe21a02887ffde21a0288 /* PxMassProperties.h */, + FFFDe21a02f07ffde21a02f0 /* PxParticleExt.h */, + FFFDe21a03587ffde21a0358 /* PxPrismaticJoint.h */, + FFFDe21a03c07ffde21a03c0 /* PxRaycastCCD.h */, + FFFDe21a04287ffde21a0428 /* PxRepXSerializer.h */, + FFFDe21a04907ffde21a0490 /* PxRepXSimpleType.h */, + FFFDe21a04f87ffde21a04f8 /* PxRevoluteJoint.h */, + FFFDe21a05607ffde21a0560 /* PxRigidActorExt.h */, + FFFDe21a05c87ffde21a05c8 /* PxRigidBodyExt.h */, + FFFDe21a06307ffde21a0630 /* PxSceneQueryExt.h */, + FFFDe21a06987ffde21a0698 /* PxSerialization.h */, + FFFDe21a07007ffde21a0700 /* PxShapeExt.h */, + FFFDe21a07687ffde21a0768 /* PxSimpleFactory.h */, + FFFDe21a07d07ffde21a07d0 /* PxSmoothNormals.h */, + FFFDe21a08387ffde21a0838 /* PxSphericalJoint.h */, + FFFDe21a08a07ffde21a08a0 /* PxStringTableExt.h */, + FFFDe21a09087ffde21a0908 /* PxTriangleMeshExt.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBbd2cc1887f87bd2cc188 /* src */ = { + FFFBe29655687ffde2965568 /* src */ = { isa = PBXGroup; children = ( - FFFDba07e0007f87ba07e000 /* ExtConstraintHelper.h */, - FFFDba07e0687f87ba07e068 /* ExtCpuWorkerThread.h */, - FFFDba07e0d07f87ba07e0d0 /* ExtD6Joint.h */, - FFFDba07e1387f87ba07e138 /* ExtDefaultCpuDispatcher.h */, - FFFDba07e1a07f87ba07e1a0 /* ExtDistanceJoint.h */, - FFFDba07e2087f87ba07e208 /* ExtFixedJoint.h */, - FFFDba07e2707f87ba07e270 /* ExtInertiaTensor.h */, - FFFDba07e2d87f87ba07e2d8 /* ExtJoint.h */, - FFFDba07e3407f87ba07e340 /* ExtJointMetaDataExtensions.h */, - FFFDba07e3a87f87ba07e3a8 /* ExtPlatform.h */, - FFFDba07e4107f87ba07e410 /* ExtPrismaticJoint.h */, - FFFDba07e4787f87ba07e478 /* ExtPvd.h */, - FFFDba07e4e07f87ba07e4e0 /* ExtRevoluteJoint.h */, - FFFDba07e5487f87ba07e548 /* ExtSerialization.h */, - FFFDba07e5b07f87ba07e5b0 /* ExtSharedQueueEntryPool.h */, - FFFDba07e6187f87ba07e618 /* ExtSphericalJoint.h */, - FFFDba07e6807f87ba07e680 /* ExtTaskQueueHelper.h */, - FFFDba07e6e87f87ba07e6e8 /* ExtBroadPhase.cpp */, - FFFDba07e7507f87ba07e750 /* ExtClothFabricCooker.cpp */, - FFFDba07e7b87f87ba07e7b8 /* ExtClothGeodesicTetherCooker.cpp */, - FFFDba07e8207f87ba07e820 /* ExtClothMeshQuadifier.cpp */, - FFFDba07e8887f87ba07e888 /* ExtClothSimpleTetherCooker.cpp */, - FFFDba07e8f07f87ba07e8f0 /* ExtCollection.cpp */, - FFFDba07e9587f87ba07e958 /* ExtConvexMeshExt.cpp */, - FFFDba07e9c07f87ba07e9c0 /* ExtCpuWorkerThread.cpp */, - FFFDba07ea287f87ba07ea28 /* ExtD6Joint.cpp */, - FFFDba07ea907f87ba07ea90 /* ExtD6JointSolverPrep.cpp */, - FFFDba07eaf87f87ba07eaf8 /* ExtDefaultCpuDispatcher.cpp */, - FFFDba07eb607f87ba07eb60 /* ExtDefaultErrorCallback.cpp */, - FFFDba07ebc87f87ba07ebc8 /* ExtDefaultSimulationFilterShader.cpp */, - FFFDba07ec307f87ba07ec30 /* ExtDefaultStreams.cpp */, - FFFDba07ec987f87ba07ec98 /* ExtDistanceJoint.cpp */, - FFFDba07ed007f87ba07ed00 /* ExtDistanceJointSolverPrep.cpp */, - FFFDba07ed687f87ba07ed68 /* ExtExtensions.cpp */, - FFFDba07edd07f87ba07edd0 /* ExtFixedJoint.cpp */, - FFFDba07ee387f87ba07ee38 /* ExtFixedJointSolverPrep.cpp */, - FFFDba07eea07f87ba07eea0 /* ExtJoint.cpp */, - FFFDba07ef087f87ba07ef08 /* ExtMetaData.cpp */, - FFFDba07ef707f87ba07ef70 /* ExtParticleExt.cpp */, - FFFDba07efd87f87ba07efd8 /* ExtPrismaticJoint.cpp */, - FFFDba07f0407f87ba07f040 /* ExtPrismaticJointSolverPrep.cpp */, - FFFDba07f0a87f87ba07f0a8 /* ExtPvd.cpp */, - FFFDba07f1107f87ba07f110 /* ExtPxStringTable.cpp */, - FFFDba07f1787f87ba07f178 /* ExtRaycastCCD.cpp */, - FFFDba07f1e07f87ba07f1e0 /* ExtRevoluteJoint.cpp */, - FFFDba07f2487f87ba07f248 /* ExtRevoluteJointSolverPrep.cpp */, - FFFDba07f2b07f87ba07f2b0 /* ExtRigidBodyExt.cpp */, - FFFDba07f3187f87ba07f318 /* ExtSceneQueryExt.cpp */, - FFFDba07f3807f87ba07f380 /* ExtSimpleFactory.cpp */, - FFFDba07f3e87f87ba07f3e8 /* ExtSmoothNormals.cpp */, - FFFDba07f4507f87ba07f450 /* ExtSphericalJoint.cpp */, - FFFDba07f4b87f87ba07f4b8 /* ExtSphericalJointSolverPrep.cpp */, - FFFDba07f5207f87ba07f520 /* ExtTriangleMeshExt.cpp */, + FFFDe219e4007ffde219e400 /* ExtConstraintHelper.h */, + FFFDe219e4687ffde219e468 /* ExtCpuWorkerThread.h */, + FFFDe219e4d07ffde219e4d0 /* ExtD6Joint.h */, + FFFDe219e5387ffde219e538 /* ExtDefaultCpuDispatcher.h */, + FFFDe219e5a07ffde219e5a0 /* ExtDistanceJoint.h */, + FFFDe219e6087ffde219e608 /* ExtFixedJoint.h */, + FFFDe219e6707ffde219e670 /* ExtInertiaTensor.h */, + FFFDe219e6d87ffde219e6d8 /* ExtJoint.h */, + FFFDe219e7407ffde219e740 /* ExtJointMetaDataExtensions.h */, + FFFDe219e7a87ffde219e7a8 /* ExtPlatform.h */, + FFFDe219e8107ffde219e810 /* ExtPrismaticJoint.h */, + FFFDe219e8787ffde219e878 /* ExtPvd.h */, + FFFDe219e8e07ffde219e8e0 /* ExtRevoluteJoint.h */, + FFFDe219e9487ffde219e948 /* ExtSerialization.h */, + FFFDe219e9b07ffde219e9b0 /* ExtSharedQueueEntryPool.h */, + FFFDe219ea187ffde219ea18 /* ExtSphericalJoint.h */, + FFFDe219ea807ffde219ea80 /* ExtTaskQueueHelper.h */, + FFFDe219eae87ffde219eae8 /* ExtBroadPhase.cpp */, + FFFDe219eb507ffde219eb50 /* ExtClothFabricCooker.cpp */, + FFFDe219ebb87ffde219ebb8 /* ExtClothGeodesicTetherCooker.cpp */, + FFFDe219ec207ffde219ec20 /* ExtClothMeshQuadifier.cpp */, + FFFDe219ec887ffde219ec88 /* ExtClothSimpleTetherCooker.cpp */, + FFFDe219ecf07ffde219ecf0 /* ExtCollection.cpp */, + FFFDe219ed587ffde219ed58 /* ExtConvexMeshExt.cpp */, + FFFDe219edc07ffde219edc0 /* ExtCpuWorkerThread.cpp */, + FFFDe219ee287ffde219ee28 /* ExtD6Joint.cpp */, + FFFDe219ee907ffde219ee90 /* ExtD6JointSolverPrep.cpp */, + FFFDe219eef87ffde219eef8 /* ExtDefaultCpuDispatcher.cpp */, + FFFDe219ef607ffde219ef60 /* ExtDefaultErrorCallback.cpp */, + FFFDe219efc87ffde219efc8 /* ExtDefaultSimulationFilterShader.cpp */, + FFFDe219f0307ffde219f030 /* ExtDefaultStreams.cpp */, + FFFDe219f0987ffde219f098 /* ExtDistanceJoint.cpp */, + FFFDe219f1007ffde219f100 /* ExtDistanceJointSolverPrep.cpp */, + FFFDe219f1687ffde219f168 /* ExtExtensions.cpp */, + FFFDe219f1d07ffde219f1d0 /* ExtFixedJoint.cpp */, + FFFDe219f2387ffde219f238 /* ExtFixedJointSolverPrep.cpp */, + FFFDe219f2a07ffde219f2a0 /* ExtJoint.cpp */, + FFFDe219f3087ffde219f308 /* ExtMetaData.cpp */, + FFFDe219f3707ffde219f370 /* ExtParticleExt.cpp */, + FFFDe219f3d87ffde219f3d8 /* ExtPrismaticJoint.cpp */, + FFFDe219f4407ffde219f440 /* ExtPrismaticJointSolverPrep.cpp */, + FFFDe219f4a87ffde219f4a8 /* ExtPvd.cpp */, + FFFDe219f5107ffde219f510 /* ExtPxStringTable.cpp */, + FFFDe219f5787ffde219f578 /* ExtRaycastCCD.cpp */, + FFFDe219f5e07ffde219f5e0 /* ExtRevoluteJoint.cpp */, + FFFDe219f6487ffde219f648 /* ExtRevoluteJointSolverPrep.cpp */, + FFFDe219f6b07ffde219f6b0 /* ExtRigidBodyExt.cpp */, + FFFDe219f7187ffde219f718 /* ExtSceneQueryExt.cpp */, + FFFDe219f7807ffde219f780 /* ExtSimpleFactory.cpp */, + FFFDe219f7e87ffde219f7e8 /* ExtSmoothNormals.cpp */, + FFFDe219f8507ffde219f850 /* ExtSphericalJoint.cpp */, + FFFDe219f8b87ffde219f8b8 /* ExtSphericalJointSolverPrep.cpp */, + FFFDe219f9207ffde219f920 /* ExtTriangleMeshExt.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBbd2cc1b07f87bd2cc1b0 /* serialization */ = { + FFFBe29655907ffde2965590 /* serialization */ = { isa = PBXGroup; children = ( - FFFDba81c4007f87ba81c400 /* SnSerialUtils.h */, - FFFDba81c4687f87ba81c468 /* SnSerializationRegistry.h */, - FFFDba81c4d07f87ba81c4d0 /* SnSerialUtils.cpp */, - FFFDba81c5387f87ba81c538 /* SnSerialization.cpp */, - FFFDba81c5a07f87ba81c5a0 /* SnSerializationRegistry.cpp */, - FFFDba81c6087f87ba81c608 /* Binary/SnConvX.h */, - FFFDba81c6707f87ba81c670 /* Binary/SnConvX_Align.h */, - FFFDba81c6d87f87ba81c6d8 /* Binary/SnConvX_Common.h */, - FFFDba81c7407f87ba81c740 /* Binary/SnConvX_MetaData.h */, - FFFDba81c7a87f87ba81c7a8 /* Binary/SnConvX_Output.h */, - FFFDba81c8107f87ba81c810 /* Binary/SnConvX_Union.h */, - FFFDba81c8787f87ba81c878 /* Binary/SnSerializationContext.h */, - FFFDba81c8e07f87ba81c8e0 /* Binary/SnBinaryDeserialization.cpp */, - FFFDba81c9487f87ba81c948 /* Binary/SnBinarySerialization.cpp */, - FFFDba81c9b07f87ba81c9b0 /* Binary/SnConvX.cpp */, - FFFDba81ca187f87ba81ca18 /* Binary/SnConvX_Align.cpp */, - FFFDba81ca807f87ba81ca80 /* Binary/SnConvX_Convert.cpp */, - FFFDba81cae87f87ba81cae8 /* Binary/SnConvX_Error.cpp */, - FFFDba81cb507f87ba81cb50 /* Binary/SnConvX_MetaData.cpp */, - FFFDba81cbb87f87ba81cbb8 /* Binary/SnConvX_Output.cpp */, - FFFDba81cc207f87ba81cc20 /* Binary/SnConvX_Union.cpp */, - FFFDba81cc887f87ba81cc88 /* Binary/SnSerializationContext.cpp */, - FFFDba81ccf07f87ba81ccf0 /* Xml/SnPxStreamOperators.h */, - FFFDba81cd587f87ba81cd58 /* Xml/SnRepX1_0Defaults.h */, - FFFDba81cdc07f87ba81cdc0 /* Xml/SnRepX3_1Defaults.h */, - FFFDba81ce287f87ba81ce28 /* Xml/SnRepX3_2Defaults.h */, - FFFDba81ce907f87ba81ce90 /* Xml/SnRepXCollection.h */, - FFFDba81cef87f87ba81cef8 /* Xml/SnRepXCoreSerializer.h */, - FFFDba81cf607f87ba81cf60 /* Xml/SnRepXSerializerImpl.h */, - FFFDba81cfc87f87ba81cfc8 /* Xml/SnRepXUpgrader.h */, - FFFDba81d0307f87ba81d030 /* Xml/SnSimpleXmlWriter.h */, - FFFDba81d0987f87ba81d098 /* Xml/SnXmlDeserializer.h */, - FFFDba81d1007f87ba81d100 /* Xml/SnXmlImpl.h */, - FFFDba81d1687f87ba81d168 /* Xml/SnXmlMemoryAllocator.h */, - FFFDba81d1d07f87ba81d1d0 /* Xml/SnXmlMemoryPool.h */, - FFFDba81d2387f87ba81d238 /* Xml/SnXmlMemoryPoolStreams.h */, - FFFDba81d2a07f87ba81d2a0 /* Xml/SnXmlReader.h */, - FFFDba81d3087f87ba81d308 /* Xml/SnXmlSerializer.h */, - FFFDba81d3707f87ba81d370 /* Xml/SnXmlSimpleXmlWriter.h */, - FFFDba81d3d87f87ba81d3d8 /* Xml/SnXmlStringToType.h */, - FFFDba81d4407f87ba81d440 /* Xml/SnXmlVisitorReader.h */, - FFFDba81d4a87f87ba81d4a8 /* Xml/SnXmlVisitorWriter.h */, - FFFDba81d5107f87ba81d510 /* Xml/SnXmlWriter.h */, - FFFDba81d5787f87ba81d578 /* Xml/SnJointRepXSerializer.cpp */, - FFFDba81d5e07f87ba81d5e0 /* Xml/SnRepXCoreSerializer.cpp */, - FFFDba81d6487f87ba81d648 /* Xml/SnRepXUpgrader.cpp */, - FFFDba81d6b07f87ba81d6b0 /* Xml/SnXmlSerialization.cpp */, - FFFDba81d7187f87ba81d718 /* File/SnFile.h */, + FFFDe21a20007ffde21a2000 /* SnSerialUtils.h */, + FFFDe21a20687ffde21a2068 /* SnSerializationRegistry.h */, + FFFDe21a20d07ffde21a20d0 /* SnSerialUtils.cpp */, + FFFDe21a21387ffde21a2138 /* SnSerialization.cpp */, + FFFDe21a21a07ffde21a21a0 /* SnSerializationRegistry.cpp */, + FFFDe21a22087ffde21a2208 /* Binary/SnConvX.h */, + FFFDe21a22707ffde21a2270 /* Binary/SnConvX_Align.h */, + FFFDe21a22d87ffde21a22d8 /* Binary/SnConvX_Common.h */, + FFFDe21a23407ffde21a2340 /* Binary/SnConvX_MetaData.h */, + FFFDe21a23a87ffde21a23a8 /* Binary/SnConvX_Output.h */, + FFFDe21a24107ffde21a2410 /* Binary/SnConvX_Union.h */, + FFFDe21a24787ffde21a2478 /* Binary/SnSerializationContext.h */, + FFFDe21a24e07ffde21a24e0 /* Binary/SnBinaryDeserialization.cpp */, + FFFDe21a25487ffde21a2548 /* Binary/SnBinarySerialization.cpp */, + FFFDe21a25b07ffde21a25b0 /* Binary/SnConvX.cpp */, + FFFDe21a26187ffde21a2618 /* Binary/SnConvX_Align.cpp */, + FFFDe21a26807ffde21a2680 /* Binary/SnConvX_Convert.cpp */, + FFFDe21a26e87ffde21a26e8 /* Binary/SnConvX_Error.cpp */, + FFFDe21a27507ffde21a2750 /* Binary/SnConvX_MetaData.cpp */, + FFFDe21a27b87ffde21a27b8 /* Binary/SnConvX_Output.cpp */, + FFFDe21a28207ffde21a2820 /* Binary/SnConvX_Union.cpp */, + FFFDe21a28887ffde21a2888 /* Binary/SnSerializationContext.cpp */, + FFFDe21a28f07ffde21a28f0 /* Xml/SnPxStreamOperators.h */, + FFFDe21a29587ffde21a2958 /* Xml/SnRepX1_0Defaults.h */, + FFFDe21a29c07ffde21a29c0 /* Xml/SnRepX3_1Defaults.h */, + FFFDe21a2a287ffde21a2a28 /* Xml/SnRepX3_2Defaults.h */, + FFFDe21a2a907ffde21a2a90 /* Xml/SnRepXCollection.h */, + FFFDe21a2af87ffde21a2af8 /* Xml/SnRepXCoreSerializer.h */, + FFFDe21a2b607ffde21a2b60 /* Xml/SnRepXSerializerImpl.h */, + FFFDe21a2bc87ffde21a2bc8 /* Xml/SnRepXUpgrader.h */, + FFFDe21a2c307ffde21a2c30 /* Xml/SnSimpleXmlWriter.h */, + FFFDe21a2c987ffde21a2c98 /* Xml/SnXmlDeserializer.h */, + FFFDe21a2d007ffde21a2d00 /* Xml/SnXmlImpl.h */, + FFFDe21a2d687ffde21a2d68 /* Xml/SnXmlMemoryAllocator.h */, + FFFDe21a2dd07ffde21a2dd0 /* Xml/SnXmlMemoryPool.h */, + FFFDe21a2e387ffde21a2e38 /* Xml/SnXmlMemoryPoolStreams.h */, + FFFDe21a2ea07ffde21a2ea0 /* Xml/SnXmlReader.h */, + FFFDe21a2f087ffde21a2f08 /* Xml/SnXmlSerializer.h */, + FFFDe21a2f707ffde21a2f70 /* Xml/SnXmlSimpleXmlWriter.h */, + FFFDe21a2fd87ffde21a2fd8 /* Xml/SnXmlStringToType.h */, + FFFDe21a30407ffde21a3040 /* Xml/SnXmlVisitorReader.h */, + FFFDe21a30a87ffde21a30a8 /* Xml/SnXmlVisitorWriter.h */, + FFFDe21a31107ffde21a3110 /* Xml/SnXmlWriter.h */, + FFFDe21a31787ffde21a3178 /* Xml/SnJointRepXSerializer.cpp */, + FFFDe21a31e07ffde21a31e0 /* Xml/SnRepXCoreSerializer.cpp */, + FFFDe21a32487ffde21a3248 /* Xml/SnRepXUpgrader.cpp */, + FFFDe21a32b07ffde21a32b0 /* Xml/SnXmlSerialization.cpp */, + FFFDe21a33187ffde21a3318 /* File/SnFile.h */, ); name = "serialization"; sourceTree = SOURCE_ROOT; }; - FFFBbd2cc1d87f87bd2cc1d8 /* metadata */ = { + FFFBe29655b87ffde29655b8 /* metadata */ = { isa = PBXGroup; children = ( - FFFDba81b6007f87ba81b600 /* core/include/PvdMetaDataDefineProperties.h */, - FFFDba81b6687f87ba81b668 /* core/include/PvdMetaDataExtensions.h */, - FFFDba81b6d07f87ba81b6d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFDba81b7387f87ba81b738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFDba81b7a07f87ba81b7a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFDba81b8087f87ba81b808 /* core/include/PxMetaDataCompare.h */, - FFFDba81b8707f87ba81b870 /* core/include/PxMetaDataCppPrefix.h */, - FFFDba81b8d87f87ba81b8d8 /* core/include/PxMetaDataObjects.h */, - FFFDba81b9407f87ba81b940 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFDba81b9a87f87ba81b9a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, - FFFDba81ba107f87ba81ba10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, - FFFDba81ba787f87ba81ba78 /* extensions/include/PxExtensionMetaDataObjects.h */, - FFFDba81bae07f87ba81bae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, + FFFDe21a0a007ffde21a0a00 /* core/include/PvdMetaDataDefineProperties.h */, + FFFDe21a0a687ffde21a0a68 /* core/include/PvdMetaDataExtensions.h */, + FFFDe21a0ad07ffde21a0ad0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFDe21a0b387ffde21a0b38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFDe21a0ba07ffde21a0ba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFDe21a0c087ffde21a0c08 /* core/include/PxMetaDataCompare.h */, + FFFDe21a0c707ffde21a0c70 /* core/include/PxMetaDataCppPrefix.h */, + FFFDe21a0cd87ffde21a0cd8 /* core/include/PxMetaDataObjects.h */, + FFFDe21a0d407ffde21a0d40 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFDe21a0da87ffde21a0da8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, + FFFDe21a0e107ffde21a0e10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, + FFFDe21a0e787ffde21a0e78 /* extensions/include/PxExtensionMetaDataObjects.h */, + FFFDe21a0ee07ffde21a0ee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBb9b326907f87b9b32690 /* SceneQuery */ = { + FFFBe450b7207ffde450b720 /* SceneQuery */ = { isa = PBXGroup; children = ( - FFFBb9b31f907f87b9b31f90 /* src */, - FFFBb9b31fb87f87b9b31fb8 /* include */, + FFFBe450e8007ffde450e800 /* src */, + FFFBe450e8287ffde450e828 /* include */, ); name = "SceneQuery"; sourceTree = "<group>"; }; - FFFBb9b31f907f87b9b31f90 /* src */ = { + FFFBe450e8007ffde450e800 /* src */ = { isa = PBXGroup; children = ( - FFFDbc8192007f87bc819200 /* SqAABBPruner.cpp */, - FFFDbc8192687f87bc819268 /* SqAABBTree.cpp */, - FFFDbc8192d07f87bc8192d0 /* SqAABBTreeUpdateMap.cpp */, - FFFDbc8193387f87bc819338 /* SqBounds.cpp */, - FFFDbc8193a07f87bc8193a0 /* SqBucketPruner.cpp */, - FFFDbc8194087f87bc819408 /* SqExtendedBucketPruner.cpp */, - FFFDbc8194707f87bc819470 /* SqMetaData.cpp */, - FFFDbc8194d87f87bc8194d8 /* SqPruningPool.cpp */, - FFFDbc8195407f87bc819540 /* SqPruningStructure.cpp */, - FFFDbc8195a87f87bc8195a8 /* SqSceneQueryManager.cpp */, - FFFDbc8196107f87bc819610 /* SqAABBPruner.h */, - FFFDbc8196787f87bc819678 /* SqAABBTree.h */, - FFFDbc8196e07f87bc8196e0 /* SqAABBTreeQuery.h */, - FFFDbc8197487f87bc819748 /* SqAABBTreeUpdateMap.h */, - FFFDbc8197b07f87bc8197b0 /* SqBounds.h */, - FFFDbc8198187f87bc819818 /* SqBucketPruner.h */, - FFFDbc8198807f87bc819880 /* SqExtendedBucketPruner.h */, - FFFDbc8198e87f87bc8198e8 /* SqPrunerTestsSIMD.h */, - FFFDbc8199507f87bc819950 /* SqPruningPool.h */, - FFFDbc8199b87f87bc8199b8 /* SqTypedef.h */, + FFFDe21a70007ffde21a7000 /* SqAABBPruner.cpp */, + FFFDe21a70687ffde21a7068 /* SqAABBTree.cpp */, + FFFDe21a70d07ffde21a70d0 /* SqAABBTreeUpdateMap.cpp */, + FFFDe21a71387ffde21a7138 /* SqBounds.cpp */, + FFFDe21a71a07ffde21a71a0 /* SqBucketPruner.cpp */, + FFFDe21a72087ffde21a7208 /* SqExtendedBucketPruner.cpp */, + FFFDe21a72707ffde21a7270 /* SqMetaData.cpp */, + FFFDe21a72d87ffde21a72d8 /* SqPruningPool.cpp */, + FFFDe21a73407ffde21a7340 /* SqPruningStructure.cpp */, + FFFDe21a73a87ffde21a73a8 /* SqSceneQueryManager.cpp */, + FFFDe21a74107ffde21a7410 /* SqAABBPruner.h */, + FFFDe21a74787ffde21a7478 /* SqAABBTree.h */, + FFFDe21a74e07ffde21a74e0 /* SqAABBTreeQuery.h */, + FFFDe21a75487ffde21a7548 /* SqAABBTreeUpdateMap.h */, + FFFDe21a75b07ffde21a75b0 /* SqBounds.h */, + FFFDe21a76187ffde21a7618 /* SqBucketPruner.h */, + FFFDe21a76807ffde21a7680 /* SqExtendedBucketPruner.h */, + FFFDe21a76e87ffde21a76e8 /* SqPrunerTestsSIMD.h */, + FFFDe21a77507ffde21a7750 /* SqPruningPool.h */, + FFFDe21a77b87ffde21a77b8 /* SqTypedef.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBb9b31fb87f87b9b31fb8 /* include */ = { + FFFBe450e8287ffde450e828 /* include */ = { isa = PBXGroup; children = ( - FFFDb9b32e407f87b9b32e40 /* SqPruner.h */, - FFFDb9b32ea87f87b9b32ea8 /* SqPrunerMergeData.h */, - FFFDb9b32f107f87b9b32f10 /* SqPruningStructure.h */, - FFFDb9b32f787f87b9b32f78 /* SqSceneQueryManager.h */, + FFFDe450f9307ffde450f930 /* SqPruner.h */, + FFFDe450f9987ffde450f998 /* SqPrunerMergeData.h */, + FFFDe450fa007ffde450fa00 /* SqPruningStructure.h */, + FFFDe450fa687ffde450fa68 /* SqSceneQueryManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBb9b2f6c07f87b9b2f6c0 /* SimulationController */ = { + FFFBe450fbf07ffde450fbf0 /* SimulationController */ = { isa = PBXGroup; children = ( - FFFBb9b302407f87b9b30240 /* include */, - FFFBb9b302687f87b9b30268 /* src */, + FFFBe4513de07ffde4513de0 /* include */, + FFFBe4513e087ffde4513e08 /* src */, ); name = "SimulationController"; sourceTree = "<group>"; }; - FFFBb9b302407f87b9b30240 /* include */ = { + FFFBe4513de07ffde4513de0 /* include */ = { isa = PBXGroup; children = ( - FFFDbc8174007f87bc817400 /* ScActorCore.h */, - FFFDbc8174687f87bc817468 /* ScArticulationCore.h */, - FFFDbc8174d07f87bc8174d0 /* ScArticulationJointCore.h */, - FFFDbc8175387f87bc817538 /* ScBodyCore.h */, - FFFDbc8175a07f87bc8175a0 /* ScClothCore.h */, - FFFDbc8176087f87bc817608 /* ScClothFabricCore.h */, - FFFDbc8176707f87bc817670 /* ScConstraintCore.h */, - FFFDbc8176d87f87bc8176d8 /* ScIterators.h */, - FFFDbc8177407f87bc817740 /* ScMaterialCore.h */, - FFFDbc8177a87f87bc8177a8 /* ScParticleSystemCore.h */, - FFFDbc8178107f87bc817810 /* ScPhysics.h */, - FFFDbc8178787f87bc817878 /* ScRigidCore.h */, - FFFDbc8178e07f87bc8178e0 /* ScScene.h */, - FFFDbc8179487f87bc817948 /* ScShapeCore.h */, - FFFDbc8179b07f87bc8179b0 /* ScStaticCore.h */, + FFFDe21a9a007ffde21a9a00 /* ScActorCore.h */, + FFFDe21a9a687ffde21a9a68 /* ScArticulationCore.h */, + FFFDe21a9ad07ffde21a9ad0 /* ScArticulationJointCore.h */, + FFFDe21a9b387ffde21a9b38 /* ScBodyCore.h */, + FFFDe21a9ba07ffde21a9ba0 /* ScClothCore.h */, + FFFDe21a9c087ffde21a9c08 /* ScClothFabricCore.h */, + FFFDe21a9c707ffde21a9c70 /* ScConstraintCore.h */, + FFFDe21a9cd87ffde21a9cd8 /* ScIterators.h */, + FFFDe21a9d407ffde21a9d40 /* ScMaterialCore.h */, + FFFDe21a9da87ffde21a9da8 /* ScParticleSystemCore.h */, + FFFDe21a9e107ffde21a9e10 /* ScPhysics.h */, + FFFDe21a9e787ffde21a9e78 /* ScRigidCore.h */, + FFFDe21a9ee07ffde21a9ee0 /* ScScene.h */, + FFFDe21a9f487ffde21a9f48 /* ScShapeCore.h */, + FFFDe21a9fb07ffde21a9fb0 /* ScStaticCore.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBb9b302687f87b9b30268 /* src */ = { + FFFBe4513e087ffde4513e08 /* src */ = { isa = PBXGroup; children = ( - FFFDbb812a007f87bb812a00 /* ScActorElementPair.h */, - FFFDbb812a687f87bb812a68 /* ScActorInteraction.h */, - FFFDbb812ad07f87bb812ad0 /* ScActorPair.h */, - FFFDbb812b387f87bb812b38 /* ScActorSim.h */, - FFFDbb812ba07f87bb812ba0 /* ScArticulationJointSim.h */, - FFFDbb812c087f87bb812c08 /* ScArticulationSim.h */, - FFFDbb812c707f87bb812c70 /* ScBodySim.h */, - FFFDbb812cd87f87bb812cd8 /* ScClient.h */, - FFFDbb812d407f87bb812d40 /* ScConstraintGroupNode.h */, - FFFDbb812da87f87bb812da8 /* ScConstraintInteraction.h */, - FFFDbb812e107f87bb812e10 /* ScConstraintProjectionManager.h */, - FFFDbb812e787f87bb812e78 /* ScConstraintProjectionTree.h */, - FFFDbb812ee07f87bb812ee0 /* ScConstraintSim.h */, - FFFDbb812f487f87bb812f48 /* ScContactReportBuffer.h */, - FFFDbb812fb07f87bb812fb0 /* ScContactStream.h */, - FFFDbb8130187f87bb813018 /* ScElementInteractionMarker.h */, - FFFDbb8130807f87bb813080 /* ScElementSim.h */, - FFFDbb8130e87f87bb8130e8 /* ScElementSimInteraction.h */, - FFFDbb8131507f87bb813150 /* ScInteraction.h */, - FFFDbb8131b87f87bb8131b8 /* ScInteractionFlags.h */, - FFFDbb8132207f87bb813220 /* ScNPhaseCore.h */, - FFFDbb8132887f87bb813288 /* ScObjectIDTracker.h */, - FFFDbb8132f07f87bb8132f0 /* ScRbElementInteraction.h */, - FFFDbb8133587f87bb813358 /* ScRigidSim.h */, - FFFDbb8133c07f87bb8133c0 /* ScShapeInteraction.h */, - FFFDbb8134287f87bb813428 /* ScShapeIterator.h */, - FFFDbb8134907f87bb813490 /* ScShapeSim.h */, - FFFDbb8134f87f87bb8134f8 /* ScSimStateData.h */, - FFFDbb8135607f87bb813560 /* ScSimStats.h */, - FFFDbb8135c87f87bb8135c8 /* ScSimulationController.h */, - FFFDbb8136307f87bb813630 /* ScSqBoundsManager.h */, - FFFDbb8136987f87bb813698 /* ScStaticSim.h */, - FFFDbb8137007f87bb813700 /* ScTriggerInteraction.h */, - FFFDbb8137687f87bb813768 /* ScTriggerPairs.h */, - FFFDbb8137d07f87bb8137d0 /* ScActorCore.cpp */, - FFFDbb8138387f87bb813838 /* ScActorSim.cpp */, - FFFDbb8138a07f87bb8138a0 /* ScArticulationCore.cpp */, - FFFDbb8139087f87bb813908 /* ScArticulationJointCore.cpp */, - FFFDbb8139707f87bb813970 /* ScArticulationJointSim.cpp */, - FFFDbb8139d87f87bb8139d8 /* ScArticulationSim.cpp */, - FFFDbb813a407f87bb813a40 /* ScBodyCore.cpp */, - FFFDbb813aa87f87bb813aa8 /* ScBodyCoreKinematic.cpp */, - FFFDbb813b107f87bb813b10 /* ScBodySim.cpp */, - FFFDbb813b787f87bb813b78 /* ScConstraintCore.cpp */, - FFFDbb813be07f87bb813be0 /* ScConstraintGroupNode.cpp */, - FFFDbb813c487f87bb813c48 /* ScConstraintInteraction.cpp */, - FFFDbb813cb07f87bb813cb0 /* ScConstraintProjectionManager.cpp */, - FFFDbb813d187f87bb813d18 /* ScConstraintProjectionTree.cpp */, - FFFDbb813d807f87bb813d80 /* ScConstraintSim.cpp */, - FFFDbb813de87f87bb813de8 /* ScElementInteractionMarker.cpp */, - FFFDbb813e507f87bb813e50 /* ScElementSim.cpp */, - FFFDbb813eb87f87bb813eb8 /* ScInteraction.cpp */, - FFFDbb813f207f87bb813f20 /* ScIterators.cpp */, - FFFDbb813f887f87bb813f88 /* ScMaterialCore.cpp */, - FFFDbb813ff07f87bb813ff0 /* ScMetaData.cpp */, - FFFDbb8140587f87bb814058 /* ScNPhaseCore.cpp */, - FFFDbb8140c07f87bb8140c0 /* ScPhysics.cpp */, - FFFDbb8141287f87bb814128 /* ScRigidCore.cpp */, - FFFDbb8141907f87bb814190 /* ScRigidSim.cpp */, - FFFDbb8141f87f87bb8141f8 /* ScScene.cpp */, - FFFDbb8142607f87bb814260 /* ScShapeCore.cpp */, - FFFDbb8142c87f87bb8142c8 /* ScShapeInteraction.cpp */, - FFFDbb8143307f87bb814330 /* ScShapeSim.cpp */, - FFFDbb8143987f87bb814398 /* ScSimStats.cpp */, - FFFDbb8144007f87bb814400 /* ScSimulationController.cpp */, - FFFDbb8144687f87bb814468 /* ScSqBoundsManager.cpp */, - FFFDbb8144d07f87bb8144d0 /* ScStaticCore.cpp */, - FFFDbb8145387f87bb814538 /* ScStaticSim.cpp */, - FFFDbb8145a07f87bb8145a0 /* ScTriggerInteraction.cpp */, - FFFDbb8146087f87bb814608 /* particles/ScParticleBodyInteraction.h */, - FFFDbb8146707f87bb814670 /* particles/ScParticlePacketShape.h */, - FFFDbb8146d87f87bb8146d8 /* particles/ScParticleSystemSim.h */, - FFFDbb8147407f87bb814740 /* particles/ScParticleBodyInteraction.cpp */, - FFFDbb8147a87f87bb8147a8 /* particles/ScParticlePacketShape.cpp */, - FFFDbb8148107f87bb814810 /* particles/ScParticleSystemCore.cpp */, - FFFDbb8148787f87bb814878 /* particles/ScParticleSystemSim.cpp */, - FFFDbb8148e07f87bb8148e0 /* cloth/ScClothShape.h */, - FFFDbb8149487f87bb814948 /* cloth/ScClothSim.h */, - FFFDbb8149b07f87bb8149b0 /* cloth/ScClothCore.cpp */, - FFFDbb814a187f87bb814a18 /* cloth/ScClothFabricCore.cpp */, - FFFDbb814a807f87bb814a80 /* cloth/ScClothShape.cpp */, - FFFDbb814ae87f87bb814ae8 /* cloth/ScClothSim.cpp */, + FFFDe21afe007ffde21afe00 /* ScActorElementPair.h */, + FFFDe21afe687ffde21afe68 /* ScActorInteraction.h */, + FFFDe21afed07ffde21afed0 /* ScActorPair.h */, + FFFDe21aff387ffde21aff38 /* ScActorSim.h */, + FFFDe21affa07ffde21affa0 /* ScArticulationJointSim.h */, + FFFDe21b00087ffde21b0008 /* ScArticulationSim.h */, + FFFDe21b00707ffde21b0070 /* ScBodySim.h */, + FFFDe21b00d87ffde21b00d8 /* ScClient.h */, + FFFDe21b01407ffde21b0140 /* ScConstraintGroupNode.h */, + FFFDe21b01a87ffde21b01a8 /* ScConstraintInteraction.h */, + FFFDe21b02107ffde21b0210 /* ScConstraintProjectionManager.h */, + FFFDe21b02787ffde21b0278 /* ScConstraintProjectionTree.h */, + FFFDe21b02e07ffde21b02e0 /* ScConstraintSim.h */, + FFFDe21b03487ffde21b0348 /* ScContactReportBuffer.h */, + FFFDe21b03b07ffde21b03b0 /* ScContactStream.h */, + FFFDe21b04187ffde21b0418 /* ScElementInteractionMarker.h */, + FFFDe21b04807ffde21b0480 /* ScElementSim.h */, + FFFDe21b04e87ffde21b04e8 /* ScElementSimInteraction.h */, + FFFDe21b05507ffde21b0550 /* ScInteraction.h */, + FFFDe21b05b87ffde21b05b8 /* ScInteractionFlags.h */, + FFFDe21b06207ffde21b0620 /* ScNPhaseCore.h */, + FFFDe21b06887ffde21b0688 /* ScObjectIDTracker.h */, + FFFDe21b06f07ffde21b06f0 /* ScRbElementInteraction.h */, + FFFDe21b07587ffde21b0758 /* ScRigidSim.h */, + FFFDe21b07c07ffde21b07c0 /* ScShapeInteraction.h */, + FFFDe21b08287ffde21b0828 /* ScShapeIterator.h */, + FFFDe21b08907ffde21b0890 /* ScShapeSim.h */, + FFFDe21b08f87ffde21b08f8 /* ScSimStateData.h */, + FFFDe21b09607ffde21b0960 /* ScSimStats.h */, + FFFDe21b09c87ffde21b09c8 /* ScSimulationController.h */, + FFFDe21b0a307ffde21b0a30 /* ScSqBoundsManager.h */, + FFFDe21b0a987ffde21b0a98 /* ScStaticSim.h */, + FFFDe21b0b007ffde21b0b00 /* ScTriggerInteraction.h */, + FFFDe21b0b687ffde21b0b68 /* ScTriggerPairs.h */, + FFFDe21b0bd07ffde21b0bd0 /* ScActorCore.cpp */, + FFFDe21b0c387ffde21b0c38 /* ScActorSim.cpp */, + FFFDe21b0ca07ffde21b0ca0 /* ScArticulationCore.cpp */, + FFFDe21b0d087ffde21b0d08 /* ScArticulationJointCore.cpp */, + FFFDe21b0d707ffde21b0d70 /* ScArticulationJointSim.cpp */, + FFFDe21b0dd87ffde21b0dd8 /* ScArticulationSim.cpp */, + FFFDe21b0e407ffde21b0e40 /* ScBodyCore.cpp */, + FFFDe21b0ea87ffde21b0ea8 /* ScBodyCoreKinematic.cpp */, + FFFDe21b0f107ffde21b0f10 /* ScBodySim.cpp */, + FFFDe21b0f787ffde21b0f78 /* ScConstraintCore.cpp */, + FFFDe21b0fe07ffde21b0fe0 /* ScConstraintGroupNode.cpp */, + FFFDe21b10487ffde21b1048 /* ScConstraintInteraction.cpp */, + FFFDe21b10b07ffde21b10b0 /* ScConstraintProjectionManager.cpp */, + FFFDe21b11187ffde21b1118 /* ScConstraintProjectionTree.cpp */, + FFFDe21b11807ffde21b1180 /* ScConstraintSim.cpp */, + FFFDe21b11e87ffde21b11e8 /* ScElementInteractionMarker.cpp */, + FFFDe21b12507ffde21b1250 /* ScElementSim.cpp */, + FFFDe21b12b87ffde21b12b8 /* ScInteraction.cpp */, + FFFDe21b13207ffde21b1320 /* ScIterators.cpp */, + FFFDe21b13887ffde21b1388 /* ScMaterialCore.cpp */, + FFFDe21b13f07ffde21b13f0 /* ScMetaData.cpp */, + FFFDe21b14587ffde21b1458 /* ScNPhaseCore.cpp */, + FFFDe21b14c07ffde21b14c0 /* ScPhysics.cpp */, + FFFDe21b15287ffde21b1528 /* ScRigidCore.cpp */, + FFFDe21b15907ffde21b1590 /* ScRigidSim.cpp */, + FFFDe21b15f87ffde21b15f8 /* ScScene.cpp */, + FFFDe21b16607ffde21b1660 /* ScShapeCore.cpp */, + FFFDe21b16c87ffde21b16c8 /* ScShapeInteraction.cpp */, + FFFDe21b17307ffde21b1730 /* ScShapeSim.cpp */, + FFFDe21b17987ffde21b1798 /* ScSimStats.cpp */, + FFFDe21b18007ffde21b1800 /* ScSimulationController.cpp */, + FFFDe21b18687ffde21b1868 /* ScSqBoundsManager.cpp */, + FFFDe21b18d07ffde21b18d0 /* ScStaticCore.cpp */, + FFFDe21b19387ffde21b1938 /* ScStaticSim.cpp */, + FFFDe21b19a07ffde21b19a0 /* ScTriggerInteraction.cpp */, + FFFDe21b1a087ffde21b1a08 /* particles/ScParticleBodyInteraction.h */, + FFFDe21b1a707ffde21b1a70 /* particles/ScParticlePacketShape.h */, + FFFDe21b1ad87ffde21b1ad8 /* particles/ScParticleSystemSim.h */, + FFFDe21b1b407ffde21b1b40 /* particles/ScParticleBodyInteraction.cpp */, + FFFDe21b1ba87ffde21b1ba8 /* particles/ScParticlePacketShape.cpp */, + FFFDe21b1c107ffde21b1c10 /* particles/ScParticleSystemCore.cpp */, + FFFDe21b1c787ffde21b1c78 /* particles/ScParticleSystemSim.cpp */, + FFFDe21b1ce07ffde21b1ce0 /* cloth/ScClothShape.h */, + FFFDe21b1d487ffde21b1d48 /* cloth/ScClothSim.h */, + FFFDe21b1db07ffde21b1db0 /* cloth/ScClothCore.cpp */, + FFFDe21b1e187ffde21b1e18 /* cloth/ScClothFabricCore.cpp */, + FFFDe21b1e807ffde21b1e80 /* cloth/ScClothShape.cpp */, + FFFDe21b1ee87ffde21b1ee8 /* cloth/ScClothSim.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBbd3609d07f87bd3609d0 /* PhysXCooking */ = { + FFFBe2d74eb07ffde2d74eb0 /* PhysXCooking */ = { isa = PBXGroup; children = ( - FFFBbd3641807f87bd364180 /* include */, - FFFBbd3641a87f87bd3641a8 /* src */, + FFFBe2d775607ffde2d77560 /* include */, + FFFBe2d775887ffde2d77588 /* src */, ); name = "PhysXCooking"; sourceTree = "<group>"; }; - FFFBbd3641807f87bd364180 /* include */ = { + FFFBe2d775607ffde2d77560 /* include */ = { isa = PBXGroup; children = ( - FFFDbd3560707f87bd356070 /* PxBVH33MidphaseDesc.h */, - FFFDbd3560d87f87bd3560d8 /* PxBVH34MidphaseDesc.h */, - FFFDbd3561407f87bd356140 /* PxConvexMeshDesc.h */, - FFFDbd3561a87f87bd3561a8 /* PxCooking.h */, - FFFDbd3562107f87bd356210 /* PxMidphaseDesc.h */, - FFFDbd3562787f87bd356278 /* PxTriangleMeshDesc.h */, - FFFDbd3562e07f87bd3562e0 /* Pxc.h */, + FFFDe2d68c307ffde2d68c30 /* PxBVH33MidphaseDesc.h */, + FFFDe2d68c987ffde2d68c98 /* PxBVH34MidphaseDesc.h */, + FFFDe2d68d007ffde2d68d00 /* PxConvexMeshDesc.h */, + FFFDe2d68d687ffde2d68d68 /* PxCooking.h */, + FFFDe2d68dd07ffde2d68dd0 /* PxMidphaseDesc.h */, + FFFDe2d68e387ffde2d68e38 /* PxTriangleMeshDesc.h */, + FFFDe2d68ea07ffde2d68ea0 /* Pxc.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBbd3641a87f87bd3641a8 /* src */ = { + FFFBe2d775887ffde2d77588 /* src */ = { isa = PBXGroup; children = ( - FFFDbb8194007f87bb819400 /* Adjacencies.cpp */, - FFFDbb8194687f87bb819468 /* Cooking.cpp */, - FFFDbb8194d07f87bb8194d0 /* CookingUtils.cpp */, - FFFDbb8195387f87bb819538 /* EdgeList.cpp */, - FFFDbb8195a07f87bb8195a0 /* MeshCleaner.cpp */, - FFFDbb8196087f87bb819608 /* Quantizer.cpp */, - FFFDbb8196707f87bb819670 /* Adjacencies.h */, - FFFDbb8196d87f87bb8196d8 /* Cooking.h */, - FFFDbb8197407f87bb819740 /* CookingUtils.h */, - FFFDbb8197a87f87bb8197a8 /* EdgeList.h */, - FFFDbb8198107f87bb819810 /* MeshCleaner.h */, - FFFDbb8198787f87bb819878 /* Quantizer.h */, - FFFDbb8198e07f87bb8198e0 /* mesh/GrbTriangleMeshCooking.cpp */, - FFFDbb8199487f87bb819948 /* mesh/HeightFieldCooking.cpp */, - FFFDbb8199b07f87bb8199b0 /* mesh/RTreeCooking.cpp */, - FFFDbb819a187f87bb819a18 /* mesh/TriangleMeshBuilder.cpp */, - FFFDbb819a807f87bb819a80 /* mesh/GrbTriangleMeshCooking.h */, - FFFDbb819ae87f87bb819ae8 /* mesh/HeightFieldCooking.h */, - FFFDbb819b507f87bb819b50 /* mesh/QuickSelect.h */, - FFFDbb819bb87f87bb819bb8 /* mesh/RTreeCooking.h */, - FFFDbb819c207f87bb819c20 /* mesh/TriangleMeshBuilder.h */, - FFFDbb819c887f87bb819c88 /* convex/BigConvexDataBuilder.cpp */, - FFFDbb819cf07f87bb819cf0 /* convex/ConvexHullBuilder.cpp */, - FFFDbb819d587f87bb819d58 /* convex/ConvexHullLib.cpp */, - FFFDbb819dc07f87bb819dc0 /* convex/ConvexHullUtils.cpp */, - FFFDbb819e287f87bb819e28 /* convex/ConvexMeshBuilder.cpp */, - FFFDbb819e907f87bb819e90 /* convex/ConvexPolygonsBuilder.cpp */, - FFFDbb819ef87f87bb819ef8 /* convex/InflationConvexHullLib.cpp */, - FFFDbb819f607f87bb819f60 /* convex/QuickHullConvexHullLib.cpp */, - FFFDbb819fc87f87bb819fc8 /* convex/VolumeIntegration.cpp */, - FFFDbb81a0307f87bb81a030 /* convex/BigConvexDataBuilder.h */, - FFFDbb81a0987f87bb81a098 /* convex/ConvexHullBuilder.h */, - FFFDbb81a1007f87bb81a100 /* convex/ConvexHullLib.h */, - FFFDbb81a1687f87bb81a168 /* convex/ConvexHullUtils.h */, - FFFDbb81a1d07f87bb81a1d0 /* convex/ConvexMeshBuilder.h */, - FFFDbb81a2387f87bb81a238 /* convex/ConvexPolygonsBuilder.h */, - FFFDbb81a2a07f87bb81a2a0 /* convex/InflationConvexHullLib.h */, - FFFDbb81a3087f87bb81a308 /* convex/QuickHullConvexHullLib.h */, - FFFDbb81a3707f87bb81a370 /* convex/VolumeIntegration.h */, + FFFDe3829c007ffde3829c00 /* Adjacencies.cpp */, + FFFDe3829c687ffde3829c68 /* Cooking.cpp */, + FFFDe3829cd07ffde3829cd0 /* CookingUtils.cpp */, + FFFDe3829d387ffde3829d38 /* EdgeList.cpp */, + FFFDe3829da07ffde3829da0 /* MeshCleaner.cpp */, + FFFDe3829e087ffde3829e08 /* Quantizer.cpp */, + FFFDe3829e707ffde3829e70 /* Adjacencies.h */, + FFFDe3829ed87ffde3829ed8 /* Cooking.h */, + FFFDe3829f407ffde3829f40 /* CookingUtils.h */, + FFFDe3829fa87ffde3829fa8 /* EdgeList.h */, + FFFDe382a0107ffde382a010 /* MeshCleaner.h */, + FFFDe382a0787ffde382a078 /* Quantizer.h */, + FFFDe382a0e07ffde382a0e0 /* mesh/GrbTriangleMeshCooking.cpp */, + FFFDe382a1487ffde382a148 /* mesh/HeightFieldCooking.cpp */, + FFFDe382a1b07ffde382a1b0 /* mesh/RTreeCooking.cpp */, + FFFDe382a2187ffde382a218 /* mesh/TriangleMeshBuilder.cpp */, + FFFDe382a2807ffde382a280 /* mesh/GrbTriangleMeshCooking.h */, + FFFDe382a2e87ffde382a2e8 /* mesh/HeightFieldCooking.h */, + FFFDe382a3507ffde382a350 /* mesh/QuickSelect.h */, + FFFDe382a3b87ffde382a3b8 /* mesh/RTreeCooking.h */, + FFFDe382a4207ffde382a420 /* mesh/TriangleMeshBuilder.h */, + FFFDe382a4887ffde382a488 /* convex/BigConvexDataBuilder.cpp */, + FFFDe382a4f07ffde382a4f0 /* convex/ConvexHullBuilder.cpp */, + FFFDe382a5587ffde382a558 /* convex/ConvexHullLib.cpp */, + FFFDe382a5c07ffde382a5c0 /* convex/ConvexHullUtils.cpp */, + FFFDe382a6287ffde382a628 /* convex/ConvexMeshBuilder.cpp */, + FFFDe382a6907ffde382a690 /* convex/ConvexPolygonsBuilder.cpp */, + FFFDe382a6f87ffde382a6f8 /* convex/InflationConvexHullLib.cpp */, + FFFDe382a7607ffde382a760 /* convex/QuickHullConvexHullLib.cpp */, + FFFDe382a7c87ffde382a7c8 /* convex/VolumeIntegration.cpp */, + FFFDe382a8307ffde382a830 /* convex/BigConvexDataBuilder.h */, + FFFDe382a8987ffde382a898 /* convex/ConvexHullBuilder.h */, + FFFDe382a9007ffde382a900 /* convex/ConvexHullLib.h */, + FFFDe382a9687ffde382a968 /* convex/ConvexHullUtils.h */, + FFFDe382a9d07ffde382a9d0 /* convex/ConvexMeshBuilder.h */, + FFFDe382aa387ffde382aa38 /* convex/ConvexPolygonsBuilder.h */, + FFFDe382aaa07ffde382aaa0 /* convex/InflationConvexHullLib.h */, + FFFDe382ab087ffde382ab08 /* convex/QuickHullConvexHullLib.h */, + FFFDe382ab707ffde382ab70 /* convex/VolumeIntegration.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBb85164f07f87b85164f0 /* PhysXCommon */ = { + FFFBe2c17a107ffde2c17a10 /* PhysXCommon */ = { isa = PBXGroup; children = ( - FFFBb844f5b07f87b844f5b0 /* include */, - FFFBb844f5d87f87b844f5d8 /* common */, - FFFBb844f6007f87b844f600 /* geomutils */, + FFFBe2c1a5207ffde2c1a520 /* include */, + FFFBe2c1a5487ffde2c1a548 /* common */, + FFFBe2c1a5707ffde2c1a570 /* geomutils */, ); name = "PhysXCommon"; sourceTree = "<group>"; }; - FFFBb844f5b07f87b844f5b0 /* include */ = { + FFFBe2c1a5207ffde2c1a520 /* include */ = { isa = PBXGroup; children = ( - FFFDba05b0007f87ba05b000 /* common/PxBase.h */, - FFFDba05b0687f87ba05b068 /* common/PxCollection.h */, - FFFDba05b0d07f87ba05b0d0 /* common/PxCoreUtilityTypes.h */, - FFFDba05b1387f87ba05b138 /* common/PxMetaData.h */, - FFFDba05b1a07f87ba05b1a0 /* common/PxMetaDataFlags.h */, - FFFDba05b2087f87ba05b208 /* common/PxPhysXCommonConfig.h */, - FFFDba05b2707f87ba05b270 /* common/PxPhysicsInsertionCallback.h */, - FFFDba05b2d87f87ba05b2d8 /* common/PxRenderBuffer.h */, - FFFDba05b3407f87ba05b340 /* common/PxSerialFramework.h */, - FFFDba05b3a87f87ba05b3a8 /* common/PxSerializer.h */, - FFFDba05b4107f87ba05b410 /* common/PxStringTable.h */, - FFFDba05b4787f87ba05b478 /* common/PxTolerancesScale.h */, - FFFDba05b4e07f87ba05b4e0 /* common/PxTypeInfo.h */, - FFFDba05b5487f87ba05b548 /* geometry/PxBoxGeometry.h */, - FFFDba05b5b07f87ba05b5b0 /* geometry/PxCapsuleGeometry.h */, - FFFDba05b6187f87ba05b618 /* geometry/PxConvexMesh.h */, - FFFDba05b6807f87ba05b680 /* geometry/PxConvexMeshGeometry.h */, - FFFDba05b6e87f87ba05b6e8 /* geometry/PxGeometry.h */, - FFFDba05b7507f87ba05b750 /* geometry/PxGeometryHelpers.h */, - FFFDba05b7b87f87ba05b7b8 /* geometry/PxGeometryQuery.h */, - FFFDba05b8207f87ba05b820 /* geometry/PxHeightField.h */, - FFFDba05b8887f87ba05b888 /* geometry/PxHeightFieldDesc.h */, - FFFDba05b8f07f87ba05b8f0 /* geometry/PxHeightFieldFlag.h */, - FFFDba05b9587f87ba05b958 /* geometry/PxHeightFieldGeometry.h */, - FFFDba05b9c07f87ba05b9c0 /* geometry/PxHeightFieldSample.h */, - FFFDba05ba287f87ba05ba28 /* geometry/PxMeshQuery.h */, - FFFDba05ba907f87ba05ba90 /* geometry/PxMeshScale.h */, - FFFDba05baf87f87ba05baf8 /* geometry/PxPlaneGeometry.h */, - FFFDba05bb607f87ba05bb60 /* geometry/PxSimpleTriangleMesh.h */, - FFFDba05bbc87f87ba05bbc8 /* geometry/PxSphereGeometry.h */, - FFFDba05bc307f87ba05bc30 /* geometry/PxTriangle.h */, - FFFDba05bc987f87ba05bc98 /* geometry/PxTriangleMesh.h */, - FFFDba05bd007f87ba05bd00 /* geometry/PxTriangleMeshGeometry.h */, + FFFDe380ec007ffde380ec00 /* common/PxBase.h */, + FFFDe380ec687ffde380ec68 /* common/PxCollection.h */, + FFFDe380ecd07ffde380ecd0 /* common/PxCoreUtilityTypes.h */, + FFFDe380ed387ffde380ed38 /* common/PxMetaData.h */, + FFFDe380eda07ffde380eda0 /* common/PxMetaDataFlags.h */, + FFFDe380ee087ffde380ee08 /* common/PxPhysXCommonConfig.h */, + FFFDe380ee707ffde380ee70 /* common/PxPhysicsInsertionCallback.h */, + FFFDe380eed87ffde380eed8 /* common/PxRenderBuffer.h */, + FFFDe380ef407ffde380ef40 /* common/PxSerialFramework.h */, + FFFDe380efa87ffde380efa8 /* common/PxSerializer.h */, + FFFDe380f0107ffde380f010 /* common/PxStringTable.h */, + FFFDe380f0787ffde380f078 /* common/PxTolerancesScale.h */, + FFFDe380f0e07ffde380f0e0 /* common/PxTypeInfo.h */, + FFFDe380f1487ffde380f148 /* geometry/PxBoxGeometry.h */, + FFFDe380f1b07ffde380f1b0 /* geometry/PxCapsuleGeometry.h */, + FFFDe380f2187ffde380f218 /* geometry/PxConvexMesh.h */, + FFFDe380f2807ffde380f280 /* geometry/PxConvexMeshGeometry.h */, + FFFDe380f2e87ffde380f2e8 /* geometry/PxGeometry.h */, + FFFDe380f3507ffde380f350 /* geometry/PxGeometryHelpers.h */, + FFFDe380f3b87ffde380f3b8 /* geometry/PxGeometryQuery.h */, + FFFDe380f4207ffde380f420 /* geometry/PxHeightField.h */, + FFFDe380f4887ffde380f488 /* geometry/PxHeightFieldDesc.h */, + FFFDe380f4f07ffde380f4f0 /* geometry/PxHeightFieldFlag.h */, + FFFDe380f5587ffde380f558 /* geometry/PxHeightFieldGeometry.h */, + FFFDe380f5c07ffde380f5c0 /* geometry/PxHeightFieldSample.h */, + FFFDe380f6287ffde380f628 /* geometry/PxMeshQuery.h */, + FFFDe380f6907ffde380f690 /* geometry/PxMeshScale.h */, + FFFDe380f6f87ffde380f6f8 /* geometry/PxPlaneGeometry.h */, + FFFDe380f7607ffde380f760 /* geometry/PxSimpleTriangleMesh.h */, + FFFDe380f7c87ffde380f7c8 /* geometry/PxSphereGeometry.h */, + FFFDe380f8307ffde380f830 /* geometry/PxTriangle.h */, + FFFDe380f8987ffde380f898 /* geometry/PxTriangleMesh.h */, + FFFDe380f9007ffde380f900 /* geometry/PxTriangleMeshGeometry.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBb844f5d87f87b844f5d8 /* common */ = { + FFFBe2c1a5487ffde2c1a548 /* common */ = { isa = PBXGroup; children = ( - FFFDb8806c007f87b8806c00 /* src/CmBoxPruning.cpp */, - FFFDb8806c687f87b8806c68 /* src/CmCollection.cpp */, - FFFDb8806cd07f87b8806cd0 /* src/CmMathUtils.cpp */, - FFFDb8806d387f87b8806d38 /* src/CmPtrTable.cpp */, - FFFDb8806da07f87b8806da0 /* src/CmRadixSort.cpp */, - FFFDb8806e087f87b8806e08 /* src/CmRadixSortBuffered.cpp */, - FFFDb8806e707f87b8806e70 /* src/CmRenderOutput.cpp */, - FFFDb8806ed87f87b8806ed8 /* src/CmVisualization.cpp */, - FFFDb8806f407f87b8806f40 /* src/CmBitMap.h */, - FFFDb8806fa87f87b8806fa8 /* src/CmBoxPruning.h */, - FFFDb88070107f87b8807010 /* src/CmCollection.h */, - FFFDb88070787f87b8807078 /* src/CmConeLimitHelper.h */, - FFFDb88070e07f87b88070e0 /* src/CmFlushPool.h */, - FFFDb88071487f87b8807148 /* src/CmIDPool.h */, - FFFDb88071b07f87b88071b0 /* src/CmIO.h */, - FFFDb88072187f87b8807218 /* src/CmMatrix34.h */, - FFFDb88072807f87b8807280 /* src/CmPhysXCommon.h */, - FFFDb88072e87f87b88072e8 /* src/CmPool.h */, - FFFDb88073507f87b8807350 /* src/CmPreallocatingPool.h */, - FFFDb88073b87f87b88073b8 /* src/CmPriorityQueue.h */, - FFFDb88074207f87b8807420 /* src/CmPtrTable.h */, - FFFDb88074887f87b8807488 /* src/CmQueue.h */, - FFFDb88074f07f87b88074f0 /* src/CmRadixSort.h */, - FFFDb88075587f87b8807558 /* src/CmRadixSortBuffered.h */, - FFFDb88075c07f87b88075c0 /* src/CmReaderWriterLock.h */, - FFFDb88076287f87b8807628 /* src/CmRefCountable.h */, - FFFDb88076907f87b8807690 /* src/CmRenderBuffer.h */, - FFFDb88076f87f87b88076f8 /* src/CmRenderOutput.h */, - FFFDb88077607f87b8807760 /* src/CmScaling.h */, - FFFDb88077c87f87b88077c8 /* src/CmSpatialVector.h */, - FFFDb88078307f87b8807830 /* src/CmTask.h */, - FFFDb88078987f87b8807898 /* src/CmTaskPool.h */, - FFFDb88079007f87b8807900 /* src/CmTmpMem.h */, - FFFDb88079687f87b8807968 /* src/CmTransformUtils.h */, - FFFDb88079d07f87b88079d0 /* src/CmUtils.h */, - FFFDb8807a387f87b8807a38 /* src/CmVisualization.h */, + FFFDe30290007ffde3029000 /* src/CmBoxPruning.cpp */, + FFFDe30290687ffde3029068 /* src/CmCollection.cpp */, + FFFDe30290d07ffde30290d0 /* src/CmMathUtils.cpp */, + FFFDe30291387ffde3029138 /* src/CmPtrTable.cpp */, + FFFDe30291a07ffde30291a0 /* src/CmRadixSort.cpp */, + FFFDe30292087ffde3029208 /* src/CmRadixSortBuffered.cpp */, + FFFDe30292707ffde3029270 /* src/CmRenderOutput.cpp */, + FFFDe30292d87ffde30292d8 /* src/CmVisualization.cpp */, + FFFDe30293407ffde3029340 /* src/CmBitMap.h */, + FFFDe30293a87ffde30293a8 /* src/CmBoxPruning.h */, + FFFDe30294107ffde3029410 /* src/CmCollection.h */, + FFFDe30294787ffde3029478 /* src/CmConeLimitHelper.h */, + FFFDe30294e07ffde30294e0 /* src/CmFlushPool.h */, + FFFDe30295487ffde3029548 /* src/CmIDPool.h */, + FFFDe30295b07ffde30295b0 /* src/CmIO.h */, + FFFDe30296187ffde3029618 /* src/CmMatrix34.h */, + FFFDe30296807ffde3029680 /* src/CmPhysXCommon.h */, + FFFDe30296e87ffde30296e8 /* src/CmPool.h */, + FFFDe30297507ffde3029750 /* src/CmPreallocatingPool.h */, + FFFDe30297b87ffde30297b8 /* src/CmPriorityQueue.h */, + FFFDe30298207ffde3029820 /* src/CmPtrTable.h */, + FFFDe30298887ffde3029888 /* src/CmQueue.h */, + FFFDe30298f07ffde30298f0 /* src/CmRadixSort.h */, + FFFDe30299587ffde3029958 /* src/CmRadixSortBuffered.h */, + FFFDe30299c07ffde30299c0 /* src/CmReaderWriterLock.h */, + FFFDe3029a287ffde3029a28 /* src/CmRefCountable.h */, + FFFDe3029a907ffde3029a90 /* src/CmRenderBuffer.h */, + FFFDe3029af87ffde3029af8 /* src/CmRenderOutput.h */, + FFFDe3029b607ffde3029b60 /* src/CmScaling.h */, + FFFDe3029bc87ffde3029bc8 /* src/CmSpatialVector.h */, + FFFDe3029c307ffde3029c30 /* src/CmTask.h */, + FFFDe3029c987ffde3029c98 /* src/CmTaskPool.h */, + FFFDe3029d007ffde3029d00 /* src/CmTmpMem.h */, + FFFDe3029d687ffde3029d68 /* src/CmTransformUtils.h */, + FFFDe3029dd07ffde3029dd0 /* src/CmUtils.h */, + FFFDe3029e387ffde3029e38 /* src/CmVisualization.h */, ); name = "common"; sourceTree = SOURCE_ROOT; }; - FFFBb844f6007f87b844f600 /* geomutils */ = { + FFFBe2c1a5707ffde2c1a570 /* geomutils */ = { isa = PBXGroup; children = ( - FFFDba0646007f87ba064600 /* headers/GuAxes.h */, - FFFDba0646687f87ba064668 /* headers/GuBox.h */, - FFFDba0646d07f87ba0646d0 /* headers/GuDistanceSegmentBox.h */, - FFFDba0647387f87ba064738 /* headers/GuDistanceSegmentSegment.h */, - FFFDba0647a07f87ba0647a0 /* headers/GuIntersectionBoxBox.h */, - FFFDba0648087f87ba064808 /* headers/GuIntersectionTriangleBox.h */, - FFFDba0648707f87ba064870 /* headers/GuRaycastTests.h */, - FFFDba0648d87f87ba0648d8 /* headers/GuSIMDHelpers.h */, - FFFDba0649407f87ba064940 /* headers/GuSegment.h */, - FFFDba0649a87f87ba0649a8 /* ../../Include/GeomUtils */, - FFFDba064a107f87ba064a10 /* src/GuBounds.h */, - FFFDba064a787f87ba064a78 /* src/GuCapsule.h */, - FFFDba064ae07f87ba064ae0 /* src/GuCenterExtents.h */, - FFFDba064b487f87ba064b48 /* src/GuGeometryUnion.h */, - FFFDba064bb07f87ba064bb0 /* src/GuInternal.h */, - FFFDba064c187f87ba064c18 /* src/GuMTD.h */, - FFFDba064c807f87ba064c80 /* src/GuMeshFactory.h */, - FFFDba064ce87f87ba064ce8 /* src/GuOverlapTests.h */, - FFFDba064d507f87ba064d50 /* src/GuSerialize.h */, - FFFDba064db87f87ba064db8 /* src/GuSphere.h */, - FFFDba064e207f87ba064e20 /* src/GuSweepMTD.h */, - FFFDba064e887f87ba064e88 /* src/GuSweepSharedTests.h */, - FFFDba064ef07f87ba064ef0 /* src/GuSweepTests.h */, - FFFDba064f587f87ba064f58 /* src/contact/GuContactMethodImpl.h */, - FFFDba064fc07f87ba064fc0 /* src/contact/GuContactPolygonPolygon.h */, - FFFDba0650287f87ba065028 /* src/contact/GuFeatureCode.h */, - FFFDba0650907f87ba065090 /* src/contact/GuLegacyTraceLineCallback.h */, - FFFDba0650f87f87ba0650f8 /* src/common/GuBarycentricCoordinates.h */, - FFFDba0651607f87ba065160 /* src/common/GuBoxConversion.h */, - FFFDba0651c87f87ba0651c8 /* src/common/GuEdgeCache.h */, - FFFDba0652307f87ba065230 /* src/common/GuEdgeListData.h */, - FFFDba0652987f87ba065298 /* src/common/GuSeparatingAxes.h */, - FFFDba0653007f87ba065300 /* src/convex/GuBigConvexData.h */, - FFFDba0653687f87ba065368 /* src/convex/GuBigConvexData2.h */, - FFFDba0653d07f87ba0653d0 /* src/convex/GuConvexEdgeFlags.h */, - FFFDba0654387f87ba065438 /* src/convex/GuConvexHelper.h */, - FFFDba0654a07f87ba0654a0 /* src/convex/GuConvexMesh.h */, - FFFDba0655087f87ba065508 /* src/convex/GuConvexMeshData.h */, - FFFDba0655707f87ba065570 /* src/convex/GuConvexSupportTable.h */, - FFFDba0655d87f87ba0655d8 /* src/convex/GuConvexUtilsInternal.h */, - FFFDba0656407f87ba065640 /* src/convex/GuCubeIndex.h */, - FFFDba0656a87f87ba0656a8 /* src/convex/GuHillClimbing.h */, - FFFDba0657107f87ba065710 /* src/convex/GuShapeConvex.h */, - FFFDba0657787f87ba065778 /* src/distance/GuDistancePointBox.h */, - FFFDba0657e07f87ba0657e0 /* src/distance/GuDistancePointSegment.h */, - FFFDba0658487f87ba065848 /* src/distance/GuDistancePointTriangle.h */, - FFFDba0658b07f87ba0658b0 /* src/distance/GuDistancePointTriangleSIMD.h */, - FFFDba0659187f87ba065918 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, - FFFDba0659807f87ba065980 /* src/distance/GuDistanceSegmentTriangle.h */, - FFFDba0659e87f87ba0659e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, - FFFDba065a507f87ba065a50 /* src/sweep/GuSweepBoxBox.h */, - FFFDba065ab87f87ba065ab8 /* src/sweep/GuSweepBoxSphere.h */, - FFFDba065b207f87ba065b20 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, - FFFDba065b887f87ba065b88 /* src/sweep/GuSweepBoxTriangle_SAT.h */, - FFFDba065bf07f87ba065bf0 /* src/sweep/GuSweepCapsuleBox.h */, - FFFDba065c587f87ba065c58 /* src/sweep/GuSweepCapsuleCapsule.h */, - FFFDba065cc07f87ba065cc0 /* src/sweep/GuSweepCapsuleTriangle.h */, - FFFDba065d287f87ba065d28 /* src/sweep/GuSweepSphereCapsule.h */, - FFFDba065d907f87ba065d90 /* src/sweep/GuSweepSphereSphere.h */, - FFFDba065df87f87ba065df8 /* src/sweep/GuSweepSphereTriangle.h */, - FFFDba065e607f87ba065e60 /* src/sweep/GuSweepTriangleUtils.h */, - FFFDba065ec87f87ba065ec8 /* src/gjk/GuEPA.h */, - FFFDba065f307f87ba065f30 /* src/gjk/GuEPAFacet.h */, - FFFDba065f987f87ba065f98 /* src/gjk/GuGJK.h */, - FFFDba0660007f87ba066000 /* src/gjk/GuGJKPenetration.h */, - FFFDba0660687f87ba066068 /* src/gjk/GuGJKRaycast.h */, - FFFDba0660d07f87ba0660d0 /* src/gjk/GuGJKSimplex.h */, - FFFDba0661387f87ba066138 /* src/gjk/GuGJKTest.h */, - FFFDba0661a07f87ba0661a0 /* src/gjk/GuGJKType.h */, - FFFDba0662087f87ba066208 /* src/gjk/GuGJKUtil.h */, - FFFDba0662707f87ba066270 /* src/gjk/GuVecBox.h */, - FFFDba0662d87f87ba0662d8 /* src/gjk/GuVecCapsule.h */, - FFFDba0663407f87ba066340 /* src/gjk/GuVecConvex.h */, - FFFDba0663a87f87ba0663a8 /* src/gjk/GuVecConvexHull.h */, - FFFDba0664107f87ba066410 /* src/gjk/GuVecConvexHullNoScale.h */, - FFFDba0664787f87ba066478 /* src/gjk/GuVecPlane.h */, - FFFDba0664e07f87ba0664e0 /* src/gjk/GuVecShrunkBox.h */, - FFFDba0665487f87ba066548 /* src/gjk/GuVecShrunkConvexHull.h */, - FFFDba0665b07f87ba0665b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, - FFFDba0666187f87ba066618 /* src/gjk/GuVecSphere.h */, - FFFDba0666807f87ba066680 /* src/gjk/GuVecTriangle.h */, - FFFDba0666e87f87ba0666e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, - FFFDba0667507f87ba066750 /* src/intersection/GuIntersectionEdgeEdge.h */, - FFFDba0667b87f87ba0667b8 /* src/intersection/GuIntersectionRay.h */, - FFFDba0668207f87ba066820 /* src/intersection/GuIntersectionRayBox.h */, - FFFDba0668887f87ba066888 /* src/intersection/GuIntersectionRayBoxSIMD.h */, - FFFDba0668f07f87ba0668f0 /* src/intersection/GuIntersectionRayCapsule.h */, - FFFDba0669587f87ba066958 /* src/intersection/GuIntersectionRayPlane.h */, - FFFDba0669c07f87ba0669c0 /* src/intersection/GuIntersectionRaySphere.h */, - FFFDba066a287f87ba066a28 /* src/intersection/GuIntersectionRayTriangle.h */, - FFFDba066a907f87ba066a90 /* src/intersection/GuIntersectionSphereBox.h */, - FFFDba066af87f87ba066af8 /* src/mesh/GuBV32.h */, - FFFDba066b607f87ba066b60 /* src/mesh/GuBV32Build.h */, - FFFDba066bc87f87ba066bc8 /* src/mesh/GuBV4.h */, - FFFDba066c307f87ba066c30 /* src/mesh/GuBV4Build.h */, - FFFDba066c987f87ba066c98 /* src/mesh/GuBV4Settings.h */, - FFFDba066d007f87ba066d00 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, - FFFDba066d687f87ba066d68 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, - FFFDba066dd07f87ba066dd0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, - FFFDba066e387f87ba066e38 /* src/mesh/GuBV4_BoxSweep_Internal.h */, - FFFDba066ea07f87ba066ea0 /* src/mesh/GuBV4_BoxSweep_Params.h */, - FFFDba066f087f87ba066f08 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, - FFFDba066f707f87ba066f70 /* src/mesh/GuBV4_Common.h */, - FFFDba066fd87f87ba066fd8 /* src/mesh/GuBV4_Internal.h */, - FFFDba0670407f87ba067040 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, - FFFDba0670a87f87ba0670a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, - FFFDba0671107f87ba067110 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, - FFFDba0671787f87ba067178 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, - FFFDba0671e07f87ba0671e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, - FFFDba0672487f87ba067248 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, - FFFDba0672b07f87ba0672b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, - FFFDba0673187f87ba067318 /* src/mesh/GuBV4_Slabs.h */, - FFFDba0673807f87ba067380 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, - FFFDba0673e87f87ba0673e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, - FFFDba0674507f87ba067450 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, - FFFDba0674b87f87ba0674b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, - FFFDba0675207f87ba067520 /* src/mesh/GuBVConstants.h */, - FFFDba0675887f87ba067588 /* src/mesh/GuMeshData.h */, - FFFDba0675f07f87ba0675f0 /* src/mesh/GuMidphaseInterface.h */, - FFFDba0676587f87ba067658 /* src/mesh/GuRTree.h */, - FFFDba0676c07f87ba0676c0 /* src/mesh/GuSweepConvexTri.h */, - FFFDba0677287f87ba067728 /* src/mesh/GuSweepMesh.h */, - FFFDba0677907f87ba067790 /* src/mesh/GuTriangle32.h */, - FFFDba0677f87f87ba0677f8 /* src/mesh/GuTriangleCache.h */, - FFFDba0678607f87ba067860 /* src/mesh/GuTriangleMesh.h */, - FFFDba0678c87f87ba0678c8 /* src/mesh/GuTriangleMeshBV4.h */, - FFFDba0679307f87ba067930 /* src/mesh/GuTriangleMeshRTree.h */, - FFFDba0679987f87ba067998 /* src/mesh/GuTriangleVertexPointers.h */, - FFFDba067a007f87ba067a00 /* src/hf/GuEntityReport.h */, - FFFDba067a687f87ba067a68 /* src/hf/GuHeightField.h */, - FFFDba067ad07f87ba067ad0 /* src/hf/GuHeightFieldData.h */, - FFFDba067b387f87ba067b38 /* src/hf/GuHeightFieldUtil.h */, - FFFDba067ba07f87ba067ba0 /* src/pcm/GuPCMContactConvexCommon.h */, - FFFDba067c087f87ba067c08 /* src/pcm/GuPCMContactGen.h */, - FFFDba067c707f87ba067c70 /* src/pcm/GuPCMContactGenUtil.h */, - FFFDba067cd87f87ba067cd8 /* src/pcm/GuPCMContactMeshCallback.h */, - FFFDba067d407f87ba067d40 /* src/pcm/GuPCMShapeConvex.h */, - FFFDba067da87f87ba067da8 /* src/pcm/GuPCMTriangleContactGen.h */, - FFFDba067e107f87ba067e10 /* src/pcm/GuPersistentContactManifold.h */, - FFFDba067e787f87ba067e78 /* src/ccd/GuCCDSweepConvexMesh.h */, - FFFDba067ee07f87ba067ee0 /* src/GuBounds.cpp */, - FFFDba067f487f87ba067f48 /* src/GuBox.cpp */, - FFFDba067fb07f87ba067fb0 /* src/GuCCTSweepTests.cpp */, - FFFDba0680187f87ba068018 /* src/GuCapsule.cpp */, - FFFDba0680807f87ba068080 /* src/GuGeometryQuery.cpp */, - FFFDba0680e87f87ba0680e8 /* src/GuGeometryUnion.cpp */, - FFFDba0681507f87ba068150 /* src/GuInternal.cpp */, - FFFDba0681b87f87ba0681b8 /* src/GuMTD.cpp */, - FFFDba0682207f87ba068220 /* src/GuMeshFactory.cpp */, - FFFDba0682887f87ba068288 /* src/GuMetaData.cpp */, - FFFDba0682f07f87ba0682f0 /* src/GuOverlapTests.cpp */, - FFFDba0683587f87ba068358 /* src/GuRaycastTests.cpp */, - FFFDba0683c07f87ba0683c0 /* src/GuSerialize.cpp */, - FFFDba0684287f87ba068428 /* src/GuSweepMTD.cpp */, - FFFDba0684907f87ba068490 /* src/GuSweepSharedTests.cpp */, - FFFDba0684f87f87ba0684f8 /* src/GuSweepTests.cpp */, - FFFDba0685607f87ba068560 /* src/contact/GuContactBoxBox.cpp */, - FFFDba0685c87f87ba0685c8 /* src/contact/GuContactCapsuleBox.cpp */, - FFFDba0686307f87ba068630 /* src/contact/GuContactCapsuleCapsule.cpp */, - FFFDba0686987f87ba068698 /* src/contact/GuContactCapsuleConvex.cpp */, - FFFDba0687007f87ba068700 /* src/contact/GuContactCapsuleMesh.cpp */, - FFFDba0687687f87ba068768 /* src/contact/GuContactConvexConvex.cpp */, - FFFDba0687d07f87ba0687d0 /* src/contact/GuContactConvexMesh.cpp */, - FFFDba0688387f87ba068838 /* src/contact/GuContactPlaneBox.cpp */, - FFFDba0688a07f87ba0688a0 /* src/contact/GuContactPlaneCapsule.cpp */, - FFFDba0689087f87ba068908 /* src/contact/GuContactPlaneConvex.cpp */, - FFFDba0689707f87ba068970 /* src/contact/GuContactPolygonPolygon.cpp */, - FFFDba0689d87f87ba0689d8 /* src/contact/GuContactSphereBox.cpp */, - FFFDba068a407f87ba068a40 /* src/contact/GuContactSphereCapsule.cpp */, - FFFDba068aa87f87ba068aa8 /* src/contact/GuContactSphereMesh.cpp */, - FFFDba068b107f87ba068b10 /* src/contact/GuContactSpherePlane.cpp */, - FFFDba068b787f87ba068b78 /* src/contact/GuContactSphereSphere.cpp */, - FFFDba068be07f87ba068be0 /* src/contact/GuFeatureCode.cpp */, - FFFDba068c487f87ba068c48 /* src/contact/GuLegacyContactBoxHeightField.cpp */, - FFFDba068cb07f87ba068cb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, - FFFDba068d187f87ba068d18 /* src/contact/GuLegacyContactConvexHeightField.cpp */, - FFFDba068d807f87ba068d80 /* src/contact/GuLegacyContactSphereHeightField.cpp */, - FFFDba068de87f87ba068de8 /* src/common/GuBarycentricCoordinates.cpp */, - FFFDba068e507f87ba068e50 /* src/common/GuSeparatingAxes.cpp */, - FFFDba068eb87f87ba068eb8 /* src/convex/GuBigConvexData.cpp */, - FFFDba068f207f87ba068f20 /* src/convex/GuConvexHelper.cpp */, - FFFDba068f887f87ba068f88 /* src/convex/GuConvexMesh.cpp */, - FFFDba068ff07f87ba068ff0 /* src/convex/GuConvexSupportTable.cpp */, - FFFDba0690587f87ba069058 /* src/convex/GuConvexUtilsInternal.cpp */, - FFFDba0690c07f87ba0690c0 /* src/convex/GuHillClimbing.cpp */, - FFFDba0691287f87ba069128 /* src/convex/GuShapeConvex.cpp */, - FFFDba0691907f87ba069190 /* src/distance/GuDistancePointBox.cpp */, - FFFDba0691f87f87ba0691f8 /* src/distance/GuDistancePointTriangle.cpp */, - FFFDba0692607f87ba069260 /* src/distance/GuDistanceSegmentBox.cpp */, - FFFDba0692c87f87ba0692c8 /* src/distance/GuDistanceSegmentSegment.cpp */, - FFFDba0693307f87ba069330 /* src/distance/GuDistanceSegmentTriangle.cpp */, - FFFDba0693987f87ba069398 /* src/sweep/GuSweepBoxBox.cpp */, - FFFDba0694007f87ba069400 /* src/sweep/GuSweepBoxSphere.cpp */, - FFFDba0694687f87ba069468 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, - FFFDba0694d07f87ba0694d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, - FFFDba0695387f87ba069538 /* src/sweep/GuSweepCapsuleBox.cpp */, - FFFDba0695a07f87ba0695a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, - FFFDba0696087f87ba069608 /* src/sweep/GuSweepCapsuleTriangle.cpp */, - FFFDba0696707f87ba069670 /* src/sweep/GuSweepSphereCapsule.cpp */, - FFFDba0696d87f87ba0696d8 /* src/sweep/GuSweepSphereSphere.cpp */, - FFFDba0697407f87ba069740 /* src/sweep/GuSweepSphereTriangle.cpp */, - FFFDba0697a87f87ba0697a8 /* src/sweep/GuSweepTriangleUtils.cpp */, - FFFDba0698107f87ba069810 /* src/gjk/GuEPA.cpp */, - FFFDba0698787f87ba069878 /* src/gjk/GuGJKSimplex.cpp */, - FFFDba0698e07f87ba0698e0 /* src/gjk/GuGJKTest.cpp */, - FFFDba0699487f87ba069948 /* src/intersection/GuIntersectionBoxBox.cpp */, - FFFDba0699b07f87ba0699b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, - FFFDba069a187f87ba069a18 /* src/intersection/GuIntersectionEdgeEdge.cpp */, - FFFDba069a807f87ba069a80 /* src/intersection/GuIntersectionRayBox.cpp */, - FFFDba069ae87f87ba069ae8 /* src/intersection/GuIntersectionRayCapsule.cpp */, - FFFDba069b507f87ba069b50 /* src/intersection/GuIntersectionRaySphere.cpp */, - FFFDba069bb87f87ba069bb8 /* src/intersection/GuIntersectionSphereBox.cpp */, - FFFDba069c207f87ba069c20 /* src/intersection/GuIntersectionTriangleBox.cpp */, - FFFDba069c887f87ba069c88 /* src/mesh/GuBV32.cpp */, - FFFDba069cf07f87ba069cf0 /* src/mesh/GuBV32Build.cpp */, - FFFDba069d587f87ba069d58 /* src/mesh/GuBV4.cpp */, - FFFDba069dc07f87ba069dc0 /* src/mesh/GuBV4Build.cpp */, - FFFDba069e287f87ba069e28 /* src/mesh/GuBV4_AABBSweep.cpp */, - FFFDba069e907f87ba069e90 /* src/mesh/GuBV4_BoxOverlap.cpp */, - FFFDba069ef87f87ba069ef8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, - FFFDba069f607f87ba069f60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, - FFFDba069fc87f87ba069fc8 /* src/mesh/GuBV4_OBBSweep.cpp */, - FFFDba06a0307f87ba06a030 /* src/mesh/GuBV4_Raycast.cpp */, - FFFDba06a0987f87ba06a098 /* src/mesh/GuBV4_SphereOverlap.cpp */, - FFFDba06a1007f87ba06a100 /* src/mesh/GuBV4_SphereSweep.cpp */, - FFFDba06a1687f87ba06a168 /* src/mesh/GuMeshQuery.cpp */, - FFFDba06a1d07f87ba06a1d0 /* src/mesh/GuMidphaseBV4.cpp */, - FFFDba06a2387f87ba06a238 /* src/mesh/GuMidphaseRTree.cpp */, - FFFDba06a2a07f87ba06a2a0 /* src/mesh/GuOverlapTestsMesh.cpp */, - FFFDba06a3087f87ba06a308 /* src/mesh/GuRTree.cpp */, - FFFDba06a3707f87ba06a370 /* src/mesh/GuRTreeQueries.cpp */, - FFFDba06a3d87f87ba06a3d8 /* src/mesh/GuSweepsMesh.cpp */, - FFFDba06a4407f87ba06a440 /* src/mesh/GuTriangleMesh.cpp */, - FFFDba06a4a87f87ba06a4a8 /* src/mesh/GuTriangleMeshBV4.cpp */, - FFFDba06a5107f87ba06a510 /* src/mesh/GuTriangleMeshRTree.cpp */, - FFFDba06a5787f87ba06a578 /* src/hf/GuHeightField.cpp */, - FFFDba06a5e07f87ba06a5e0 /* src/hf/GuHeightFieldUtil.cpp */, - FFFDba06a6487f87ba06a648 /* src/hf/GuOverlapTestsHF.cpp */, - FFFDba06a6b07f87ba06a6b0 /* src/hf/GuSweepsHF.cpp */, - FFFDba06a7187f87ba06a718 /* src/pcm/GuPCMContactBoxBox.cpp */, - FFFDba06a7807f87ba06a780 /* src/pcm/GuPCMContactBoxConvex.cpp */, - FFFDba06a7e87f87ba06a7e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, - FFFDba06a8507f87ba06a850 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, - FFFDba06a8b87f87ba06a8b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, - FFFDba06a9207f87ba06a920 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, - FFFDba06a9887f87ba06a988 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, - FFFDba06a9f07f87ba06a9f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, - FFFDba06aa587f87ba06aa58 /* src/pcm/GuPCMContactConvexConvex.cpp */, - FFFDba06aac07f87ba06aac0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, - FFFDba06ab287f87ba06ab28 /* src/pcm/GuPCMContactConvexMesh.cpp */, - FFFDba06ab907f87ba06ab90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, - FFFDba06abf87f87ba06abf8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, - FFFDba06ac607f87ba06ac60 /* src/pcm/GuPCMContactPlaneBox.cpp */, - FFFDba06acc87f87ba06acc8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, - FFFDba06ad307f87ba06ad30 /* src/pcm/GuPCMContactPlaneConvex.cpp */, - FFFDba06ad987f87ba06ad98 /* src/pcm/GuPCMContactSphereBox.cpp */, - FFFDba06ae007f87ba06ae00 /* src/pcm/GuPCMContactSphereCapsule.cpp */, - FFFDba06ae687f87ba06ae68 /* src/pcm/GuPCMContactSphereConvex.cpp */, - FFFDba06aed07f87ba06aed0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, - FFFDba06af387f87ba06af38 /* src/pcm/GuPCMContactSphereMesh.cpp */, - FFFDba06afa07f87ba06afa0 /* src/pcm/GuPCMContactSpherePlane.cpp */, - FFFDba06b0087f87ba06b008 /* src/pcm/GuPCMContactSphereSphere.cpp */, - FFFDba06b0707f87ba06b070 /* src/pcm/GuPCMShapeConvex.cpp */, - FFFDba06b0d87f87ba06b0d8 /* src/pcm/GuPCMTriangleContactGen.cpp */, - FFFDba06b1407f87ba06b140 /* src/pcm/GuPersistentContactManifold.cpp */, - FFFDba06b1a87f87ba06b1a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, - FFFDba06b2107f87ba06b210 /* src/ccd/GuCCDSweepPrimitives.cpp */, + FFFDe38010007ffde3801000 /* headers/GuAxes.h */, + FFFDe38010687ffde3801068 /* headers/GuBox.h */, + FFFDe38010d07ffde38010d0 /* headers/GuDistanceSegmentBox.h */, + FFFDe38011387ffde3801138 /* headers/GuDistanceSegmentSegment.h */, + FFFDe38011a07ffde38011a0 /* headers/GuIntersectionBoxBox.h */, + FFFDe38012087ffde3801208 /* headers/GuIntersectionTriangleBox.h */, + FFFDe38012707ffde3801270 /* headers/GuRaycastTests.h */, + FFFDe38012d87ffde38012d8 /* headers/GuSIMDHelpers.h */, + FFFDe38013407ffde3801340 /* headers/GuSegment.h */, + FFFDe38013a87ffde38013a8 /* ../../Include/GeomUtils */, + FFFDe38014107ffde3801410 /* src/GuBounds.h */, + FFFDe38014787ffde3801478 /* src/GuCapsule.h */, + FFFDe38014e07ffde38014e0 /* src/GuCenterExtents.h */, + FFFDe38015487ffde3801548 /* src/GuGeometryUnion.h */, + FFFDe38015b07ffde38015b0 /* src/GuInternal.h */, + FFFDe38016187ffde3801618 /* src/GuMTD.h */, + FFFDe38016807ffde3801680 /* src/GuMeshFactory.h */, + FFFDe38016e87ffde38016e8 /* src/GuOverlapTests.h */, + FFFDe38017507ffde3801750 /* src/GuSerialize.h */, + FFFDe38017b87ffde38017b8 /* src/GuSphere.h */, + FFFDe38018207ffde3801820 /* src/GuSweepMTD.h */, + FFFDe38018887ffde3801888 /* src/GuSweepSharedTests.h */, + FFFDe38018f07ffde38018f0 /* src/GuSweepTests.h */, + FFFDe38019587ffde3801958 /* src/contact/GuContactMethodImpl.h */, + FFFDe38019c07ffde38019c0 /* src/contact/GuContactPolygonPolygon.h */, + FFFDe3801a287ffde3801a28 /* src/contact/GuFeatureCode.h */, + FFFDe3801a907ffde3801a90 /* src/contact/GuLegacyTraceLineCallback.h */, + FFFDe3801af87ffde3801af8 /* src/common/GuBarycentricCoordinates.h */, + FFFDe3801b607ffde3801b60 /* src/common/GuBoxConversion.h */, + FFFDe3801bc87ffde3801bc8 /* src/common/GuEdgeCache.h */, + FFFDe3801c307ffde3801c30 /* src/common/GuEdgeListData.h */, + FFFDe3801c987ffde3801c98 /* src/common/GuSeparatingAxes.h */, + FFFDe3801d007ffde3801d00 /* src/convex/GuBigConvexData.h */, + FFFDe3801d687ffde3801d68 /* src/convex/GuBigConvexData2.h */, + FFFDe3801dd07ffde3801dd0 /* src/convex/GuConvexEdgeFlags.h */, + FFFDe3801e387ffde3801e38 /* src/convex/GuConvexHelper.h */, + FFFDe3801ea07ffde3801ea0 /* src/convex/GuConvexMesh.h */, + FFFDe3801f087ffde3801f08 /* src/convex/GuConvexMeshData.h */, + FFFDe3801f707ffde3801f70 /* src/convex/GuConvexSupportTable.h */, + FFFDe3801fd87ffde3801fd8 /* src/convex/GuConvexUtilsInternal.h */, + FFFDe38020407ffde3802040 /* src/convex/GuCubeIndex.h */, + FFFDe38020a87ffde38020a8 /* src/convex/GuHillClimbing.h */, + FFFDe38021107ffde3802110 /* src/convex/GuShapeConvex.h */, + FFFDe38021787ffde3802178 /* src/distance/GuDistancePointBox.h */, + FFFDe38021e07ffde38021e0 /* src/distance/GuDistancePointSegment.h */, + FFFDe38022487ffde3802248 /* src/distance/GuDistancePointTriangle.h */, + FFFDe38022b07ffde38022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, + FFFDe38023187ffde3802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, + FFFDe38023807ffde3802380 /* src/distance/GuDistanceSegmentTriangle.h */, + FFFDe38023e87ffde38023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, + FFFDe38024507ffde3802450 /* src/sweep/GuSweepBoxBox.h */, + FFFDe38024b87ffde38024b8 /* src/sweep/GuSweepBoxSphere.h */, + FFFDe38025207ffde3802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, + FFFDe38025887ffde3802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, + FFFDe38025f07ffde38025f0 /* src/sweep/GuSweepCapsuleBox.h */, + FFFDe38026587ffde3802658 /* src/sweep/GuSweepCapsuleCapsule.h */, + FFFDe38026c07ffde38026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, + FFFDe38027287ffde3802728 /* src/sweep/GuSweepSphereCapsule.h */, + FFFDe38027907ffde3802790 /* src/sweep/GuSweepSphereSphere.h */, + FFFDe38027f87ffde38027f8 /* src/sweep/GuSweepSphereTriangle.h */, + FFFDe38028607ffde3802860 /* src/sweep/GuSweepTriangleUtils.h */, + FFFDe38028c87ffde38028c8 /* src/gjk/GuEPA.h */, + FFFDe38029307ffde3802930 /* src/gjk/GuEPAFacet.h */, + FFFDe38029987ffde3802998 /* src/gjk/GuGJK.h */, + FFFDe3802a007ffde3802a00 /* src/gjk/GuGJKPenetration.h */, + FFFDe3802a687ffde3802a68 /* src/gjk/GuGJKRaycast.h */, + FFFDe3802ad07ffde3802ad0 /* src/gjk/GuGJKSimplex.h */, + FFFDe3802b387ffde3802b38 /* src/gjk/GuGJKTest.h */, + FFFDe3802ba07ffde3802ba0 /* src/gjk/GuGJKType.h */, + FFFDe3802c087ffde3802c08 /* src/gjk/GuGJKUtil.h */, + FFFDe3802c707ffde3802c70 /* src/gjk/GuVecBox.h */, + FFFDe3802cd87ffde3802cd8 /* src/gjk/GuVecCapsule.h */, + FFFDe3802d407ffde3802d40 /* src/gjk/GuVecConvex.h */, + FFFDe3802da87ffde3802da8 /* src/gjk/GuVecConvexHull.h */, + FFFDe3802e107ffde3802e10 /* src/gjk/GuVecConvexHullNoScale.h */, + FFFDe3802e787ffde3802e78 /* src/gjk/GuVecPlane.h */, + FFFDe3802ee07ffde3802ee0 /* src/gjk/GuVecShrunkBox.h */, + FFFDe3802f487ffde3802f48 /* src/gjk/GuVecShrunkConvexHull.h */, + FFFDe3802fb07ffde3802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, + FFFDe38030187ffde3803018 /* src/gjk/GuVecSphere.h */, + FFFDe38030807ffde3803080 /* src/gjk/GuVecTriangle.h */, + FFFDe38030e87ffde38030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, + FFFDe38031507ffde3803150 /* src/intersection/GuIntersectionEdgeEdge.h */, + FFFDe38031b87ffde38031b8 /* src/intersection/GuIntersectionRay.h */, + FFFDe38032207ffde3803220 /* src/intersection/GuIntersectionRayBox.h */, + FFFDe38032887ffde3803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, + FFFDe38032f07ffde38032f0 /* src/intersection/GuIntersectionRayCapsule.h */, + FFFDe38033587ffde3803358 /* src/intersection/GuIntersectionRayPlane.h */, + FFFDe38033c07ffde38033c0 /* src/intersection/GuIntersectionRaySphere.h */, + FFFDe38034287ffde3803428 /* src/intersection/GuIntersectionRayTriangle.h */, + FFFDe38034907ffde3803490 /* src/intersection/GuIntersectionSphereBox.h */, + FFFDe38034f87ffde38034f8 /* src/mesh/GuBV32.h */, + FFFDe38035607ffde3803560 /* src/mesh/GuBV32Build.h */, + FFFDe38035c87ffde38035c8 /* src/mesh/GuBV4.h */, + FFFDe38036307ffde3803630 /* src/mesh/GuBV4Build.h */, + FFFDe38036987ffde3803698 /* src/mesh/GuBV4Settings.h */, + FFFDe38037007ffde3803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, + FFFDe38037687ffde3803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, + FFFDe38037d07ffde38037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, + FFFDe38038387ffde3803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, + FFFDe38038a07ffde38038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, + FFFDe38039087ffde3803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, + FFFDe38039707ffde3803970 /* src/mesh/GuBV4_Common.h */, + FFFDe38039d87ffde38039d8 /* src/mesh/GuBV4_Internal.h */, + FFFDe3803a407ffde3803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, + FFFDe3803aa87ffde3803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, + FFFDe3803b107ffde3803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, + FFFDe3803b787ffde3803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, + FFFDe3803be07ffde3803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, + FFFDe3803c487ffde3803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, + FFFDe3803cb07ffde3803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, + FFFDe3803d187ffde3803d18 /* src/mesh/GuBV4_Slabs.h */, + FFFDe3803d807ffde3803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, + FFFDe3803de87ffde3803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, + FFFDe3803e507ffde3803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, + FFFDe3803eb87ffde3803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, + FFFDe3803f207ffde3803f20 /* src/mesh/GuBVConstants.h */, + FFFDe3803f887ffde3803f88 /* src/mesh/GuMeshData.h */, + FFFDe3803ff07ffde3803ff0 /* src/mesh/GuMidphaseInterface.h */, + FFFDe38040587ffde3804058 /* src/mesh/GuRTree.h */, + FFFDe38040c07ffde38040c0 /* src/mesh/GuSweepConvexTri.h */, + FFFDe38041287ffde3804128 /* src/mesh/GuSweepMesh.h */, + FFFDe38041907ffde3804190 /* src/mesh/GuTriangle32.h */, + FFFDe38041f87ffde38041f8 /* src/mesh/GuTriangleCache.h */, + FFFDe38042607ffde3804260 /* src/mesh/GuTriangleMesh.h */, + FFFDe38042c87ffde38042c8 /* src/mesh/GuTriangleMeshBV4.h */, + FFFDe38043307ffde3804330 /* src/mesh/GuTriangleMeshRTree.h */, + FFFDe38043987ffde3804398 /* src/mesh/GuTriangleVertexPointers.h */, + FFFDe38044007ffde3804400 /* src/hf/GuEntityReport.h */, + FFFDe38044687ffde3804468 /* src/hf/GuHeightField.h */, + FFFDe38044d07ffde38044d0 /* src/hf/GuHeightFieldData.h */, + FFFDe38045387ffde3804538 /* src/hf/GuHeightFieldUtil.h */, + FFFDe38045a07ffde38045a0 /* src/pcm/GuPCMContactConvexCommon.h */, + FFFDe38046087ffde3804608 /* src/pcm/GuPCMContactGen.h */, + FFFDe38046707ffde3804670 /* src/pcm/GuPCMContactGenUtil.h */, + FFFDe38046d87ffde38046d8 /* src/pcm/GuPCMContactMeshCallback.h */, + FFFDe38047407ffde3804740 /* src/pcm/GuPCMShapeConvex.h */, + FFFDe38047a87ffde38047a8 /* src/pcm/GuPCMTriangleContactGen.h */, + FFFDe38048107ffde3804810 /* src/pcm/GuPersistentContactManifold.h */, + FFFDe38048787ffde3804878 /* src/ccd/GuCCDSweepConvexMesh.h */, + FFFDe38048e07ffde38048e0 /* src/GuBounds.cpp */, + FFFDe38049487ffde3804948 /* src/GuBox.cpp */, + FFFDe38049b07ffde38049b0 /* src/GuCCTSweepTests.cpp */, + FFFDe3804a187ffde3804a18 /* src/GuCapsule.cpp */, + FFFDe3804a807ffde3804a80 /* src/GuGeometryQuery.cpp */, + FFFDe3804ae87ffde3804ae8 /* src/GuGeometryUnion.cpp */, + FFFDe3804b507ffde3804b50 /* src/GuInternal.cpp */, + FFFDe3804bb87ffde3804bb8 /* src/GuMTD.cpp */, + FFFDe3804c207ffde3804c20 /* src/GuMeshFactory.cpp */, + FFFDe3804c887ffde3804c88 /* src/GuMetaData.cpp */, + FFFDe3804cf07ffde3804cf0 /* src/GuOverlapTests.cpp */, + FFFDe3804d587ffde3804d58 /* src/GuRaycastTests.cpp */, + FFFDe3804dc07ffde3804dc0 /* src/GuSerialize.cpp */, + FFFDe3804e287ffde3804e28 /* src/GuSweepMTD.cpp */, + FFFDe3804e907ffde3804e90 /* src/GuSweepSharedTests.cpp */, + FFFDe3804ef87ffde3804ef8 /* src/GuSweepTests.cpp */, + FFFDe3804f607ffde3804f60 /* src/contact/GuContactBoxBox.cpp */, + FFFDe3804fc87ffde3804fc8 /* src/contact/GuContactCapsuleBox.cpp */, + FFFDe38050307ffde3805030 /* src/contact/GuContactCapsuleCapsule.cpp */, + FFFDe38050987ffde3805098 /* src/contact/GuContactCapsuleConvex.cpp */, + FFFDe38051007ffde3805100 /* src/contact/GuContactCapsuleMesh.cpp */, + FFFDe38051687ffde3805168 /* src/contact/GuContactConvexConvex.cpp */, + FFFDe38051d07ffde38051d0 /* src/contact/GuContactConvexMesh.cpp */, + FFFDe38052387ffde3805238 /* src/contact/GuContactPlaneBox.cpp */, + FFFDe38052a07ffde38052a0 /* src/contact/GuContactPlaneCapsule.cpp */, + FFFDe38053087ffde3805308 /* src/contact/GuContactPlaneConvex.cpp */, + FFFDe38053707ffde3805370 /* src/contact/GuContactPolygonPolygon.cpp */, + FFFDe38053d87ffde38053d8 /* src/contact/GuContactSphereBox.cpp */, + FFFDe38054407ffde3805440 /* src/contact/GuContactSphereCapsule.cpp */, + FFFDe38054a87ffde38054a8 /* src/contact/GuContactSphereMesh.cpp */, + FFFDe38055107ffde3805510 /* src/contact/GuContactSpherePlane.cpp */, + FFFDe38055787ffde3805578 /* src/contact/GuContactSphereSphere.cpp */, + FFFDe38055e07ffde38055e0 /* src/contact/GuFeatureCode.cpp */, + FFFDe38056487ffde3805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, + FFFDe38056b07ffde38056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, + FFFDe38057187ffde3805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, + FFFDe38057807ffde3805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, + FFFDe38057e87ffde38057e8 /* src/common/GuBarycentricCoordinates.cpp */, + FFFDe38058507ffde3805850 /* src/common/GuSeparatingAxes.cpp */, + FFFDe38058b87ffde38058b8 /* src/convex/GuBigConvexData.cpp */, + FFFDe38059207ffde3805920 /* src/convex/GuConvexHelper.cpp */, + FFFDe38059887ffde3805988 /* src/convex/GuConvexMesh.cpp */, + FFFDe38059f07ffde38059f0 /* src/convex/GuConvexSupportTable.cpp */, + FFFDe3805a587ffde3805a58 /* src/convex/GuConvexUtilsInternal.cpp */, + FFFDe3805ac07ffde3805ac0 /* src/convex/GuHillClimbing.cpp */, + FFFDe3805b287ffde3805b28 /* src/convex/GuShapeConvex.cpp */, + FFFDe3805b907ffde3805b90 /* src/distance/GuDistancePointBox.cpp */, + FFFDe3805bf87ffde3805bf8 /* src/distance/GuDistancePointTriangle.cpp */, + FFFDe3805c607ffde3805c60 /* src/distance/GuDistanceSegmentBox.cpp */, + FFFDe3805cc87ffde3805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, + FFFDe3805d307ffde3805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, + FFFDe3805d987ffde3805d98 /* src/sweep/GuSweepBoxBox.cpp */, + FFFDe3805e007ffde3805e00 /* src/sweep/GuSweepBoxSphere.cpp */, + FFFDe3805e687ffde3805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, + FFFDe3805ed07ffde3805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, + FFFDe3805f387ffde3805f38 /* src/sweep/GuSweepCapsuleBox.cpp */, + FFFDe3805fa07ffde3805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, + FFFDe38060087ffde3806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, + FFFDe38060707ffde3806070 /* src/sweep/GuSweepSphereCapsule.cpp */, + FFFDe38060d87ffde38060d8 /* src/sweep/GuSweepSphereSphere.cpp */, + FFFDe38061407ffde3806140 /* src/sweep/GuSweepSphereTriangle.cpp */, + FFFDe38061a87ffde38061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, + FFFDe38062107ffde3806210 /* src/gjk/GuEPA.cpp */, + FFFDe38062787ffde3806278 /* src/gjk/GuGJKSimplex.cpp */, + FFFDe38062e07ffde38062e0 /* src/gjk/GuGJKTest.cpp */, + FFFDe38063487ffde3806348 /* src/intersection/GuIntersectionBoxBox.cpp */, + FFFDe38063b07ffde38063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, + FFFDe38064187ffde3806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, + FFFDe38064807ffde3806480 /* src/intersection/GuIntersectionRayBox.cpp */, + FFFDe38064e87ffde38064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, + FFFDe38065507ffde3806550 /* src/intersection/GuIntersectionRaySphere.cpp */, + FFFDe38065b87ffde38065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, + FFFDe38066207ffde3806620 /* src/intersection/GuIntersectionTriangleBox.cpp */, + FFFDe38066887ffde3806688 /* src/mesh/GuBV32.cpp */, + FFFDe38066f07ffde38066f0 /* src/mesh/GuBV32Build.cpp */, + FFFDe38067587ffde3806758 /* src/mesh/GuBV4.cpp */, + FFFDe38067c07ffde38067c0 /* src/mesh/GuBV4Build.cpp */, + FFFDe38068287ffde3806828 /* src/mesh/GuBV4_AABBSweep.cpp */, + FFFDe38068907ffde3806890 /* src/mesh/GuBV4_BoxOverlap.cpp */, + FFFDe38068f87ffde38068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, + FFFDe38069607ffde3806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, + FFFDe38069c87ffde38069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, + FFFDe3806a307ffde3806a30 /* src/mesh/GuBV4_Raycast.cpp */, + FFFDe3806a987ffde3806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, + FFFDe3806b007ffde3806b00 /* src/mesh/GuBV4_SphereSweep.cpp */, + FFFDe3806b687ffde3806b68 /* src/mesh/GuMeshQuery.cpp */, + FFFDe3806bd07ffde3806bd0 /* src/mesh/GuMidphaseBV4.cpp */, + FFFDe3806c387ffde3806c38 /* src/mesh/GuMidphaseRTree.cpp */, + FFFDe3806ca07ffde3806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, + FFFDe3806d087ffde3806d08 /* src/mesh/GuRTree.cpp */, + FFFDe3806d707ffde3806d70 /* src/mesh/GuRTreeQueries.cpp */, + FFFDe3806dd87ffde3806dd8 /* src/mesh/GuSweepsMesh.cpp */, + FFFDe3806e407ffde3806e40 /* src/mesh/GuTriangleMesh.cpp */, + FFFDe3806ea87ffde3806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, + FFFDe3806f107ffde3806f10 /* src/mesh/GuTriangleMeshRTree.cpp */, + FFFDe3806f787ffde3806f78 /* src/hf/GuHeightField.cpp */, + FFFDe3806fe07ffde3806fe0 /* src/hf/GuHeightFieldUtil.cpp */, + FFFDe38070487ffde3807048 /* src/hf/GuOverlapTestsHF.cpp */, + FFFDe38070b07ffde38070b0 /* src/hf/GuSweepsHF.cpp */, + FFFDe38071187ffde3807118 /* src/pcm/GuPCMContactBoxBox.cpp */, + FFFDe38071807ffde3807180 /* src/pcm/GuPCMContactBoxConvex.cpp */, + FFFDe38071e87ffde38071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, + FFFDe38072507ffde3807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, + FFFDe38072b87ffde38072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, + FFFDe38073207ffde3807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, + FFFDe38073887ffde3807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, + FFFDe38073f07ffde38073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, + FFFDe38074587ffde3807458 /* src/pcm/GuPCMContactConvexConvex.cpp */, + FFFDe38074c07ffde38074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, + FFFDe38075287ffde3807528 /* src/pcm/GuPCMContactConvexMesh.cpp */, + FFFDe38075907ffde3807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, + FFFDe38075f87ffde38075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, + FFFDe38076607ffde3807660 /* src/pcm/GuPCMContactPlaneBox.cpp */, + FFFDe38076c87ffde38076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, + FFFDe38077307ffde3807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, + FFFDe38077987ffde3807798 /* src/pcm/GuPCMContactSphereBox.cpp */, + FFFDe38078007ffde3807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, + FFFDe38078687ffde3807868 /* src/pcm/GuPCMContactSphereConvex.cpp */, + FFFDe38078d07ffde38078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, + FFFDe38079387ffde3807938 /* src/pcm/GuPCMContactSphereMesh.cpp */, + FFFDe38079a07ffde38079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, + FFFDe3807a087ffde3807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, + FFFDe3807a707ffde3807a70 /* src/pcm/GuPCMShapeConvex.cpp */, + FFFDe3807ad87ffde3807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, + FFFDe3807b407ffde3807b40 /* src/pcm/GuPersistentContactManifold.cpp */, + FFFDe3807ba87ffde3807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, + FFFDe3807c107ffde3807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, ); name = "geomutils"; sourceTree = SOURCE_ROOT; }; - FFFBb8500ad07f87b8500ad0 /* PxFoundation */ = { + FFFBe2c0b7d07ffde2c0b7d0 /* PxFoundation */ = { isa = PBXGroup; children = ( - FFFBb850a1b07f87b850a1b0 /* include */, - FFFBb850a1d87f87b850a1d8 /* src */, + FFFBe2c08f907ffde2c08f90 /* include */, + FFFBe2c08fb87ffde2c08fb8 /* src */, ); name = "PxFoundation"; sourceTree = "<group>"; }; - FFFBb850a1b07f87b850a1b0 /* include */ = { + FFFBe2c08f907ffde2c08f90 /* include */ = { isa = PBXGroup; children = ( - FFFDb90192007f87b9019200 /* Px.h */, - FFFDb90192687f87b9019268 /* PxAllocatorCallback.h */, - FFFDb90192d07f87b90192d0 /* PxAssert.h */, - FFFDb90193387f87b9019338 /* PxBitAndData.h */, - FFFDb90193a07f87b90193a0 /* PxBounds3.h */, - FFFDb90194087f87b9019408 /* PxErrorCallback.h */, - FFFDb90194707f87b9019470 /* PxErrors.h */, - FFFDb90194d87f87b90194d8 /* PxFlags.h */, - FFFDb90195407f87b9019540 /* PxFoundation.h */, - FFFDb90195a87f87b90195a8 /* PxFoundationVersion.h */, - FFFDb90196107f87b9019610 /* PxIO.h */, - FFFDb90196787f87b9019678 /* PxIntrinsics.h */, - FFFDb90196e07f87b90196e0 /* PxMat33.h */, - FFFDb90197487f87b9019748 /* PxMat44.h */, - FFFDb90197b07f87b90197b0 /* PxMath.h */, - FFFDb90198187f87b9019818 /* PxMathUtils.h */, - FFFDb90198807f87b9019880 /* PxMemory.h */, - FFFDb90198e87f87b90198e8 /* PxPlane.h */, - FFFDb90199507f87b9019950 /* PxPreprocessor.h */, - FFFDb90199b87f87b90199b8 /* PxProfiler.h */, - FFFDb9019a207f87b9019a20 /* PxQuat.h */, - FFFDb9019a887f87b9019a88 /* PxSimpleTypes.h */, - FFFDb9019af07f87b9019af0 /* PxStrideIterator.h */, - FFFDb9019b587f87b9019b58 /* PxTransform.h */, - FFFDb9019bc07f87b9019bc0 /* PxUnionCast.h */, - FFFDb9019c287f87b9019c28 /* PxVec2.h */, - FFFDb9019c907f87b9019c90 /* PxVec3.h */, - FFFDb9019cf87f87b9019cf8 /* PxVec4.h */, - FFFDb9019d607f87b9019d60 /* unix/PxUnixIntrinsics.h */, + FFFDe3003c007ffde3003c00 /* Px.h */, + FFFDe3003c687ffde3003c68 /* PxAllocatorCallback.h */, + FFFDe3003cd07ffde3003cd0 /* PxAssert.h */, + FFFDe3003d387ffde3003d38 /* PxBitAndData.h */, + FFFDe3003da07ffde3003da0 /* PxBounds3.h */, + FFFDe3003e087ffde3003e08 /* PxErrorCallback.h */, + FFFDe3003e707ffde3003e70 /* PxErrors.h */, + FFFDe3003ed87ffde3003ed8 /* PxFlags.h */, + FFFDe3003f407ffde3003f40 /* PxFoundation.h */, + FFFDe3003fa87ffde3003fa8 /* PxFoundationVersion.h */, + FFFDe30040107ffde3004010 /* PxIO.h */, + FFFDe30040787ffde3004078 /* PxIntrinsics.h */, + FFFDe30040e07ffde30040e0 /* PxMat33.h */, + FFFDe30041487ffde3004148 /* PxMat44.h */, + FFFDe30041b07ffde30041b0 /* PxMath.h */, + FFFDe30042187ffde3004218 /* PxMathUtils.h */, + FFFDe30042807ffde3004280 /* PxMemory.h */, + FFFDe30042e87ffde30042e8 /* PxPlane.h */, + FFFDe30043507ffde3004350 /* PxPreprocessor.h */, + FFFDe30043b87ffde30043b8 /* PxProfiler.h */, + FFFDe30044207ffde3004420 /* PxQuat.h */, + FFFDe30044887ffde3004488 /* PxSimpleTypes.h */, + FFFDe30044f07ffde30044f0 /* PxStrideIterator.h */, + FFFDe30045587ffde3004558 /* PxTransform.h */, + FFFDe30045c07ffde30045c0 /* PxUnionCast.h */, + FFFDe30046287ffde3004628 /* PxVec2.h */, + FFFDe30046907ffde3004690 /* PxVec3.h */, + FFFDe30046f87ffde30046f8 /* PxVec4.h */, + FFFDe30047607ffde3004760 /* unix/PxUnixIntrinsics.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBb850a1d87f87b850a1d8 /* src */ = { + FFFBe2c08fb87ffde2c08fb8 /* src */ = { isa = PBXGroup; children = ( - FFFDb900fc007f87b900fc00 /* include/Ps.h */, - FFFDb900fc687f87b900fc68 /* include/PsAlignedMalloc.h */, - FFFDb900fcd07f87b900fcd0 /* include/PsAlloca.h */, - FFFDb900fd387f87b900fd38 /* include/PsAllocator.h */, - FFFDb900fda07f87b900fda0 /* include/PsAoS.h */, - FFFDb900fe087f87b900fe08 /* include/PsArray.h */, - FFFDb900fe707f87b900fe70 /* include/PsAtomic.h */, - FFFDb900fed87f87b900fed8 /* include/PsBasicTemplates.h */, - FFFDb900ff407f87b900ff40 /* include/PsBitUtils.h */, - FFFDb900ffa87f87b900ffa8 /* include/PsBroadcast.h */, - FFFDb90100107f87b9010010 /* include/PsCpu.h */, - FFFDb90100787f87b9010078 /* include/PsFPU.h */, - FFFDb90100e07f87b90100e0 /* include/PsFoundation.h */, - FFFDb90101487f87b9010148 /* include/PsHash.h */, - FFFDb90101b07f87b90101b0 /* include/PsHashInternals.h */, - FFFDb90102187f87b9010218 /* include/PsHashMap.h */, - FFFDb90102807f87b9010280 /* include/PsHashSet.h */, - FFFDb90102e87f87b90102e8 /* include/PsInlineAllocator.h */, - FFFDb90103507f87b9010350 /* include/PsInlineAoS.h */, - FFFDb90103b87f87b90103b8 /* include/PsInlineArray.h */, - FFFDb90104207f87b9010420 /* include/PsIntrinsics.h */, - FFFDb90104887f87b9010488 /* include/PsMathUtils.h */, - FFFDb90104f07f87b90104f0 /* include/PsMutex.h */, - FFFDb90105587f87b9010558 /* include/PsPool.h */, - FFFDb90105c07f87b90105c0 /* include/PsSList.h */, - FFFDb90106287f87b9010628 /* include/PsSocket.h */, - FFFDb90106907f87b9010690 /* include/PsSort.h */, - FFFDb90106f87f87b90106f8 /* include/PsSortInternals.h */, - FFFDb90107607f87b9010760 /* include/PsString.h */, - FFFDb90107c87f87b90107c8 /* include/PsSync.h */, - FFFDb90108307f87b9010830 /* include/PsTempAllocator.h */, - FFFDb90108987f87b9010898 /* include/PsThread.h */, - FFFDb90109007f87b9010900 /* include/PsTime.h */, - FFFDb90109687f87b9010968 /* include/PsUserAllocated.h */, - FFFDb90109d07f87b90109d0 /* include/PsUtilities.h */, - FFFDb9010a387f87b9010a38 /* include/PsVecMath.h */, - FFFDb9010aa07f87b9010aa0 /* include/PsVecMathAoSScalar.h */, - FFFDb9010b087f87b9010b08 /* include/PsVecMathAoSScalarInline.h */, - FFFDb9010b707f87b9010b70 /* include/PsVecMathSSE.h */, - FFFDb9010bd87f87b9010bd8 /* include/PsVecMathUtilities.h */, - FFFDb9010c407f87b9010c40 /* include/PsVecQuat.h */, - FFFDb9010ca87f87b9010ca8 /* include/PsVecTransform.h */, - FFFDb9010d107f87b9010d10 /* include/unix/PsUnixAoS.h */, - FFFDb9010d787f87b9010d78 /* include/unix/PsUnixFPU.h */, - FFFDb9010de07f87b9010de0 /* include/unix/PsUnixInlineAoS.h */, - FFFDb9010e487f87b9010e48 /* include/unix/PsUnixIntrinsics.h */, - FFFDb9010eb07f87b9010eb0 /* include/unix/PsUnixTrigConstants.h */, - FFFDb9010f187f87b9010f18 /* src/PsAllocator.cpp */, - FFFDb9010f807f87b9010f80 /* src/PsAssert.cpp */, - FFFDb9010fe87f87b9010fe8 /* src/PsFoundation.cpp */, - FFFDb90110507f87b9011050 /* src/PsMathUtils.cpp */, - FFFDb90110b87f87b90110b8 /* src/PsString.cpp */, - FFFDb90111207f87b9011120 /* src/PsTempAllocator.cpp */, - FFFDb90111887f87b9011188 /* src/PsUtilities.cpp */, - FFFDb90111f07f87b90111f0 /* src/unix/PsUnixAtomic.cpp */, - FFFDb90112587f87b9011258 /* src/unix/PsUnixCpu.cpp */, - FFFDb90112c07f87b90112c0 /* src/unix/PsUnixFPU.cpp */, - FFFDb90113287f87b9011328 /* src/unix/PsUnixMutex.cpp */, - FFFDb90113907f87b9011390 /* src/unix/PsUnixPrintString.cpp */, - FFFDb90113f87f87b90113f8 /* src/unix/PsUnixSList.cpp */, - FFFDb90114607f87b9011460 /* src/unix/PsUnixSocket.cpp */, - FFFDb90114c87f87b90114c8 /* src/unix/PsUnixSync.cpp */, - FFFDb90115307f87b9011530 /* src/unix/PsUnixThread.cpp */, - FFFDb90115987f87b9011598 /* src/unix/PsUnixTime.cpp */, + FFFDe30048007ffde3004800 /* include/Ps.h */, + FFFDe30048687ffde3004868 /* include/PsAlignedMalloc.h */, + FFFDe30048d07ffde30048d0 /* include/PsAlloca.h */, + FFFDe30049387ffde3004938 /* include/PsAllocator.h */, + FFFDe30049a07ffde30049a0 /* include/PsAoS.h */, + FFFDe3004a087ffde3004a08 /* include/PsArray.h */, + FFFDe3004a707ffde3004a70 /* include/PsAtomic.h */, + FFFDe3004ad87ffde3004ad8 /* include/PsBasicTemplates.h */, + FFFDe3004b407ffde3004b40 /* include/PsBitUtils.h */, + FFFDe3004ba87ffde3004ba8 /* include/PsBroadcast.h */, + FFFDe3004c107ffde3004c10 /* include/PsCpu.h */, + FFFDe3004c787ffde3004c78 /* include/PsFPU.h */, + FFFDe3004ce07ffde3004ce0 /* include/PsFoundation.h */, + FFFDe3004d487ffde3004d48 /* include/PsHash.h */, + FFFDe3004db07ffde3004db0 /* include/PsHashInternals.h */, + FFFDe3004e187ffde3004e18 /* include/PsHashMap.h */, + FFFDe3004e807ffde3004e80 /* include/PsHashSet.h */, + FFFDe3004ee87ffde3004ee8 /* include/PsInlineAllocator.h */, + FFFDe3004f507ffde3004f50 /* include/PsInlineAoS.h */, + FFFDe3004fb87ffde3004fb8 /* include/PsInlineArray.h */, + FFFDe30050207ffde3005020 /* include/PsIntrinsics.h */, + FFFDe30050887ffde3005088 /* include/PsMathUtils.h */, + FFFDe30050f07ffde30050f0 /* include/PsMutex.h */, + FFFDe30051587ffde3005158 /* include/PsPool.h */, + FFFDe30051c07ffde30051c0 /* include/PsSList.h */, + FFFDe30052287ffde3005228 /* include/PsSocket.h */, + FFFDe30052907ffde3005290 /* include/PsSort.h */, + FFFDe30052f87ffde30052f8 /* include/PsSortInternals.h */, + FFFDe30053607ffde3005360 /* include/PsString.h */, + FFFDe30053c87ffde30053c8 /* include/PsSync.h */, + FFFDe30054307ffde3005430 /* include/PsTempAllocator.h */, + FFFDe30054987ffde3005498 /* include/PsThread.h */, + FFFDe30055007ffde3005500 /* include/PsTime.h */, + FFFDe30055687ffde3005568 /* include/PsUserAllocated.h */, + FFFDe30055d07ffde30055d0 /* include/PsUtilities.h */, + FFFDe30056387ffde3005638 /* include/PsVecMath.h */, + FFFDe30056a07ffde30056a0 /* include/PsVecMathAoSScalar.h */, + FFFDe30057087ffde3005708 /* include/PsVecMathAoSScalarInline.h */, + FFFDe30057707ffde3005770 /* include/PsVecMathSSE.h */, + FFFDe30057d87ffde30057d8 /* include/PsVecMathUtilities.h */, + FFFDe30058407ffde3005840 /* include/PsVecQuat.h */, + FFFDe30058a87ffde30058a8 /* include/PsVecTransform.h */, + FFFDe30059107ffde3005910 /* include/unix/PsUnixAoS.h */, + FFFDe30059787ffde3005978 /* include/unix/PsUnixFPU.h */, + FFFDe30059e07ffde30059e0 /* include/unix/PsUnixInlineAoS.h */, + FFFDe3005a487ffde3005a48 /* include/unix/PsUnixIntrinsics.h */, + FFFDe3005ab07ffde3005ab0 /* include/unix/PsUnixTrigConstants.h */, + FFFDe3005b187ffde3005b18 /* src/PsAllocator.cpp */, + FFFDe3005b807ffde3005b80 /* src/PsAssert.cpp */, + FFFDe3005be87ffde3005be8 /* src/PsFoundation.cpp */, + FFFDe3005c507ffde3005c50 /* src/PsMathUtils.cpp */, + FFFDe3005cb87ffde3005cb8 /* src/PsString.cpp */, + FFFDe3005d207ffde3005d20 /* src/PsTempAllocator.cpp */, + FFFDe3005d887ffde3005d88 /* src/PsUtilities.cpp */, + FFFDe3005df07ffde3005df0 /* src/unix/PsUnixAtomic.cpp */, + FFFDe3005e587ffde3005e58 /* src/unix/PsUnixCpu.cpp */, + FFFDe3005ec07ffde3005ec0 /* src/unix/PsUnixFPU.cpp */, + FFFDe3005f287ffde3005f28 /* src/unix/PsUnixMutex.cpp */, + FFFDe3005f907ffde3005f90 /* src/unix/PsUnixPrintString.cpp */, + FFFDe3005ff87ffde3005ff8 /* src/unix/PsUnixSList.cpp */, + FFFDe30060607ffde3006060 /* src/unix/PsUnixSocket.cpp */, + FFFDe30060c87ffde30060c8 /* src/unix/PsUnixSync.cpp */, + FFFDe30061307ffde3006130 /* src/unix/PsUnixThread.cpp */, + FFFDe30061987ffde3006198 /* src/unix/PsUnixTime.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBb9b082f07f87b9b082f0 /* PxPvdSDK */ = { + FFFBe29691807ffde2969180 /* PxPvdSDK */ = { isa = PBXGroup; children = ( - FFFBbd22e0807f87bd22e080 /* include */, - FFFBbd22e0a87f87bd22e0a8 /* src */, + FFFBe29159307ffde2915930 /* include */, + FFFBe29159587ffde2915958 /* src */, ); name = "PxPvdSDK"; sourceTree = "<group>"; }; - FFFBbd22e0807f87bd22e080 /* include */ = { + FFFBe29159307ffde2915930 /* include */ = { isa = PBXGroup; children = ( - FFFDbd21b9f07f87bd21b9f0 /* PxPvd.h */, - FFFDbd21ba587f87bd21ba58 /* PxPvdTransport.h */, + FFFDe2915fb07ffde2915fb0 /* PxPvd.h */, + FFFDe29160187ffde2916018 /* PxPvdTransport.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBbd22e0a87f87bd22e0a8 /* src */ = { + FFFBe29159587ffde2915958 /* src */ = { isa = PBXGroup; children = ( - FFFDba05fe007f87ba05fe00 /* include/PsPvd.h */, - FFFDba05fe687f87ba05fe68 /* include/PxProfileAllocatorWrapper.h */, - FFFDba05fed07f87ba05fed0 /* include/PxPvdClient.h */, - FFFDba05ff387f87ba05ff38 /* include/PxPvdDataStream.h */, - FFFDba05ffa07f87ba05ffa0 /* include/PxPvdDataStreamHelpers.h */, - FFFDba0600087f87ba060008 /* include/PxPvdErrorCodes.h */, - FFFDba0600707f87ba060070 /* include/PxPvdObjectModelBaseTypes.h */, - FFFDba0600d87f87ba0600d8 /* include/PxPvdRenderBuffer.h */, - FFFDba0601407f87ba060140 /* include/PxPvdUserRenderer.h */, - FFFDba0601a87f87ba0601a8 /* src/PxProfileEventImpl.cpp */, - FFFDba0602107f87ba060210 /* src/PxPvd.cpp */, - FFFDba0602787f87ba060278 /* src/PxPvdDataStream.cpp */, - FFFDba0602e07f87ba0602e0 /* src/PxPvdDefaultFileTransport.cpp */, - FFFDba0603487f87ba060348 /* src/PxPvdDefaultSocketTransport.cpp */, - FFFDba0603b07f87ba0603b0 /* src/PxPvdImpl.cpp */, - FFFDba0604187f87ba060418 /* src/PxPvdMemClient.cpp */, - FFFDba0604807f87ba060480 /* src/PxPvdObjectModelMetaData.cpp */, - FFFDba0604e87f87ba0604e8 /* src/PxPvdObjectRegistrar.cpp */, - FFFDba0605507f87ba060550 /* src/PxPvdProfileZoneClient.cpp */, - FFFDba0605b87f87ba0605b8 /* src/PxPvdUserRenderer.cpp */, - FFFDba0606207f87ba060620 /* src/PxProfileBase.h */, - FFFDba0606887f87ba060688 /* src/PxProfileCompileTimeEventFilter.h */, - FFFDba0606f07f87ba0606f0 /* src/PxProfileContextProvider.h */, - FFFDba0607587f87ba060758 /* src/PxProfileContextProviderImpl.h */, - FFFDba0607c07f87ba0607c0 /* src/PxProfileDataBuffer.h */, - FFFDba0608287f87ba060828 /* src/PxProfileDataParsing.h */, - FFFDba0608907f87ba060890 /* src/PxProfileEventBuffer.h */, - FFFDba0608f87f87ba0608f8 /* src/PxProfileEventBufferAtomic.h */, - FFFDba0609607f87ba060960 /* src/PxProfileEventBufferClient.h */, - FFFDba0609c87f87ba0609c8 /* src/PxProfileEventBufferClientManager.h */, - FFFDba060a307f87ba060a30 /* src/PxProfileEventFilter.h */, - FFFDba060a987f87ba060a98 /* src/PxProfileEventHandler.h */, - FFFDba060b007f87ba060b00 /* src/PxProfileEventId.h */, - FFFDba060b687f87ba060b68 /* src/PxProfileEventMutex.h */, - FFFDba060bd07f87ba060bd0 /* src/PxProfileEventNames.h */, - FFFDba060c387f87ba060c38 /* src/PxProfileEventParser.h */, - FFFDba060ca07f87ba060ca0 /* src/PxProfileEventSender.h */, - FFFDba060d087f87ba060d08 /* src/PxProfileEventSerialization.h */, - FFFDba060d707f87ba060d70 /* src/PxProfileEventSystem.h */, - FFFDba060dd87f87ba060dd8 /* src/PxProfileEvents.h */, - FFFDba060e407f87ba060e40 /* src/PxProfileMemory.h */, - FFFDba060ea87f87ba060ea8 /* src/PxProfileMemoryBuffer.h */, - FFFDba060f107f87ba060f10 /* src/PxProfileMemoryEventBuffer.h */, - FFFDba060f787f87ba060f78 /* src/PxProfileMemoryEventParser.h */, - FFFDba060fe07f87ba060fe0 /* src/PxProfileMemoryEventRecorder.h */, - FFFDba0610487f87ba061048 /* src/PxProfileMemoryEventReflexiveWriter.h */, - FFFDba0610b07f87ba0610b0 /* src/PxProfileMemoryEventSummarizer.h */, - FFFDba0611187f87ba061118 /* src/PxProfileMemoryEventTypes.h */, - FFFDba0611807f87ba061180 /* src/PxProfileMemoryEvents.h */, - FFFDba0611e87f87ba0611e8 /* src/PxProfileScopedEvent.h */, - FFFDba0612507f87ba061250 /* src/PxProfileScopedMutexLock.h */, - FFFDba0612b87f87ba0612b8 /* src/PxProfileZone.h */, - FFFDba0613207f87ba061320 /* src/PxProfileZoneImpl.h */, - FFFDba0613887f87ba061388 /* src/PxProfileZoneManager.h */, - FFFDba0613f07f87ba0613f0 /* src/PxProfileZoneManagerImpl.h */, - FFFDba0614587f87ba061458 /* src/PxPvdBits.h */, - FFFDba0614c07f87ba0614c0 /* src/PxPvdByteStreams.h */, - FFFDba0615287f87ba061528 /* src/PxPvdCommStreamEventSink.h */, - FFFDba0615907f87ba061590 /* src/PxPvdCommStreamEvents.h */, - FFFDba0615f87f87ba0615f8 /* src/PxPvdCommStreamSDKEventTypes.h */, - FFFDba0616607f87ba061660 /* src/PxPvdCommStreamTypes.h */, - FFFDba0616c87f87ba0616c8 /* src/PxPvdDefaultFileTransport.h */, - FFFDba0617307f87ba061730 /* src/PxPvdDefaultSocketTransport.h */, - FFFDba0617987f87ba061798 /* src/PxPvdFoundation.h */, - FFFDba0618007f87ba061800 /* src/PxPvdImpl.h */, - FFFDba0618687f87ba061868 /* src/PxPvdInternalByteStreams.h */, - FFFDba0618d07f87ba0618d0 /* src/PxPvdMarshalling.h */, - FFFDba0619387f87ba061938 /* src/PxPvdMemClient.h */, - FFFDba0619a07f87ba0619a0 /* src/PxPvdObjectModel.h */, - FFFDba061a087f87ba061a08 /* src/PxPvdObjectModelInternalTypeDefs.h */, - FFFDba061a707f87ba061a70 /* src/PxPvdObjectModelInternalTypes.h */, - FFFDba061ad87f87ba061ad8 /* src/PxPvdObjectModelMetaData.h */, - FFFDba061b407f87ba061b40 /* src/PxPvdObjectRegistrar.h */, - FFFDba061ba87f87ba061ba8 /* src/PxPvdProfileZoneClient.h */, - FFFDba061c107f87ba061c10 /* src/PxPvdUserRenderImpl.h */, - FFFDba061c787f87ba061c78 /* src/PxPvdUserRenderTypes.h */, + FFFDe217ae007ffde217ae00 /* include/PsPvd.h */, + FFFDe217ae687ffde217ae68 /* include/PxProfileAllocatorWrapper.h */, + FFFDe217aed07ffde217aed0 /* include/PxPvdClient.h */, + FFFDe217af387ffde217af38 /* include/PxPvdDataStream.h */, + FFFDe217afa07ffde217afa0 /* include/PxPvdDataStreamHelpers.h */, + FFFDe217b0087ffde217b008 /* include/PxPvdErrorCodes.h */, + FFFDe217b0707ffde217b070 /* include/PxPvdObjectModelBaseTypes.h */, + FFFDe217b0d87ffde217b0d8 /* include/PxPvdRenderBuffer.h */, + FFFDe217b1407ffde217b140 /* include/PxPvdUserRenderer.h */, + FFFDe217b1a87ffde217b1a8 /* src/PxProfileEventImpl.cpp */, + FFFDe217b2107ffde217b210 /* src/PxPvd.cpp */, + FFFDe217b2787ffde217b278 /* src/PxPvdDataStream.cpp */, + FFFDe217b2e07ffde217b2e0 /* src/PxPvdDefaultFileTransport.cpp */, + FFFDe217b3487ffde217b348 /* src/PxPvdDefaultSocketTransport.cpp */, + FFFDe217b3b07ffde217b3b0 /* src/PxPvdImpl.cpp */, + FFFDe217b4187ffde217b418 /* src/PxPvdMemClient.cpp */, + FFFDe217b4807ffde217b480 /* src/PxPvdObjectModelMetaData.cpp */, + FFFDe217b4e87ffde217b4e8 /* src/PxPvdObjectRegistrar.cpp */, + FFFDe217b5507ffde217b550 /* src/PxPvdProfileZoneClient.cpp */, + FFFDe217b5b87ffde217b5b8 /* src/PxPvdUserRenderer.cpp */, + FFFDe217b6207ffde217b620 /* src/PxProfileBase.h */, + FFFDe217b6887ffde217b688 /* src/PxProfileCompileTimeEventFilter.h */, + FFFDe217b6f07ffde217b6f0 /* src/PxProfileContextProvider.h */, + FFFDe217b7587ffde217b758 /* src/PxProfileContextProviderImpl.h */, + FFFDe217b7c07ffde217b7c0 /* src/PxProfileDataBuffer.h */, + FFFDe217b8287ffde217b828 /* src/PxProfileDataParsing.h */, + FFFDe217b8907ffde217b890 /* src/PxProfileEventBuffer.h */, + FFFDe217b8f87ffde217b8f8 /* src/PxProfileEventBufferAtomic.h */, + FFFDe217b9607ffde217b960 /* src/PxProfileEventBufferClient.h */, + FFFDe217b9c87ffde217b9c8 /* src/PxProfileEventBufferClientManager.h */, + FFFDe217ba307ffde217ba30 /* src/PxProfileEventFilter.h */, + FFFDe217ba987ffde217ba98 /* src/PxProfileEventHandler.h */, + FFFDe217bb007ffde217bb00 /* src/PxProfileEventId.h */, + FFFDe217bb687ffde217bb68 /* src/PxProfileEventMutex.h */, + FFFDe217bbd07ffde217bbd0 /* src/PxProfileEventNames.h */, + FFFDe217bc387ffde217bc38 /* src/PxProfileEventParser.h */, + FFFDe217bca07ffde217bca0 /* src/PxProfileEventSender.h */, + FFFDe217bd087ffde217bd08 /* src/PxProfileEventSerialization.h */, + FFFDe217bd707ffde217bd70 /* src/PxProfileEventSystem.h */, + FFFDe217bdd87ffde217bdd8 /* src/PxProfileEvents.h */, + FFFDe217be407ffde217be40 /* src/PxProfileMemory.h */, + FFFDe217bea87ffde217bea8 /* src/PxProfileMemoryBuffer.h */, + FFFDe217bf107ffde217bf10 /* src/PxProfileMemoryEventBuffer.h */, + FFFDe217bf787ffde217bf78 /* src/PxProfileMemoryEventParser.h */, + FFFDe217bfe07ffde217bfe0 /* src/PxProfileMemoryEventRecorder.h */, + FFFDe217c0487ffde217c048 /* src/PxProfileMemoryEventReflexiveWriter.h */, + FFFDe217c0b07ffde217c0b0 /* src/PxProfileMemoryEventSummarizer.h */, + FFFDe217c1187ffde217c118 /* src/PxProfileMemoryEventTypes.h */, + FFFDe217c1807ffde217c180 /* src/PxProfileMemoryEvents.h */, + FFFDe217c1e87ffde217c1e8 /* src/PxProfileScopedEvent.h */, + FFFDe217c2507ffde217c250 /* src/PxProfileScopedMutexLock.h */, + FFFDe217c2b87ffde217c2b8 /* src/PxProfileZone.h */, + FFFDe217c3207ffde217c320 /* src/PxProfileZoneImpl.h */, + FFFDe217c3887ffde217c388 /* src/PxProfileZoneManager.h */, + FFFDe217c3f07ffde217c3f0 /* src/PxProfileZoneManagerImpl.h */, + FFFDe217c4587ffde217c458 /* src/PxPvdBits.h */, + FFFDe217c4c07ffde217c4c0 /* src/PxPvdByteStreams.h */, + FFFDe217c5287ffde217c528 /* src/PxPvdCommStreamEventSink.h */, + FFFDe217c5907ffde217c590 /* src/PxPvdCommStreamEvents.h */, + FFFDe217c5f87ffde217c5f8 /* src/PxPvdCommStreamSDKEventTypes.h */, + FFFDe217c6607ffde217c660 /* src/PxPvdCommStreamTypes.h */, + FFFDe217c6c87ffde217c6c8 /* src/PxPvdDefaultFileTransport.h */, + FFFDe217c7307ffde217c730 /* src/PxPvdDefaultSocketTransport.h */, + FFFDe217c7987ffde217c798 /* src/PxPvdFoundation.h */, + FFFDe217c8007ffde217c800 /* src/PxPvdImpl.h */, + FFFDe217c8687ffde217c868 /* src/PxPvdInternalByteStreams.h */, + FFFDe217c8d07ffde217c8d0 /* src/PxPvdMarshalling.h */, + FFFDe217c9387ffde217c938 /* src/PxPvdMemClient.h */, + FFFDe217c9a07ffde217c9a0 /* src/PxPvdObjectModel.h */, + FFFDe217ca087ffde217ca08 /* src/PxPvdObjectModelInternalTypeDefs.h */, + FFFDe217ca707ffde217ca70 /* src/PxPvdObjectModelInternalTypes.h */, + FFFDe217cad87ffde217cad8 /* src/PxPvdObjectModelMetaData.h */, + FFFDe217cb407ffde217cb40 /* src/PxPvdObjectRegistrar.h */, + FFFDe217cba87ffde217cba8 /* src/PxPvdProfileZoneClient.h */, + FFFDe217cc107ffde217cc10 /* src/PxPvdUserRenderImpl.h */, + FFFDe217cc787ffde217cc78 /* src/PxPvdUserRenderTypes.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBb86f79707f87b86f7970 /* LowLevel */ = { + FFFBe2f1a6b07ffde2f1a6b0 /* LowLevel */ = { isa = PBXGroup; children = ( - FFFBb85119607f87b8511960 /* API Source */, - FFFBb85119887f87b8511988 /* API Includes */, - FFFBb85119b07f87b85119b0 /* Software Source */, - FFFBb85119d87f87b85119d8 /* Software Includes */, - FFFBb8511a007f87b8511a00 /* Common Source */, - FFFBb8511a287f87b8511a28 /* Common Includes */, + FFFBe2f29cf07ffde2f29cf0 /* API Source */, + FFFBe2f29d187ffde2f29d18 /* API Includes */, + FFFBe2f29d407ffde2f29d40 /* Software Source */, + FFFBe2f29d687ffde2f29d68 /* Software Includes */, + FFFBe2f29d907ffde2f29d90 /* Common Source */, + FFFBe2f29db87ffde2f29db8 /* Common Includes */, ); name = "LowLevel"; sourceTree = "<group>"; }; - FFFBb85119607f87b8511960 /* API Source */ = { + FFFBe2f29cf07ffde2f29cf0 /* API Source */ = { isa = PBXGroup; children = ( - FFFDb85118407f87b8511840 /* px_globals.cpp */, + FFFDe2f26aa07ffde2f26aa0 /* px_globals.cpp */, ); name = "API Source"; sourceTree = SOURCE_ROOT; }; - FFFBb85119887f87b8511988 /* API Includes */ = { + FFFBe2f29d187ffde2f29d18 /* API Includes */ = { isa = PBXGroup; children = ( - FFFDb8525ab07f87b8525ab0 /* PxsMaterialCore.h */, - FFFDb8525b187f87b8525b18 /* PxsMaterialManager.h */, - FFFDb8525b807f87b8525b80 /* PxvConfig.h */, - FFFDb8525be87f87b8525be8 /* PxvContext.h */, - FFFDb8525c507f87b8525c50 /* PxvDynamics.h */, - FFFDb8525cb87f87b8525cb8 /* PxvGeometry.h */, - FFFDb8525d207f87b8525d20 /* PxvGlobals.h */, - FFFDb8525d887f87b8525d88 /* PxvManager.h */, - FFFDb8525df07f87b8525df0 /* PxvSimStats.h */, + FFFDe2f2af807ffde2f2af80 /* PxsMaterialCore.h */, + FFFDe2f2afe87ffde2f2afe8 /* PxsMaterialManager.h */, + FFFDe2f2b0507ffde2f2b050 /* PxvConfig.h */, + FFFDe2f2b0b87ffde2f2b0b8 /* PxvContext.h */, + FFFDe2f2b1207ffde2f2b120 /* PxvDynamics.h */, + FFFDe2f2b1887ffde2f2b188 /* PxvGeometry.h */, + FFFDe2f2b1f07ffde2f2b1f0 /* PxvGlobals.h */, + FFFDe2f2b2587ffde2f2b258 /* PxvManager.h */, + FFFDe2f2b2c07ffde2f2b2c0 /* PxvSimStats.h */, ); name = "API Includes"; sourceTree = SOURCE_ROOT; }; - FFFBb85119b07f87b85119b0 /* Software Source */ = { + FFFBe2f29d407ffde2f29d40 /* Software Source */ = { isa = PBXGroup; children = ( - FFFDb851ffa07f87b851ffa0 /* PxsCCD.cpp */, - FFFDb85200087f87b8520008 /* PxsContactManager.cpp */, - FFFDb85200707f87b8520070 /* PxsContext.cpp */, - FFFDb85200d87f87b85200d8 /* PxsDefaultMemoryManager.cpp */, - FFFDb85201407f87b8520140 /* PxsIslandSim.cpp */, - FFFDb85201a87f87b85201a8 /* PxsMaterialCombiner.cpp */, - FFFDb85202107f87b8520210 /* PxsNphaseImplementationContext.cpp */, - FFFDb85202787f87b8520278 /* PxsSimpleIslandManager.cpp */, + FFFDe2f2c1007ffde2f2c100 /* PxsCCD.cpp */, + FFFDe2f2c1687ffde2f2c168 /* PxsContactManager.cpp */, + FFFDe2f2c1d07ffde2f2c1d0 /* PxsContext.cpp */, + FFFDe2f2c2387ffde2f2c238 /* PxsDefaultMemoryManager.cpp */, + FFFDe2f2c2a07ffde2f2c2a0 /* PxsIslandSim.cpp */, + FFFDe2f2c3087ffde2f2c308 /* PxsMaterialCombiner.cpp */, + FFFDe2f2c3707ffde2f2c370 /* PxsNphaseImplementationContext.cpp */, + FFFDe2f2c3d87ffde2f2c3d8 /* PxsSimpleIslandManager.cpp */, ); name = "Software Source"; sourceTree = SOURCE_ROOT; }; - FFFBb85119d87f87b85119d8 /* Software Includes */ = { + FFFBe2f29d687ffde2f29d68 /* Software Includes */ = { isa = PBXGroup; children = ( - FFFDb901ee007f87b901ee00 /* PxsBodySim.h */, - FFFDb901ee687f87b901ee68 /* PxsCCD.h */, - FFFDb901eed07f87b901eed0 /* PxsContactManager.h */, - FFFDb901ef387f87b901ef38 /* PxsContactManagerState.h */, - FFFDb901efa07f87b901efa0 /* PxsContext.h */, - FFFDb901f0087f87b901f008 /* PxsDefaultMemoryManager.h */, - FFFDb901f0707f87b901f070 /* PxsHeapMemoryAllocator.h */, - FFFDb901f0d87f87b901f0d8 /* PxsIncrementalConstraintPartitioning.h */, - FFFDb901f1407f87b901f140 /* PxsIslandManagerTypes.h */, - FFFDb901f1a87f87b901f1a8 /* PxsIslandSim.h */, - FFFDb901f2107f87b901f210 /* PxsKernelWrangler.h */, - FFFDb901f2787f87b901f278 /* PxsMaterialCombiner.h */, - FFFDb901f2e07f87b901f2e0 /* PxsMemoryManager.h */, - FFFDb901f3487f87b901f348 /* PxsNphaseImplementationContext.h */, - FFFDb901f3b07f87b901f3b0 /* PxsRigidBody.h */, - FFFDb901f4187f87b901f418 /* PxsShapeSim.h */, - FFFDb901f4807f87b901f480 /* PxsSimpleIslandManager.h */, - FFFDb901f4e87f87b901f4e8 /* PxsSimulationController.h */, - FFFDb901f5507f87b901f550 /* PxsTransformCache.h */, - FFFDb901f5b87f87b901f5b8 /* PxvNphaseImplementationContext.h */, + FFFDe30454007ffde3045400 /* PxsBodySim.h */, + FFFDe30454687ffde3045468 /* PxsCCD.h */, + FFFDe30454d07ffde30454d0 /* PxsContactManager.h */, + FFFDe30455387ffde3045538 /* PxsContactManagerState.h */, + FFFDe30455a07ffde30455a0 /* PxsContext.h */, + FFFDe30456087ffde3045608 /* PxsDefaultMemoryManager.h */, + FFFDe30456707ffde3045670 /* PxsHeapMemoryAllocator.h */, + FFFDe30456d87ffde30456d8 /* PxsIncrementalConstraintPartitioning.h */, + FFFDe30457407ffde3045740 /* PxsIslandManagerTypes.h */, + FFFDe30457a87ffde30457a8 /* PxsIslandSim.h */, + FFFDe30458107ffde3045810 /* PxsKernelWrangler.h */, + FFFDe30458787ffde3045878 /* PxsMaterialCombiner.h */, + FFFDe30458e07ffde30458e0 /* PxsMemoryManager.h */, + FFFDe30459487ffde3045948 /* PxsNphaseImplementationContext.h */, + FFFDe30459b07ffde30459b0 /* PxsRigidBody.h */, + FFFDe3045a187ffde3045a18 /* PxsShapeSim.h */, + FFFDe3045a807ffde3045a80 /* PxsSimpleIslandManager.h */, + FFFDe3045ae87ffde3045ae8 /* PxsSimulationController.h */, + FFFDe3045b507ffde3045b50 /* PxsTransformCache.h */, + FFFDe3045bb87ffde3045bb8 /* PxvNphaseImplementationContext.h */, ); name = "Software Includes"; sourceTree = SOURCE_ROOT; }; - FFFBb8511a007f87b8511a00 /* Common Source */ = { + FFFBe2f29d907ffde2f29d90 /* Common Source */ = { isa = PBXGroup; children = ( - FFFDb901d8007f87b901d800 /* collision/PxcContact.cpp */, - FFFDb901d8687f87b901d868 /* pipeline/PxcContactCache.cpp */, - FFFDb901d8d07f87b901d8d0 /* pipeline/PxcContactMethodImpl.cpp */, - FFFDb901d9387f87b901d938 /* pipeline/PxcMaterialHeightField.cpp */, - FFFDb901d9a07f87b901d9a0 /* pipeline/PxcMaterialMesh.cpp */, - FFFDb901da087f87b901da08 /* pipeline/PxcMaterialMethodImpl.cpp */, - FFFDb901da707f87b901da70 /* pipeline/PxcMaterialShape.cpp */, - FFFDb901dad87f87b901dad8 /* pipeline/PxcNpBatch.cpp */, - FFFDb901db407f87b901db40 /* pipeline/PxcNpCacheStreamPair.cpp */, - FFFDb901dba87f87b901dba8 /* pipeline/PxcNpContactPrepShared.cpp */, - FFFDb901dc107f87b901dc10 /* pipeline/PxcNpMemBlockPool.cpp */, - FFFDb901dc787f87b901dc78 /* pipeline/PxcNpThreadContext.cpp */, + FFFDe3045e007ffde3045e00 /* collision/PxcContact.cpp */, + FFFDe3045e687ffde3045e68 /* pipeline/PxcContactCache.cpp */, + FFFDe3045ed07ffde3045ed0 /* pipeline/PxcContactMethodImpl.cpp */, + FFFDe3045f387ffde3045f38 /* pipeline/PxcMaterialHeightField.cpp */, + FFFDe3045fa07ffde3045fa0 /* pipeline/PxcMaterialMesh.cpp */, + FFFDe30460087ffde3046008 /* pipeline/PxcMaterialMethodImpl.cpp */, + FFFDe30460707ffde3046070 /* pipeline/PxcMaterialShape.cpp */, + FFFDe30460d87ffde30460d8 /* pipeline/PxcNpBatch.cpp */, + FFFDe30461407ffde3046140 /* pipeline/PxcNpCacheStreamPair.cpp */, + FFFDe30461a87ffde30461a8 /* pipeline/PxcNpContactPrepShared.cpp */, + FFFDe30462107ffde3046210 /* pipeline/PxcNpMemBlockPool.cpp */, + FFFDe30462787ffde3046278 /* pipeline/PxcNpThreadContext.cpp */, ); name = "Common Source"; sourceTree = SOURCE_ROOT; }; - FFFBb8511a287f87b8511a28 /* Common Includes */ = { + FFFBe2f29db87ffde2f29db8 /* Common Includes */ = { isa = PBXGroup; children = ( - FFFDb901e0007f87b901e000 /* collision/PxcContactMethodImpl.h */, - FFFDb901e0687f87b901e068 /* pipeline/PxcCCDStateStreamPair.h */, - FFFDb901e0d07f87b901e0d0 /* pipeline/PxcConstraintBlockStream.h */, - FFFDb901e1387f87b901e138 /* pipeline/PxcContactCache.h */, - FFFDb901e1a07f87b901e1a0 /* pipeline/PxcMaterialMethodImpl.h */, - FFFDb901e2087f87b901e208 /* pipeline/PxcNpBatch.h */, - FFFDb901e2707f87b901e270 /* pipeline/PxcNpCache.h */, - FFFDb901e2d87f87b901e2d8 /* pipeline/PxcNpCacheStreamPair.h */, - FFFDb901e3407f87b901e340 /* pipeline/PxcNpContactPrepShared.h */, - FFFDb901e3a87f87b901e3a8 /* pipeline/PxcNpMemBlockPool.h */, - FFFDb901e4107f87b901e410 /* pipeline/PxcNpThreadContext.h */, - FFFDb901e4787f87b901e478 /* pipeline/PxcNpWorkUnit.h */, - FFFDb901e4e07f87b901e4e0 /* pipeline/PxcRigidBody.h */, - FFFDb901e5487f87b901e548 /* utils/PxcScratchAllocator.h */, - FFFDb901e5b07f87b901e5b0 /* utils/PxcThreadCoherentCache.h */, + FFFDe304d2007ffde304d200 /* collision/PxcContactMethodImpl.h */, + FFFDe304d2687ffde304d268 /* pipeline/PxcCCDStateStreamPair.h */, + FFFDe304d2d07ffde304d2d0 /* pipeline/PxcConstraintBlockStream.h */, + FFFDe304d3387ffde304d338 /* pipeline/PxcContactCache.h */, + FFFDe304d3a07ffde304d3a0 /* pipeline/PxcMaterialMethodImpl.h */, + FFFDe304d4087ffde304d408 /* pipeline/PxcNpBatch.h */, + FFFDe304d4707ffde304d470 /* pipeline/PxcNpCache.h */, + FFFDe304d4d87ffde304d4d8 /* pipeline/PxcNpCacheStreamPair.h */, + FFFDe304d5407ffde304d540 /* pipeline/PxcNpContactPrepShared.h */, + FFFDe304d5a87ffde304d5a8 /* pipeline/PxcNpMemBlockPool.h */, + FFFDe304d6107ffde304d610 /* pipeline/PxcNpThreadContext.h */, + FFFDe304d6787ffde304d678 /* pipeline/PxcNpWorkUnit.h */, + FFFDe304d6e07ffde304d6e0 /* pipeline/PxcRigidBody.h */, + FFFDe304d7487ffde304d748 /* utils/PxcScratchAllocator.h */, + FFFDe304d7b07ffde304d7b0 /* utils/PxcThreadCoherentCache.h */, ); name = "Common Includes"; sourceTree = SOURCE_ROOT; }; - FFFBbd2378b07f87bd2378b0 /* LowLevelAABB */ = { + FFFBe2d334507ffde2d33450 /* LowLevelAABB */ = { isa = PBXGroup; children = ( - FFFBb9a4b1607f87b9a4b160 /* include */, - FFFBb9a4b1887f87b9a4b188 /* src */, + FFFBe2d365a07ffde2d365a0 /* include */, + FFFBe2d365c87ffde2d365c8 /* src */, ); name = "LowLevelAABB"; sourceTree = "<group>"; }; - FFFBb9a4b1607f87b9a4b160 /* include */ = { + FFFBe2d365a07ffde2d365a0 /* include */ = { isa = PBXGroup; children = ( - FFFDb9a4b1b07f87b9a4b1b0 /* BpAABBManagerTasks.h */, - FFFDb9a4b2187f87b9a4b218 /* BpBroadPhase.h */, - FFFDb9a4b2807f87b9a4b280 /* BpBroadPhaseUpdate.h */, - FFFDb9a4b2e87f87b9a4b2e8 /* BpSimpleAABBManager.h */, + FFFDe2d365f07ffde2d365f0 /* BpAABBManagerTasks.h */, + FFFDe2d366587ffde2d36658 /* BpBroadPhase.h */, + FFFDe2d366c07ffde2d366c0 /* BpBroadPhaseUpdate.h */, + FFFDe2d367287ffde2d36728 /* BpSimpleAABBManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBb9a4b1887f87b9a4b188 /* src */ = { + FFFBe2d365c87ffde2d365c8 /* src */ = { isa = PBXGroup; children = ( - FFFDba80a8007f87ba80a800 /* BpBroadPhaseMBP.h */, - FFFDba80a8687f87ba80a868 /* BpBroadPhaseMBPCommon.h */, - FFFDba80a8d07f87ba80a8d0 /* BpBroadPhaseSap.h */, - FFFDba80a9387f87ba80a938 /* BpBroadPhaseSapAux.h */, - FFFDba80a9a07f87ba80a9a0 /* BpMBPTasks.h */, - FFFDba80aa087f87ba80aa08 /* BpSAPTasks.h */, - FFFDba80aa707f87ba80aa70 /* BpBroadPhase.cpp */, - FFFDba80aad87f87ba80aad8 /* BpBroadPhaseMBP.cpp */, - FFFDba80ab407f87ba80ab40 /* BpBroadPhaseSap.cpp */, - FFFDba80aba87f87ba80aba8 /* BpBroadPhaseSapAux.cpp */, - FFFDba80ac107f87ba80ac10 /* BpMBPTasks.cpp */, - FFFDba80ac787f87ba80ac78 /* BpSAPTasks.cpp */, - FFFDba80ace07f87ba80ace0 /* BpSimpleAABBManager.cpp */, + FFFDe3815a007ffde3815a00 /* BpBroadPhaseMBP.h */, + FFFDe3815a687ffde3815a68 /* BpBroadPhaseMBPCommon.h */, + FFFDe3815ad07ffde3815ad0 /* BpBroadPhaseSap.h */, + FFFDe3815b387ffde3815b38 /* BpBroadPhaseSapAux.h */, + FFFDe3815ba07ffde3815ba0 /* BpMBPTasks.h */, + FFFDe3815c087ffde3815c08 /* BpSAPTasks.h */, + FFFDe3815c707ffde3815c70 /* BpBroadPhase.cpp */, + FFFDe3815cd87ffde3815cd8 /* BpBroadPhaseMBP.cpp */, + FFFDe3815d407ffde3815d40 /* BpBroadPhaseSap.cpp */, + FFFDe3815da87ffde3815da8 /* BpBroadPhaseSapAux.cpp */, + FFFDe3815e107ffde3815e10 /* BpMBPTasks.cpp */, + FFFDe3815e787ffde3815e78 /* BpSAPTasks.cpp */, + FFFDe3815ee07ffde3815ee0 /* BpSimpleAABBManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBbd00c5a07f87bd00c5a0 /* LowLevelDynamics */ = { + FFFBe2d544f07ffde2d544f0 /* LowLevelDynamics */ = { isa = PBXGroup; children = ( - FFFBb9c892107f87b9c89210 /* Dynamics Source */, - FFFBb9c892387f87b9c89238 /* Dynamics Includes */, - FFFBb9c892607f87b9c89260 /* Dynamics Internal Includes */, + FFFBe2d4c6407ffde2d4c640 /* Dynamics Source */, + FFFBe2d4c6687ffde2d4c668 /* Dynamics Includes */, + FFFBe2d4c6907ffde2d4c690 /* Dynamics Internal Includes */, ); name = "LowLevelDynamics"; sourceTree = "<group>"; }; - FFFBb9c892107f87b9c89210 /* Dynamics Source */ = { + FFFBe2d4c6407ffde2d4c640 /* Dynamics Source */ = { isa = PBXGroup; children = ( - FFFDbc0086007f87bc008600 /* DyArticulation.cpp */, - FFFDbc0086687f87bc008668 /* DyArticulationContactPrep.cpp */, - FFFDbc0086d07f87bc0086d0 /* DyArticulationContactPrepPF.cpp */, - FFFDbc0087387f87bc008738 /* DyArticulationHelper.cpp */, - FFFDbc0087a07f87bc0087a0 /* DyArticulationSIMD.cpp */, - FFFDbc0088087f87bc008808 /* DyArticulationScalar.cpp */, - FFFDbc0088707f87bc008870 /* DyConstraintPartition.cpp */, - FFFDbc0088d87f87bc0088d8 /* DyConstraintSetup.cpp */, - FFFDbc0089407f87bc008940 /* DyConstraintSetupBlock.cpp */, - FFFDbc0089a87f87bc0089a8 /* DyContactPrep.cpp */, - FFFDbc008a107f87bc008a10 /* DyContactPrep4.cpp */, - FFFDbc008a787f87bc008a78 /* DyContactPrep4PF.cpp */, - FFFDbc008ae07f87bc008ae0 /* DyContactPrepPF.cpp */, - FFFDbc008b487f87bc008b48 /* DyDynamics.cpp */, - FFFDbc008bb07f87bc008bb0 /* DyFrictionCorrelation.cpp */, - FFFDbc008c187f87bc008c18 /* DyRigidBodyToSolverBody.cpp */, - FFFDbc008c807f87bc008c80 /* DySolverConstraints.cpp */, - FFFDbc008ce87f87bc008ce8 /* DySolverConstraintsBlock.cpp */, - FFFDbc008d507f87bc008d50 /* DySolverControl.cpp */, - FFFDbc008db87f87bc008db8 /* DySolverControlPF.cpp */, - FFFDbc008e207f87bc008e20 /* DySolverPFConstraints.cpp */, - FFFDbc008e887f87bc008e88 /* DySolverPFConstraintsBlock.cpp */, - FFFDbc008ef07f87bc008ef0 /* DyThreadContext.cpp */, - FFFDbc008f587f87bc008f58 /* DyThresholdTable.cpp */, + FFFDe38220007ffde3822000 /* DyArticulation.cpp */, + FFFDe38220687ffde3822068 /* DyArticulationContactPrep.cpp */, + FFFDe38220d07ffde38220d0 /* DyArticulationContactPrepPF.cpp */, + FFFDe38221387ffde3822138 /* DyArticulationHelper.cpp */, + FFFDe38221a07ffde38221a0 /* DyArticulationSIMD.cpp */, + FFFDe38222087ffde3822208 /* DyArticulationScalar.cpp */, + FFFDe38222707ffde3822270 /* DyConstraintPartition.cpp */, + FFFDe38222d87ffde38222d8 /* DyConstraintSetup.cpp */, + FFFDe38223407ffde3822340 /* DyConstraintSetupBlock.cpp */, + FFFDe38223a87ffde38223a8 /* DyContactPrep.cpp */, + FFFDe38224107ffde3822410 /* DyContactPrep4.cpp */, + FFFDe38224787ffde3822478 /* DyContactPrep4PF.cpp */, + FFFDe38224e07ffde38224e0 /* DyContactPrepPF.cpp */, + FFFDe38225487ffde3822548 /* DyDynamics.cpp */, + FFFDe38225b07ffde38225b0 /* DyFrictionCorrelation.cpp */, + FFFDe38226187ffde3822618 /* DyRigidBodyToSolverBody.cpp */, + FFFDe38226807ffde3822680 /* DySolverConstraints.cpp */, + FFFDe38226e87ffde38226e8 /* DySolverConstraintsBlock.cpp */, + FFFDe38227507ffde3822750 /* DySolverControl.cpp */, + FFFDe38227b87ffde38227b8 /* DySolverControlPF.cpp */, + FFFDe38228207ffde3822820 /* DySolverPFConstraints.cpp */, + FFFDe38228887ffde3822888 /* DySolverPFConstraintsBlock.cpp */, + FFFDe38228f07ffde38228f0 /* DyThreadContext.cpp */, + FFFDe38229587ffde3822958 /* DyThresholdTable.cpp */, ); name = "Dynamics Source"; sourceTree = SOURCE_ROOT; }; - FFFBb9c892387f87b9c89238 /* Dynamics Includes */ = { + FFFBe2d4c6687ffde2d4c668 /* Dynamics Includes */ = { isa = PBXGroup; children = ( - FFFDb9c8a7107f87b9c8a710 /* DyArticulation.h */, - FFFDb9c8a7787f87b9c8a778 /* DyConstraint.h */, - FFFDb9c8a7e07f87b9c8a7e0 /* DyConstraintWriteBack.h */, - FFFDb9c8a8487f87b9c8a848 /* DyContext.h */, - FFFDb9c8a8b07f87b9c8a8b0 /* DyGpuAPI.h */, - FFFDb9c8a9187f87b9c8a918 /* DySleepingConfigulation.h */, - FFFDb9c8a9807f87b9c8a980 /* DyThresholdTable.h */, + FFFDe2d51ff07ffde2d51ff0 /* DyArticulation.h */, + FFFDe2d520587ffde2d52058 /* DyConstraint.h */, + FFFDe2d520c07ffde2d520c0 /* DyConstraintWriteBack.h */, + FFFDe2d521287ffde2d52128 /* DyContext.h */, + FFFDe2d521907ffde2d52190 /* DyGpuAPI.h */, + FFFDe2d521f87ffde2d521f8 /* DySleepingConfigulation.h */, + FFFDe2d522607ffde2d52260 /* DyThresholdTable.h */, ); name = "Dynamics Includes"; sourceTree = SOURCE_ROOT; }; - FFFBb9c892607f87b9c89260 /* Dynamics Internal Includes */ = { + FFFBe2d4c6907ffde2d4c690 /* Dynamics Internal Includes */ = { isa = PBXGroup; children = ( - FFFDba80e2007f87ba80e200 /* DyArticulationContactPrep.h */, - FFFDba80e2687f87ba80e268 /* DyArticulationFnsDebug.h */, - FFFDba80e2d07f87ba80e2d0 /* DyArticulationFnsScalar.h */, - FFFDba80e3387f87ba80e338 /* DyArticulationFnsSimd.h */, - FFFDba80e3a07f87ba80e3a0 /* DyArticulationHelper.h */, - FFFDba80e4087f87ba80e408 /* DyArticulationPImpl.h */, - FFFDba80e4707f87ba80e470 /* DyArticulationReference.h */, - FFFDba80e4d87f87ba80e4d8 /* DyArticulationScalar.h */, - FFFDba80e5407f87ba80e540 /* DyArticulationUtils.h */, - FFFDba80e5a87f87ba80e5a8 /* DyBodyCoreIntegrator.h */, - FFFDba80e6107f87ba80e610 /* DyConstraintPartition.h */, - FFFDba80e6787f87ba80e678 /* DyConstraintPrep.h */, - FFFDba80e6e07f87ba80e6e0 /* DyContactPrep.h */, - FFFDba80e7487f87ba80e748 /* DyContactPrepShared.h */, - FFFDba80e7b07f87ba80e7b0 /* DyContactReduction.h */, - FFFDba80e8187f87ba80e818 /* DyCorrelationBuffer.h */, - FFFDba80e8807f87ba80e880 /* DyDynamics.h */, - FFFDba80e8e87f87ba80e8e8 /* DyFrictionPatch.h */, - FFFDba80e9507f87ba80e950 /* DyFrictionPatchStreamPair.h */, - FFFDba80e9b87f87ba80e9b8 /* DySolverBody.h */, - FFFDba80ea207f87ba80ea20 /* DySolverConstraint1D.h */, - FFFDba80ea887f87ba80ea88 /* DySolverConstraint1D4.h */, - FFFDba80eaf07f87ba80eaf0 /* DySolverConstraintDesc.h */, - FFFDba80eb587f87ba80eb58 /* DySolverConstraintExtShared.h */, - FFFDba80ebc07f87ba80ebc0 /* DySolverConstraintTypes.h */, - FFFDba80ec287f87ba80ec28 /* DySolverConstraintsShared.h */, - FFFDba80ec907f87ba80ec90 /* DySolverContact.h */, - FFFDba80ecf87f87ba80ecf8 /* DySolverContact4.h */, - FFFDba80ed607f87ba80ed60 /* DySolverContactPF.h */, - FFFDba80edc87f87ba80edc8 /* DySolverContactPF4.h */, - FFFDba80ee307f87ba80ee30 /* DySolverContext.h */, - FFFDba80ee987f87ba80ee98 /* DySolverControl.h */, - FFFDba80ef007f87ba80ef00 /* DySolverControlPF.h */, - FFFDba80ef687f87ba80ef68 /* DySolverCore.h */, - FFFDba80efd07f87ba80efd0 /* DySolverExt.h */, - FFFDba80f0387f87ba80f038 /* DySpatial.h */, - FFFDba80f0a07f87ba80f0a0 /* DyThreadContext.h */, + FFFDe38238007ffde3823800 /* DyArticulationContactPrep.h */, + FFFDe38238687ffde3823868 /* DyArticulationFnsDebug.h */, + FFFDe38238d07ffde38238d0 /* DyArticulationFnsScalar.h */, + FFFDe38239387ffde3823938 /* DyArticulationFnsSimd.h */, + FFFDe38239a07ffde38239a0 /* DyArticulationHelper.h */, + FFFDe3823a087ffde3823a08 /* DyArticulationPImpl.h */, + FFFDe3823a707ffde3823a70 /* DyArticulationReference.h */, + FFFDe3823ad87ffde3823ad8 /* DyArticulationScalar.h */, + FFFDe3823b407ffde3823b40 /* DyArticulationUtils.h */, + FFFDe3823ba87ffde3823ba8 /* DyBodyCoreIntegrator.h */, + FFFDe3823c107ffde3823c10 /* DyConstraintPartition.h */, + FFFDe3823c787ffde3823c78 /* DyConstraintPrep.h */, + FFFDe3823ce07ffde3823ce0 /* DyContactPrep.h */, + FFFDe3823d487ffde3823d48 /* DyContactPrepShared.h */, + FFFDe3823db07ffde3823db0 /* DyContactReduction.h */, + FFFDe3823e187ffde3823e18 /* DyCorrelationBuffer.h */, + FFFDe3823e807ffde3823e80 /* DyDynamics.h */, + FFFDe3823ee87ffde3823ee8 /* DyFrictionPatch.h */, + FFFDe3823f507ffde3823f50 /* DyFrictionPatchStreamPair.h */, + FFFDe3823fb87ffde3823fb8 /* DySolverBody.h */, + FFFDe38240207ffde3824020 /* DySolverConstraint1D.h */, + FFFDe38240887ffde3824088 /* DySolverConstraint1D4.h */, + FFFDe38240f07ffde38240f0 /* DySolverConstraintDesc.h */, + FFFDe38241587ffde3824158 /* DySolverConstraintExtShared.h */, + FFFDe38241c07ffde38241c0 /* DySolverConstraintTypes.h */, + FFFDe38242287ffde3824228 /* DySolverConstraintsShared.h */, + FFFDe38242907ffde3824290 /* DySolverContact.h */, + FFFDe38242f87ffde38242f8 /* DySolverContact4.h */, + FFFDe38243607ffde3824360 /* DySolverContactPF.h */, + FFFDe38243c87ffde38243c8 /* DySolverContactPF4.h */, + FFFDe38244307ffde3824430 /* DySolverContext.h */, + FFFDe38244987ffde3824498 /* DySolverControl.h */, + FFFDe38245007ffde3824500 /* DySolverControlPF.h */, + FFFDe38245687ffde3824568 /* DySolverCore.h */, + FFFDe38245d07ffde38245d0 /* DySolverExt.h */, + FFFDe38246387ffde3824638 /* DySpatial.h */, + FFFDe38246a07ffde38246a0 /* DyThreadContext.h */, ); name = "Dynamics Internal Includes"; sourceTree = SOURCE_ROOT; }; - FFFBbd0168307f87bd016830 /* LowLevelCloth */ = { + FFFBe292cb407ffde292cb40 /* LowLevelCloth */ = { isa = PBXGroup; children = ( - FFFBb9a539207f87b9a53920 /* include */, - FFFBb9a539487f87b9a53948 /* src */, + FFFBe292ba707ffde292ba70 /* include */, + FFFBe292ba987ffde292ba98 /* src */, ); name = "LowLevelCloth"; sourceTree = "<group>"; }; - FFFBb9a539207f87b9a53920 /* include */ = { + FFFBe292ba707ffde292ba70 /* include */ = { isa = PBXGroup; children = ( - FFFDb9a5e4007f87b9a5e400 /* Cloth.h */, - FFFDb9a5e4687f87b9a5e468 /* Fabric.h */, - FFFDb9a5e4d07f87b9a5e4d0 /* Factory.h */, - FFFDb9a5e5387f87b9a5e538 /* PhaseConfig.h */, - FFFDb9a5e5a07f87b9a5e5a0 /* Range.h */, - FFFDb9a5e6087f87b9a5e608 /* Solver.h */, - FFFDb9a5e6707f87b9a5e670 /* Types.h */, + FFFDe292a0807ffde292a080 /* Cloth.h */, + FFFDe292a0e87ffde292a0e8 /* Fabric.h */, + FFFDe292a1507ffde292a150 /* Factory.h */, + FFFDe292a1b87ffde292a1b8 /* PhaseConfig.h */, + FFFDe292a2207ffde292a220 /* Range.h */, + FFFDe292a2887ffde292a288 /* Solver.h */, + FFFDe292a2f07ffde292a2f0 /* Types.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBb9a539487f87b9a53948 /* src */ = { + FFFBe292ba987ffde292ba98 /* src */ = { isa = PBXGroup; children = ( - FFFDba8126007f87ba812600 /* Allocator.h */, - FFFDba8126687f87ba812668 /* Array.h */, - FFFDba8126d07f87ba8126d0 /* BoundingBox.h */, - FFFDba8127387f87ba812738 /* ClothBase.h */, - FFFDba8127a07f87ba8127a0 /* ClothImpl.h */, - FFFDba8128087f87ba812808 /* IndexPair.h */, - FFFDba8128707f87ba812870 /* IterationState.h */, - FFFDba8128d87f87ba8128d8 /* MovingAverage.h */, - FFFDba8129407f87ba812940 /* PointInterpolator.h */, - FFFDba8129a87f87ba8129a8 /* Simd.h */, - FFFDba812a107f87ba812a10 /* StackAllocator.h */, - FFFDba812a787f87ba812a78 /* SwCloth.h */, - FFFDba812ae07f87ba812ae0 /* SwClothData.h */, - FFFDba812b487f87ba812b48 /* SwCollision.h */, - FFFDba812bb07f87ba812bb0 /* SwCollisionHelpers.h */, - FFFDba812c187f87ba812c18 /* SwFabric.h */, - FFFDba812c807f87ba812c80 /* SwFactory.h */, - FFFDba812ce87f87ba812ce8 /* SwInterCollision.h */, - FFFDba812d507f87ba812d50 /* SwSelfCollision.h */, - FFFDba812db87f87ba812db8 /* SwSolver.h */, - FFFDba812e207f87ba812e20 /* SwSolverKernel.h */, - FFFDba812e887f87ba812e88 /* TripletScheduler.h */, - FFFDba812ef07f87ba812ef0 /* Vec4T.h */, - FFFDba812f587f87ba812f58 /* Allocator.cpp */, - FFFDba812fc07f87ba812fc0 /* Factory.cpp */, - FFFDba8130287f87ba813028 /* PhaseConfig.cpp */, - FFFDba8130907f87ba813090 /* SwCloth.cpp */, - FFFDba8130f87f87ba8130f8 /* SwClothData.cpp */, - FFFDba8131607f87ba813160 /* SwCollision.cpp */, - FFFDba8131c87f87ba8131c8 /* SwFabric.cpp */, - FFFDba8132307f87ba813230 /* SwFactory.cpp */, - FFFDba8132987f87ba813298 /* SwInterCollision.cpp */, - FFFDba8133007f87ba813300 /* SwSelfCollision.cpp */, - FFFDba8133687f87ba813368 /* SwSolver.cpp */, - FFFDba8133d07f87ba8133d0 /* SwSolverKernel.cpp */, - FFFDba8134387f87ba813438 /* TripletScheduler.cpp */, + FFFDe2184a007ffde2184a00 /* Allocator.h */, + FFFDe2184a687ffde2184a68 /* Array.h */, + FFFDe2184ad07ffde2184ad0 /* BoundingBox.h */, + FFFDe2184b387ffde2184b38 /* ClothBase.h */, + FFFDe2184ba07ffde2184ba0 /* ClothImpl.h */, + FFFDe2184c087ffde2184c08 /* IndexPair.h */, + FFFDe2184c707ffde2184c70 /* IterationState.h */, + FFFDe2184cd87ffde2184cd8 /* MovingAverage.h */, + FFFDe2184d407ffde2184d40 /* PointInterpolator.h */, + FFFDe2184da87ffde2184da8 /* Simd.h */, + FFFDe2184e107ffde2184e10 /* StackAllocator.h */, + FFFDe2184e787ffde2184e78 /* SwCloth.h */, + FFFDe2184ee07ffde2184ee0 /* SwClothData.h */, + FFFDe2184f487ffde2184f48 /* SwCollision.h */, + FFFDe2184fb07ffde2184fb0 /* SwCollisionHelpers.h */, + FFFDe21850187ffde2185018 /* SwFabric.h */, + FFFDe21850807ffde2185080 /* SwFactory.h */, + FFFDe21850e87ffde21850e8 /* SwInterCollision.h */, + FFFDe21851507ffde2185150 /* SwSelfCollision.h */, + FFFDe21851b87ffde21851b8 /* SwSolver.h */, + FFFDe21852207ffde2185220 /* SwSolverKernel.h */, + FFFDe21852887ffde2185288 /* TripletScheduler.h */, + FFFDe21852f07ffde21852f0 /* Vec4T.h */, + FFFDe21853587ffde2185358 /* Allocator.cpp */, + FFFDe21853c07ffde21853c0 /* Factory.cpp */, + FFFDe21854287ffde2185428 /* PhaseConfig.cpp */, + FFFDe21854907ffde2185490 /* SwCloth.cpp */, + FFFDe21854f87ffde21854f8 /* SwClothData.cpp */, + FFFDe21855607ffde2185560 /* SwCollision.cpp */, + FFFDe21855c87ffde21855c8 /* SwFabric.cpp */, + FFFDe21856307ffde2185630 /* SwFactory.cpp */, + FFFDe21856987ffde2185698 /* SwInterCollision.cpp */, + FFFDe21857007ffde2185700 /* SwSelfCollision.cpp */, + FFFDe21857687ffde2185768 /* SwSolver.cpp */, + FFFDe21857d07ffde21857d0 /* SwSolverKernel.cpp */, + FFFDe21858387ffde2185838 /* TripletScheduler.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBb85369107f87b8536910 /* LowLevelParticles */ = { + FFFBe1484d707ffde1484d70 /* LowLevelParticles */ = { isa = PBXGroup; children = ( - FFFBb9cde5207f87b9cde520 /* include */, - FFFBb9cde5487f87b9cde548 /* src */, + FFFBe147be207ffde147be20 /* include */, + FFFBe147be487ffde147be48 /* src */, ); name = "LowLevelParticles"; sourceTree = "<group>"; }; - FFFBb9cde5207f87b9cde520 /* include */ = { + FFFBe147be207ffde147be20 /* include */ = { isa = PBXGroup; children = ( - FFFDbc0098007f87bc009800 /* PtBodyTransformVault.h */, - FFFDbc0098687f87bc009868 /* PtContext.h */, - FFFDbc0098d07f87bc0098d0 /* PtGridCellVector.h */, - FFFDbc0099387f87bc009938 /* PtParticle.h */, - FFFDbc0099a07f87bc0099a0 /* PtParticleContactManagerStream.h */, - FFFDbc009a087f87bc009a08 /* PtParticleData.h */, - FFFDbc009a707f87bc009a70 /* PtParticleShape.h */, - FFFDbc009ad87f87bc009ad8 /* PtParticleSystemCore.h */, - FFFDbc009b407f87bc009b40 /* PtParticleSystemFlags.h */, - FFFDbc009ba87f87bc009ba8 /* PtParticleSystemSim.h */, + FFFDe18178007ffde1817800 /* PtBodyTransformVault.h */, + FFFDe18178687ffde1817868 /* PtContext.h */, + FFFDe18178d07ffde18178d0 /* PtGridCellVector.h */, + FFFDe18179387ffde1817938 /* PtParticle.h */, + FFFDe18179a07ffde18179a0 /* PtParticleContactManagerStream.h */, + FFFDe1817a087ffde1817a08 /* PtParticleData.h */, + FFFDe1817a707ffde1817a70 /* PtParticleShape.h */, + FFFDe1817ad87ffde1817ad8 /* PtParticleSystemCore.h */, + FFFDe1817b407ffde1817b40 /* PtParticleSystemFlags.h */, + FFFDe1817ba87ffde1817ba8 /* PtParticleSystemSim.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBb9cde5487f87b9cde548 /* src */ = { + FFFBe147be487ffde147be48 /* src */ = { isa = PBXGroup; children = ( - FFFDbb8102007f87bb810200 /* PtBatcher.h */, - FFFDbb8102687f87bb810268 /* PtCollision.h */, - FFFDbb8102d07f87bb8102d0 /* PtCollisionData.h */, - FFFDbb8103387f87bb810338 /* PtCollisionHelper.h */, - FFFDbb8103a07f87bb8103a0 /* PtCollisionMethods.h */, - FFFDbb8104087f87bb810408 /* PtCollisionParameters.h */, - FFFDbb8104707f87bb810470 /* PtConfig.h */, - FFFDbb8104d87f87bb8104d8 /* PtConstants.h */, - FFFDbb8105407f87bb810540 /* PtContextCpu.h */, - FFFDbb8105a87f87bb8105a8 /* PtDynamicHelper.h */, - FFFDbb8106107f87bb810610 /* PtDynamics.h */, - FFFDbb8106787f87bb810678 /* PtDynamicsKernels.h */, - FFFDbb8106e07f87bb8106e0 /* PtDynamicsParameters.h */, - FFFDbb8107487f87bb810748 /* PtDynamicsTempBuffers.h */, - FFFDbb8107b07f87bb8107b0 /* PtHeightFieldAabbTest.h */, - FFFDbb8108187f87bb810818 /* PtPacketSections.h */, - FFFDbb8108807f87bb810880 /* PtParticleCell.h */, - FFFDbb8108e87f87bb8108e8 /* PtParticleOpcodeCache.h */, - FFFDbb8109507f87bb810950 /* PtParticleShapeCpu.h */, - FFFDbb8109b87f87bb8109b8 /* PtParticleSystemSimCpu.h */, - FFFDbb810a207f87bb810a20 /* PtSpatialHash.h */, - FFFDbb810a887f87bb810a88 /* PtSpatialHashHelper.h */, - FFFDbb810af07f87bb810af0 /* PtTwoWayData.h */, - FFFDbb810b587f87bb810b58 /* PtBatcher.cpp */, - FFFDbb810bc07f87bb810bc0 /* PtBodyTransformVault.cpp */, - FFFDbb810c287f87bb810c28 /* PtCollision.cpp */, - FFFDbb810c907f87bb810c90 /* PtCollisionBox.cpp */, - FFFDbb810cf87f87bb810cf8 /* PtCollisionCapsule.cpp */, - FFFDbb810d607f87bb810d60 /* PtCollisionConvex.cpp */, - FFFDbb810dc87f87bb810dc8 /* PtCollisionMesh.cpp */, - FFFDbb810e307f87bb810e30 /* PtCollisionPlane.cpp */, - FFFDbb810e987f87bb810e98 /* PtCollisionSphere.cpp */, - FFFDbb810f007f87bb810f00 /* PtContextCpu.cpp */, - FFFDbb810f687f87bb810f68 /* PtDynamics.cpp */, - FFFDbb810fd07f87bb810fd0 /* PtParticleData.cpp */, - FFFDbb8110387f87bb811038 /* PtParticleShapeCpu.cpp */, - FFFDbb8110a07f87bb8110a0 /* PtParticleSystemSimCpu.cpp */, - FFFDbb8111087f87bb811108 /* PtSpatialHash.cpp */, - FFFDbb8111707f87bb811170 /* PtSpatialLocalHash.cpp */, + FFFDe18224007ffde1822400 /* PtBatcher.h */, + FFFDe18224687ffde1822468 /* PtCollision.h */, + FFFDe18224d07ffde18224d0 /* PtCollisionData.h */, + FFFDe18225387ffde1822538 /* PtCollisionHelper.h */, + FFFDe18225a07ffde18225a0 /* PtCollisionMethods.h */, + FFFDe18226087ffde1822608 /* PtCollisionParameters.h */, + FFFDe18226707ffde1822670 /* PtConfig.h */, + FFFDe18226d87ffde18226d8 /* PtConstants.h */, + FFFDe18227407ffde1822740 /* PtContextCpu.h */, + FFFDe18227a87ffde18227a8 /* PtDynamicHelper.h */, + FFFDe18228107ffde1822810 /* PtDynamics.h */, + FFFDe18228787ffde1822878 /* PtDynamicsKernels.h */, + FFFDe18228e07ffde18228e0 /* PtDynamicsParameters.h */, + FFFDe18229487ffde1822948 /* PtDynamicsTempBuffers.h */, + FFFDe18229b07ffde18229b0 /* PtHeightFieldAabbTest.h */, + FFFDe1822a187ffde1822a18 /* PtPacketSections.h */, + FFFDe1822a807ffde1822a80 /* PtParticleCell.h */, + FFFDe1822ae87ffde1822ae8 /* PtParticleOpcodeCache.h */, + FFFDe1822b507ffde1822b50 /* PtParticleShapeCpu.h */, + FFFDe1822bb87ffde1822bb8 /* PtParticleSystemSimCpu.h */, + FFFDe1822c207ffde1822c20 /* PtSpatialHash.h */, + FFFDe1822c887ffde1822c88 /* PtSpatialHashHelper.h */, + FFFDe1822cf07ffde1822cf0 /* PtTwoWayData.h */, + FFFDe1822d587ffde1822d58 /* PtBatcher.cpp */, + FFFDe1822dc07ffde1822dc0 /* PtBodyTransformVault.cpp */, + FFFDe1822e287ffde1822e28 /* PtCollision.cpp */, + FFFDe1822e907ffde1822e90 /* PtCollisionBox.cpp */, + FFFDe1822ef87ffde1822ef8 /* PtCollisionCapsule.cpp */, + FFFDe1822f607ffde1822f60 /* PtCollisionConvex.cpp */, + FFFDe1822fc87ffde1822fc8 /* PtCollisionMesh.cpp */, + FFFDe18230307ffde1823030 /* PtCollisionPlane.cpp */, + FFFDe18230987ffde1823098 /* PtCollisionSphere.cpp */, + FFFDe18231007ffde1823100 /* PtContextCpu.cpp */, + FFFDe18231687ffde1823168 /* PtDynamics.cpp */, + FFFDe18231d07ffde18231d0 /* PtParticleData.cpp */, + FFFDe18232387ffde1823238 /* PtParticleShapeCpu.cpp */, + FFFDe18232a07ffde18232a0 /* PtParticleSystemSimCpu.cpp */, + FFFDe18233087ffde1823308 /* PtSpatialHash.cpp */, + FFFDe18233707ffde1823370 /* PtSpatialLocalHash.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBb9b1cd207f87b9b1cd20 /* PxTask */ = { + FFFBe2f4cec07ffde2f4cec0 /* PxTask */ = { isa = PBXGroup; children = ( - FFFBb9b0a4a07f87b9b0a4a0 /* include */, - FFFBb9b0a4c87f87b9b0a4c8 /* src */, + FFFBe2f4d1f07ffde2f4d1f0 /* include */, + FFFBe2f4d2187ffde2f4d218 /* src */, ); name = "PxTask"; sourceTree = "<group>"; }; - FFFBb9b0a4a07f87b9b0a4a0 /* include */ = { + FFFBe2f4d1f07ffde2f4d1f0 /* include */ = { isa = PBXGroup; children = ( - FFFDb9b405807f87b9b40580 /* PxCpuDispatcher.h */, - FFFDb9b405e87f87b9b405e8 /* PxGpuDispatcher.h */, - FFFDb9b406507f87b9b40650 /* PxGpuTask.h */, - FFFDb9b406b87f87b9b406b8 /* PxTask.h */, - FFFDb9b407207f87b9b40720 /* PxTaskDefine.h */, - FFFDb9b407887f87b9b40788 /* PxTaskManager.h */, + FFFDe2f4e0107ffde2f4e010 /* PxCpuDispatcher.h */, + FFFDe2f4e0787ffde2f4e078 /* PxGpuDispatcher.h */, + FFFDe2f4e0e07ffde2f4e0e0 /* PxGpuTask.h */, + FFFDe2f4e1487ffde2f4e148 /* PxTask.h */, + FFFDe2f4e1b07ffde2f4e1b0 /* PxTaskDefine.h */, + FFFDe2f4e2187ffde2f4e218 /* PxTaskManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBb9b0a4c87f87b9b0a4c8 /* src */ = { + FFFBe2f4d2187ffde2f4d218 /* src */ = { isa = PBXGroup; children = ( - FFFDb9b657007f87b9b65700 /* src/TaskManager.cpp */, + FFFDe2f4e2807ffde2f4e280 /* src/TaskManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBb85c61b07f87b85c61b0 /* PsFastXml */ = { + FFFBe2942d107ffde2942d10 /* PsFastXml */ = { isa = PBXGroup; children = ( - FFFBb85c67807f87b85c6780 /* include */, - FFFBb85c67a87f87b85c67a8 /* src */, + FFFBe29432007ffde2943200 /* include */, + FFFBe29432287ffde2943228 /* src */, ); name = "PsFastXml"; sourceTree = "<group>"; }; - FFFBb85c67807f87b85c6780 /* include */ = { + FFFBe29432007ffde2943200 /* include */ = { isa = PBXGroup; children = ( - FFFDb85c69107f87b85c6910 /* PsFastXml.h */, + FFFDe29433907ffde2943390 /* PsFastXml.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBb85c67a87f87b85c67a8 /* src */ = { + FFFBe29432287ffde2943228 /* src */ = { isa = PBXGroup; children = ( - FFFDb85c6a107f87b85c6a10 /* PsFastXml.cpp */, + FFFDe29434907ffde2943490 /* PsFastXml.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; @@ -4991,61 +4991,61 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - FFFAb9b18ce07f87b9b18ce0 /* PhysX */ = { + FFFAe29464b07ffde29464b0 /* PhysX */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6b9b18ce07f87b9b18ce0 /* Build configuration list for PBXNativeTarget "PhysX" */; + buildConfigurationList = FFF6e29464b07ffde29464b0 /* Build configuration list for PBXNativeTarget "PhysX" */; buildPhases = ( - FFF2b9b18ce07f87b9b18ce0, - FFF8b9b18ce07f87b9b18ce0, - FFFCb9b18ce07f87b9b18ce0, + FFF2e29464b07ffde29464b0, + FFF8e29464b07ffde29464b0, + FFFCe29464b07ffde29464b0, ); buildRules = ( ); dependencies = ( - FFF4bd2bf3507f87bd2bf350, /* LowLevel */ - FFF4bd2bf3b07f87bd2bf3b0, /* LowLevelAABB */ - FFF4bd2bf5f07f87bd2bf5f0, /* LowLevelCloth */ - FFF4bd2bf5907f87bd2bf590, /* LowLevelDynamics */ - FFF4bd2bf6507f87bd2bf650, /* LowLevelParticles */ - FFF4bd2c5d507f87bd2c5d50, /* PhysXCommon */ - FFF4b9b801a07f87b9b801a0, /* PxFoundation */ - FFF4b9b7eda07f87b9b7eda0, /* PxPvdSDK */ - FFF4bd2c56907f87bd2c5690, /* PxTask */ - FFF4bd2bf6b07f87bd2bf6b0, /* SceneQuery */ - FFF4bd2c56607f87bd2c5660, /* SimulationController */ + FFF4e2952c507ffde2952c50, /* LowLevel */ + FFF4e2951e907ffde2951e90, /* LowLevelAABB */ + FFF4e2952b607ffde2952b60, /* LowLevelCloth */ + FFF4e2952b007ffde2952b00, /* LowLevelDynamics */ + FFF4e294f2c07ffde294f2c0, /* LowLevelParticles */ + FFF4e2952bf07ffde2952bf0, /* PhysXCommon */ + FFF4e29467a07ffde29467a0, /* PxFoundation */ + FFF4e29464507ffde2946450, /* PxPvdSDK */ + FFF4e294f3b07ffde294f3b0, /* PxTask */ + FFF4e294f3207ffde294f320, /* SceneQuery */ + FFF4e294f3807ffde294f380, /* SimulationController */ ); name = "PhysX"; productName = "PhysX"; - productReference = FFFDb9b18ce07f87b9b18ce0 /* PhysX */; + productReference = FFFDe29464b07ffde29464b0 /* PhysX */; productType = "com.apple.product-type.library.static"; }; - FFFAbd2c56a07f87bd2c56a0 /* PhysXCharacterKinematic */ = { + FFFAe294ef707ffde294ef70 /* PhysXCharacterKinematic */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6bd2c56a07f87bd2c56a0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; + buildConfigurationList = FFF6e294ef707ffde294ef70 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; buildPhases = ( - FFF2bd2c56a07f87bd2c56a0, - FFF8bd2c56a07f87bd2c56a0, - FFFCbd2c56a07f87bd2c56a0, + FFF2e294ef707ffde294ef70, + FFF8e294ef707ffde294ef70, + FFFCe294ef707ffde294ef70, ); buildRules = ( ); dependencies = ( - FFF4bd070fc07f87bd070fc0, /* PhysXCommon */ - FFF4bd0763d07f87bd0763d0, /* PhysXExtensions */ - FFF4bd0e68107f87bd0e6810, /* PxFoundation */ + FFF4e2954dc07ffde2954dc0, /* PhysXCommon */ + FFF4e29543507ffde2954350, /* PhysXExtensions */ + FFF4e29555207ffde2955520, /* PxFoundation */ ); name = "PhysXCharacterKinematic"; productName = "PhysXCharacterKinematic"; - productReference = FFFDbd2c56a07f87bd2c56a0 /* PhysXCharacterKinematic */; + productReference = FFFDe294ef707ffde294ef70 /* PhysXCharacterKinematic */; productType = "com.apple.product-type.library.static"; }; - FFFAbd07bfb07f87bd07bfb0 /* PhysXVehicle */ = { + FFFAe29504707ffde2950470 /* PhysXVehicle */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6bd07bfb07f87bd07bfb0 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; + buildConfigurationList = FFF6e29504707ffde2950470 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; buildPhases = ( - FFF2bd07bfb07f87bd07bfb0, - FFF8bd07bfb07f87bd07bfb0, - FFFCbd07bfb07f87bd07bfb0, + FFF2e29504707ffde2950470, + FFF8e29504707ffde2950470, + FFFCe29504707ffde2950470, ); buildRules = ( ); @@ -5053,34 +5053,34 @@ ); name = "PhysXVehicle"; productName = "PhysXVehicle"; - productReference = FFFDbd07bfb07f87bd07bfb0 /* PhysXVehicle */; + productReference = FFFDe29504707ffde2950470 /* PhysXVehicle */; productType = "com.apple.product-type.library.static"; }; - FFFAb9ac2fb07f87b9ac2fb0 /* PhysXExtensions */ = { + FFFAe29617f07ffde29617f0 /* PhysXExtensions */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6b9ac2fb07f87b9ac2fb0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; + buildConfigurationList = FFF6e29617f07ffde29617f0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; buildPhases = ( - FFF2b9ac2fb07f87b9ac2fb0, - FFF8b9ac2fb07f87b9ac2fb0, - FFFCb9ac2fb07f87b9ac2fb0, + FFF2e29617f07ffde29617f0, + FFF8e29617f07ffde29617f0, + FFFCe29617f07ffde29617f0, ); buildRules = ( ); dependencies = ( - FFF4b9abea407f87b9abea40, /* PsFastXml */ + FFF4e295e8007ffde295e800, /* PsFastXml */ ); name = "PhysXExtensions"; productName = "PhysXExtensions"; - productReference = FFFDb9ac2fb07f87b9ac2fb0 /* PhysXExtensions */; + productReference = FFFDe29617f07ffde29617f0 /* PhysXExtensions */; productType = "com.apple.product-type.library.static"; }; - FFFAb9b326907f87b9b32690 /* SceneQuery */ = { + FFFAe450b7207ffde450b720 /* SceneQuery */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6b9b326907f87b9b32690 /* Build configuration list for PBXNativeTarget "SceneQuery" */; + buildConfigurationList = FFF6e450b7207ffde450b720 /* Build configuration list for PBXNativeTarget "SceneQuery" */; buildPhases = ( - FFF2b9b326907f87b9b32690, - FFF8b9b326907f87b9b32690, - FFFCb9b326907f87b9b32690, + FFF2e450b7207ffde450b720, + FFF8e450b7207ffde450b720, + FFFCe450b7207ffde450b720, ); buildRules = ( ); @@ -5088,16 +5088,16 @@ ); name = "SceneQuery"; productName = "SceneQuery"; - productReference = FFFDb9b326907f87b9b32690 /* SceneQuery */; + productReference = FFFDe450b7207ffde450b720 /* SceneQuery */; productType = "com.apple.product-type.library.static"; }; - FFFAb9b2f6c07f87b9b2f6c0 /* SimulationController */ = { + FFFAe450fbf07ffde450fbf0 /* SimulationController */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6b9b2f6c07f87b9b2f6c0 /* Build configuration list for PBXNativeTarget "SimulationController" */; + buildConfigurationList = FFF6e450fbf07ffde450fbf0 /* Build configuration list for PBXNativeTarget "SimulationController" */; buildPhases = ( - FFF2b9b2f6c07f87b9b2f6c0, - FFF8b9b2f6c07f87b9b2f6c0, - FFFCb9b2f6c07f87b9b2f6c0, + FFF2e450fbf07ffde450fbf0, + FFF8e450fbf07ffde450fbf0, + FFFCe450fbf07ffde450fbf0, ); buildRules = ( ); @@ -5105,54 +5105,54 @@ ); name = "SimulationController"; productName = "SimulationController"; - productReference = FFFDb9b2f6c07f87b9b2f6c0 /* SimulationController */; + productReference = FFFDe450fbf07ffde450fbf0 /* SimulationController */; productType = "com.apple.product-type.library.static"; }; - FFFAbd3609d07f87bd3609d0 /* PhysXCooking */ = { + FFFAe2d74eb07ffde2d74eb0 /* PhysXCooking */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6bd3609d07f87bd3609d0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; + buildConfigurationList = FFF6e2d74eb07ffde2d74eb0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; buildPhases = ( - FFF2bd3609d07f87bd3609d0, - FFF8bd3609d07f87bd3609d0, - FFFCbd3609d07f87bd3609d0, + FFF2e2d74eb07ffde2d74eb0, + FFF8e2d74eb07ffde2d74eb0, + FFFCe2d74eb07ffde2d74eb0, ); buildRules = ( ); dependencies = ( - FFF4bd3642207f87bd364220, /* PhysXCommon */ - FFF4bd3650b07f87bd3650b0, /* PhysXExtensions */ - FFF4bd3608a07f87bd3608a0, /* PxFoundation */ + FFF4e2d66cf07ffde2d66cf0, /* PhysXCommon */ + FFF4e2d762407ffde2d76240, /* PhysXExtensions */ + FFF4e2d748507ffde2d74850, /* PxFoundation */ ); name = "PhysXCooking"; productName = "PhysXCooking"; - productReference = FFFDbd3609d07f87bd3609d0 /* PhysXCooking */; + productReference = FFFDe2d74eb07ffde2d74eb0 /* PhysXCooking */; productType = "com.apple.product-type.library.static"; }; - FFFAb85164f07f87b85164f0 /* PhysXCommon */ = { + FFFAe2c17a107ffde2c17a10 /* PhysXCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6b85164f07f87b85164f0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; + buildConfigurationList = FFF6e2c17a107ffde2c17a10 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; buildPhases = ( - FFF2b85164f07f87b85164f0, - FFF8b85164f07f87b85164f0, - FFFCb85164f07f87b85164f0, + FFF2e2c17a107ffde2c17a10, + FFF8e2c17a107ffde2c17a10, + FFFCe2c17a107ffde2c17a10, ); buildRules = ( ); dependencies = ( - FFF4b86f4c707f87b86f4c70, /* PxFoundation */ + FFF4e2c08f307ffde2c08f30, /* PxFoundation */ ); name = "PhysXCommon"; productName = "PhysXCommon"; - productReference = FFFDb85164f07f87b85164f0 /* PhysXCommon */; + productReference = FFFDe2c17a107ffde2c17a10 /* PhysXCommon */; productType = "com.apple.product-type.library.static"; }; - FFFAb8500ad07f87b8500ad0 /* PxFoundation */ = { + FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6b8500ad07f87b8500ad0 /* Build configuration list for PBXNativeTarget "PxFoundation" */; + buildConfigurationList = FFF6e2c0b7d07ffde2c0b7d0 /* Build configuration list for PBXNativeTarget "PxFoundation" */; buildPhases = ( - FFF2b8500ad07f87b8500ad0, - FFF8b8500ad07f87b8500ad0, - FFFCb8500ad07f87b8500ad0, + FFF2e2c0b7d07ffde2c0b7d0, + FFF8e2c0b7d07ffde2c0b7d0, + FFFCe2c0b7d07ffde2c0b7d0, ); buildRules = ( ); @@ -5160,34 +5160,34 @@ ); name = "PxFoundation"; productName = "PxFoundation"; - productReference = FFFDb8500ad07f87b8500ad0 /* PxFoundation */; + productReference = FFFDe2c0b7d07ffde2c0b7d0 /* PxFoundation */; productType = "com.apple.product-type.library.static"; }; - FFFAb9b082f07f87b9b082f0 /* PxPvdSDK */ = { + FFFAe29691807ffde2969180 /* PxPvdSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6b9b082f07f87b9b082f0 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; + buildConfigurationList = FFF6e29691807ffde2969180 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; buildPhases = ( - FFF2b9b082f07f87b9b082f0, - FFF8b9b082f07f87b9b082f0, - FFFCb9b082f07f87b9b082f0, + FFF2e29691807ffde2969180, + FFF8e29691807ffde2969180, + FFFCe29691807ffde2969180, ); buildRules = ( ); dependencies = ( - FFF4b9b091707f87b9b09170, /* PxFoundation */ + FFF4e29150b07ffde29150b0, /* PxFoundation */ ); name = "PxPvdSDK"; productName = "PxPvdSDK"; - productReference = FFFDb9b082f07f87b9b082f0 /* PxPvdSDK */; + productReference = FFFDe29691807ffde2969180 /* PxPvdSDK */; productType = "com.apple.product-type.library.static"; }; - FFFAb86f79707f87b86f7970 /* LowLevel */ = { + FFFAe2f1a6b07ffde2f1a6b0 /* LowLevel */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6b86f79707f87b86f7970 /* Build configuration list for PBXNativeTarget "LowLevel" */; + buildConfigurationList = FFF6e2f1a6b07ffde2f1a6b0 /* Build configuration list for PBXNativeTarget "LowLevel" */; buildPhases = ( - FFF2b86f79707f87b86f7970, - FFF8b86f79707f87b86f7970, - FFFCb86f79707f87b86f7970, + FFF2e2f1a6b07ffde2f1a6b0, + FFF8e2f1a6b07ffde2f1a6b0, + FFFCe2f1a6b07ffde2f1a6b0, ); buildRules = ( ); @@ -5195,16 +5195,16 @@ ); name = "LowLevel"; productName = "LowLevel"; - productReference = FFFDb86f79707f87b86f7970 /* LowLevel */; + productReference = FFFDe2f1a6b07ffde2f1a6b0 /* LowLevel */; productType = "com.apple.product-type.library.static"; }; - FFFAbd2378b07f87bd2378b0 /* LowLevelAABB */ = { + FFFAe2d334507ffde2d33450 /* LowLevelAABB */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6bd2378b07f87bd2378b0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; + buildConfigurationList = FFF6e2d334507ffde2d33450 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; buildPhases = ( - FFF2bd2378b07f87bd2378b0, - FFF8bd2378b07f87bd2378b0, - FFFCbd2378b07f87bd2378b0, + FFF2e2d334507ffde2d33450, + FFF8e2d334507ffde2d33450, + FFFCe2d334507ffde2d33450, ); buildRules = ( ); @@ -5212,16 +5212,16 @@ ); name = "LowLevelAABB"; productName = "LowLevelAABB"; - productReference = FFFDbd2378b07f87bd2378b0 /* LowLevelAABB */; + productReference = FFFDe2d334507ffde2d33450 /* LowLevelAABB */; productType = "com.apple.product-type.library.static"; }; - FFFAbd00c5a07f87bd00c5a0 /* LowLevelDynamics */ = { + FFFAe2d544f07ffde2d544f0 /* LowLevelDynamics */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6bd00c5a07f87bd00c5a0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; + buildConfigurationList = FFF6e2d544f07ffde2d544f0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; buildPhases = ( - FFF2bd00c5a07f87bd00c5a0, - FFF8bd00c5a07f87bd00c5a0, - FFFCbd00c5a07f87bd00c5a0, + FFF2e2d544f07ffde2d544f0, + FFF8e2d544f07ffde2d544f0, + FFFCe2d544f07ffde2d544f0, ); buildRules = ( ); @@ -5229,16 +5229,16 @@ ); name = "LowLevelDynamics"; productName = "LowLevelDynamics"; - productReference = FFFDbd00c5a07f87bd00c5a0 /* LowLevelDynamics */; + productReference = FFFDe2d544f07ffde2d544f0 /* LowLevelDynamics */; productType = "com.apple.product-type.library.static"; }; - FFFAbd0168307f87bd016830 /* LowLevelCloth */ = { + FFFAe292cb407ffde292cb40 /* LowLevelCloth */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6bd0168307f87bd016830 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; + buildConfigurationList = FFF6e292cb407ffde292cb40 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; buildPhases = ( - FFF2bd0168307f87bd016830, - FFF8bd0168307f87bd016830, - FFFCbd0168307f87bd016830, + FFF2e292cb407ffde292cb40, + FFF8e292cb407ffde292cb40, + FFFCe292cb407ffde292cb40, ); buildRules = ( ); @@ -5246,16 +5246,16 @@ ); name = "LowLevelCloth"; productName = "LowLevelCloth"; - productReference = FFFDbd0168307f87bd016830 /* LowLevelCloth */; + productReference = FFFDe292cb407ffde292cb40 /* LowLevelCloth */; productType = "com.apple.product-type.library.static"; }; - FFFAb85369107f87b8536910 /* LowLevelParticles */ = { + FFFAe1484d707ffde1484d70 /* LowLevelParticles */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6b85369107f87b8536910 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; + buildConfigurationList = FFF6e1484d707ffde1484d70 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; buildPhases = ( - FFF2b85369107f87b8536910, - FFF8b85369107f87b8536910, - FFFCb85369107f87b8536910, + FFF2e1484d707ffde1484d70, + FFF8e1484d707ffde1484d70, + FFFCe1484d707ffde1484d70, ); buildRules = ( ); @@ -5263,16 +5263,16 @@ ); name = "LowLevelParticles"; productName = "LowLevelParticles"; - productReference = FFFDb85369107f87b8536910 /* LowLevelParticles */; + productReference = FFFDe1484d707ffde1484d70 /* LowLevelParticles */; productType = "com.apple.product-type.library.static"; }; - FFFAb9b1cd207f87b9b1cd20 /* PxTask */ = { + FFFAe2f4cec07ffde2f4cec0 /* PxTask */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6b9b1cd207f87b9b1cd20 /* Build configuration list for PBXNativeTarget "PxTask" */; + buildConfigurationList = FFF6e2f4cec07ffde2f4cec0 /* Build configuration list for PBXNativeTarget "PxTask" */; buildPhases = ( - FFF2b9b1cd207f87b9b1cd20, - FFF8b9b1cd207f87b9b1cd20, - FFFCb9b1cd207f87b9b1cd20, + FFF2e2f4cec07ffde2f4cec0, + FFF8e2f4cec07ffde2f4cec0, + FFFCe2f4cec07ffde2f4cec0, ); buildRules = ( ); @@ -5280,16 +5280,16 @@ ); name = "PxTask"; productName = "PxTask"; - productReference = FFFDb9b1cd207f87b9b1cd20 /* PxTask */; + productReference = FFFDe2f4cec07ffde2f4cec0 /* PxTask */; productType = "com.apple.product-type.library.static"; }; - FFFAb85c61b07f87b85c61b0 /* PsFastXml */ = { + FFFAe2942d107ffde2942d10 /* PsFastXml */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6b85c61b07f87b85c61b0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; + buildConfigurationList = FFF6e2942d107ffde2942d10 /* Build configuration list for PBXNativeTarget "PsFastXml" */; buildPhases = ( - FFF2b85c61b07f87b85c61b0, - FFF8b85c61b07f87b85c61b0, - FFFCb85c61b07f87b85c61b0, + FFF2e2942d107ffde2942d10, + FFF8e2942d107ffde2942d10, + FFFCe2942d107ffde2942d10, ); buildRules = ( ); @@ -5297,213 +5297,213 @@ ); name = "PsFastXml"; productName = "PsFastXml"; - productReference = FFFDb85c61b07f87b85c61b0 /* PsFastXml */; + productReference = FFFDe2942d107ffde2942d10 /* PsFastXml */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin XCConfigurationList section */ - FFF6b9b18ce07f87b9b18ce0 = { + FFF6e29464b07ffde29464b0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7bb81ae007f87bb81ae00, - FFF7bb81b4f07f87bb81b4f0, - FFF7bb81bbe07f87bb81bbe0, - FFF7bb81c2d07f87bb81c2d0, + FFF7e382b6007ffde382b600, + FFF7e382bcf07ffde382bcf0, + FFF7e382c3e07ffde382c3e0, + FFF7e382cad07ffde382cad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6bd2c56a07f87bd2c56a0 = { + FFF6e294ef707ffde294ef70 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7bc00e4007f87bc00e400, - FFF7bc00eaf07f87bc00eaf0, - FFF7bc00f1e07f87bc00f1e0, - FFF7bc00f8d07f87bc00f8d0, + FFF7e382d2007ffde382d200, + FFF7e382d8f07ffde382d8f0, + FFF7e382dfe07ffde382dfe0, + FFF7e382e6d07ffde382e6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6bd07bfb07f87bd07bfb0 = { + FFF6e29504707ffde2950470 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7b880a6007f87b880a600, - FFF7b880acf07f87b880acf0, - FFF7b880b3e07f87b880b3e0, - FFF7b880bad07f87b880bad0, + FFF7e382ee007ffde382ee00, + FFF7e382f4f07ffde382f4f0, + FFF7e382fbe07ffde382fbe0, + FFF7e38302d07ffde38302d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6b9ac2fb07f87b9ac2fb0 = { + FFF6e29617f07ffde29617f0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7ba07f6007f87ba07f600, - FFF7ba07fcf07f87ba07fcf0, - FFF7ba0803e07f87ba0803e0, - FFF7ba080ad07f87ba080ad0, + FFF7e3830a007ffde3830a00, + FFF7e38310f07ffde38310f0, + FFF7e38317e07ffde38317e0, + FFF7e3831ed07ffde3831ed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6b9b326907f87b9b32690 = { + FFF6e450b7207ffde450b720 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7bc00c2007f87bc00c200, - FFF7bc00c8f07f87bc00c8f0, - FFF7bc00cfe07f87bc00cfe0, - FFF7bc00d6d07f87bc00d6d0, + FFF7e38326007ffde3832600, + FFF7e3832cf07ffde3832cf0, + FFF7e38333e07ffde38333e0, + FFF7e3833ad07ffde3833ad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6b9b2f6c07f87b9b2f6c0 = { + FFF6e450fbf07ffde450fbf0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7bb81ca007f87bb81ca00, - FFF7bb81d0f07f87bb81d0f0, - FFF7bb81d7e07f87bb81d7e0, - FFF7bb81ded07f87bb81ded0, + FFF7e38342007ffde3834200, + FFF7e38348f07ffde38348f0, + FFF7e3834fe07ffde3834fe0, + FFF7e38356d07ffde38356d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6bd3609d07f87bd3609d0 = { + FFF6e2d74eb07ffde2d74eb0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7bc0100007f87bc010000, - FFF7bc0106f07f87bc0106f0, - FFF7bc010de07f87bc010de0, - FFF7bc0114d07f87bc0114d0, + FFF7e3835e007ffde3835e00, + FFF7e38364f07ffde38364f0, + FFF7e3836be07ffde3836be0, + FFF7e38372d07ffde38372d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6b85164f07f87b85164f0 = { + FFF6e2c17a107ffde2c17a10 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7ba05d4007f87ba05d400, - FFF7ba05daf07f87ba05daf0, - FFF7ba05e1e07f87ba05e1e0, - FFF7ba05e8d07f87ba05e8d0, + FFF7e38110007ffde3811000, + FFF7e38116f07ffde38116f0, + FFF7e3811de07ffde3811de0, + FFF7e38124d07ffde38124d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6b8500ad07f87b8500ad0 = { + FFF6e2c0b7d07ffde2c0b7d0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7bb0908007f87bb090800, - FFF7bb090ef07f87bb090ef0, - FFF7bb0915e07f87bb0915e0, - FFF7bb091cd07f87bb091cd0, + FFF7e30188007ffde3018800, + FFF7e3018ef07ffde3018ef0, + FFF7e30195e07ffde30195e0, + FFF7e3019cd07ffde3019cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6b9b082f07f87b9b082f0 = { + FFF6e29691807ffde2969180 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7ba0716007f87ba071600, - FFF7ba071cf07f87ba071cf0, - FFF7ba0723e07f87ba0723e0, - FFF7ba072ad07f87ba072ad0, + FFF7e21784007ffde2178400, + FFF7e2178af07ffde2178af0, + FFF7e21791e07ffde21791e0, + FFF7e21798d07ffde21798d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6b86f79707f87b86f7970 = { + FFF6e2f1a6b07ffde2f1a6b0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7b9020e007f87b9020e00, - FFF7b90214f07f87b90214f0, - FFF7b9021be07f87b9021be0, - FFF7b90222d07f87b90222d0, + FFF7e304f0007ffde304f000, + FFF7e304f6f07ffde304f6f0, + FFF7e304fde07ffde304fde0, + FFF7e30504d07ffde30504d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6bd2378b07f87bd2378b0 = { + FFF6e2d334507ffde2d33450 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7ba80c6007f87ba80c600, - FFF7ba80ccf07f87ba80ccf0, - FFF7ba80d3e07f87ba80d3e0, - FFF7ba80dad07f87ba80dad0, + FFF7e381a0007ffde381a000, + FFF7e381a6f07ffde381a6f0, + FFF7e381ade07ffde381ade0, + FFF7e381b4d07ffde381b4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6bd00c5a07f87bd00c5a0 = { + FFF6e2d544f07ffde2d544f0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7ba80fc007f87ba80fc00, - FFF7ba8102f07f87ba8102f0, - FFF7ba8109e07f87ba8109e0, - FFF7ba8110d07f87ba8110d0, + FFF7e38252007ffde3825200, + FFF7e38258f07ffde38258f0, + FFF7e3825fe07ffde3825fe0, + FFF7e38266d07ffde38266d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6bd0168307f87bd016830 = { + FFF6e292cb407ffde292cb40 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7ba8162007f87ba816200, - FFF7ba8168f07f87ba8168f0, - FFF7ba816fe07f87ba816fe0, - FFF7ba8176d07f87ba8176d0, + FFF7e21864007ffde2186400, + FFF7e2186af07ffde2186af0, + FFF7e21871e07ffde21871e0, + FFF7e21878d07ffde21878d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6b85369107f87b8536910 = { + FFF6e1484d707ffde1484d70 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7b8807c007f87b8807c00, - FFF7b88082f07f87b88082f0, - FFF7b88089e07f87b88089e0, - FFF7b88090d07f87b88090d0, + FFF7e1823e007ffde1823e00, + FFF7e18244f07ffde18244f0, + FFF7e1824be07ffde1824be0, + FFF7e18252d07ffde18252d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6b9b1cd207f87b9b1cd20 = { + FFF6e2f4cec07ffde2f4cec0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7bc80f4007f87bc80f400, - FFF7bc80faf07f87bc80faf0, - FFF7bc8101e07f87bc8101e0, - FFF7bc8108d07f87bc8108d0, + FFF7e30562007ffde3056200, + FFF7e30568f07ffde30568f0, + FFF7e3056fe07ffde3056fe0, + FFF7e30576d07ffde30576d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6b85c61b07f87b85c61b0 = { + FFF6e2942d107ffde2942d10 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7bc8110007f87bc811000, - FFF7bc8116f07f87bc8116f0, - FFF7bc811de07f87bc811de0, - FFF7bc8124d07f87bc8124d0, + FFF7e218c6007ffde218c600, + FFF7e218ccf07ffde218ccf0, + FFF7e218d3e07ffde218d3e0, + FFF7e218dad07ffde218dad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6b980f9b07f87b980f9b0 = { + FFF6e170df007ffde170df00 = { isa = XCConfigurationList; buildConfigurations = ( - FFF3bb81ae007f87bb81ae00 /* release */, - FFF3bb81b4f07f87bb81b4f0 /* debug */, - FFF3bb81bbe07f87bb81bbe0 /* checked */, - FFF3bb81c2d07f87bb81c2d0 /* profile */, + FFF3e382b6007ffde382b600 /* release */, + FFF3e382bcf07ffde382bcf0 /* debug */, + FFF3e382c3e07ffde382c3e0 /* checked */, + FFF3e382cad07ffde382cad0 /* profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; /* End XCConfigurationList section */ /* Begin XCBuildConfiguration section */ - FFF7bb81ae007f87bb81ae00 /* release */ = { + FFF7e382b6007ffde382b600 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5533,7 +5533,7 @@ }; name = "release"; }; - FFF7bb81b4f07f87bb81b4f0 /* debug */ = { + FFF7e382bcf07ffde382bcf0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5563,7 +5563,7 @@ }; name = "debug"; }; - FFF7bb81bbe07f87bb81bbe0 /* checked */ = { + FFF7e382c3e07ffde382c3e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5593,7 +5593,7 @@ }; name = "checked"; }; - FFF7bb81c2d07f87bb81c2d0 /* profile */ = { + FFF7e382cad07ffde382cad0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5623,7 +5623,7 @@ }; name = "profile"; }; - FFF7bc00e4007f87bc00e400 /* debug */ = { + FFF7e382d2007ffde382d200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5653,7 +5653,7 @@ }; name = "debug"; }; - FFF7bc00eaf07f87bc00eaf0 /* checked */ = { + FFF7e382d8f07ffde382d8f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5683,7 +5683,7 @@ }; name = "checked"; }; - FFF7bc00f1e07f87bc00f1e0 /* profile */ = { + FFF7e382dfe07ffde382dfe0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5713,7 +5713,7 @@ }; name = "profile"; }; - FFF7bc00f8d07f87bc00f8d0 /* release */ = { + FFF7e382e6d07ffde382e6d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5743,7 +5743,7 @@ }; name = "release"; }; - FFF7b880a6007f87b880a600 /* debug */ = { + FFF7e382ee007ffde382ee00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5773,7 +5773,7 @@ }; name = "debug"; }; - FFF7b880acf07f87b880acf0 /* checked */ = { + FFF7e382f4f07ffde382f4f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5803,7 +5803,7 @@ }; name = "checked"; }; - FFF7b880b3e07f87b880b3e0 /* profile */ = { + FFF7e382fbe07ffde382fbe0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5833,7 +5833,7 @@ }; name = "profile"; }; - FFF7b880bad07f87b880bad0 /* release */ = { + FFF7e38302d07ffde38302d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5863,7 +5863,7 @@ }; name = "release"; }; - FFF7ba07f6007f87ba07f600 /* debug */ = { + FFF7e3830a007ffde3830a00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5871,7 +5871,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5893,7 +5893,7 @@ }; name = "debug"; }; - FFF7ba07fcf07f87ba07fcf0 /* checked */ = { + FFF7e38310f07ffde38310f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5901,7 +5901,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5923,7 +5923,7 @@ }; name = "checked"; }; - FFF7ba0803e07f87ba0803e0 /* profile */ = { + FFF7e38317e07ffde38317e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5931,7 +5931,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5953,7 +5953,7 @@ }; name = "profile"; }; - FFF7ba080ad07f87ba080ad0 /* release */ = { + FFF7e3831ed07ffde3831ed0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5961,7 +5961,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5983,7 +5983,7 @@ }; name = "release"; }; - FFF7bc00c2007f87bc00c200 /* debug */ = { + FFF7e38326007ffde3832600 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6013,7 +6013,7 @@ }; name = "debug"; }; - FFF7bc00c8f07f87bc00c8f0 /* checked */ = { + FFF7e3832cf07ffde3832cf0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6043,7 +6043,7 @@ }; name = "checked"; }; - FFF7bc00cfe07f87bc00cfe0 /* profile */ = { + FFF7e38333e07ffde38333e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6073,7 +6073,7 @@ }; name = "profile"; }; - FFF7bc00d6d07f87bc00d6d0 /* release */ = { + FFF7e3833ad07ffde3833ad0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6103,7 +6103,7 @@ }; name = "release"; }; - FFF7bb81ca007f87bb81ca00 /* debug */ = { + FFF7e38342007ffde3834200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6133,7 +6133,7 @@ }; name = "debug"; }; - FFF7bb81d0f07f87bb81d0f0 /* checked */ = { + FFF7e38348f07ffde38348f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6163,7 +6163,7 @@ }; name = "checked"; }; - FFF7bb81d7e07f87bb81d7e0 /* profile */ = { + FFF7e3834fe07ffde3834fe0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6193,7 +6193,7 @@ }; name = "profile"; }; - FFF7bb81ded07f87bb81ded0 /* release */ = { + FFF7e38356d07ffde38356d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6223,7 +6223,7 @@ }; name = "release"; }; - FFF7bc0100007f87bc010000 /* release */ = { + FFF7e3835e007ffde3835e00 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6253,7 +6253,7 @@ }; name = "release"; }; - FFF7bc0106f07f87bc0106f0 /* debug */ = { + FFF7e38364f07ffde38364f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6283,7 +6283,7 @@ }; name = "debug"; }; - FFF7bc010de07f87bc010de0 /* checked */ = { + FFF7e3836be07ffde3836be0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6313,7 +6313,7 @@ }; name = "checked"; }; - FFF7bc0114d07f87bc0114d0 /* profile */ = { + FFF7e38372d07ffde38372d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6343,7 +6343,7 @@ }; name = "profile"; }; - FFF7ba05d4007f87ba05d400 /* release */ = { + FFF7e38110007ffde3811000 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6373,7 +6373,7 @@ }; name = "release"; }; - FFF7ba05daf07f87ba05daf0 /* debug */ = { + FFF7e38116f07ffde38116f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6403,7 +6403,7 @@ }; name = "debug"; }; - FFF7ba05e1e07f87ba05e1e0 /* checked */ = { + FFF7e3811de07ffde3811de0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6433,7 +6433,7 @@ }; name = "checked"; }; - FFF7ba05e8d07f87ba05e8d0 /* profile */ = { + FFF7e38124d07ffde38124d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6463,7 +6463,7 @@ }; name = "profile"; }; - FFF7bb0908007f87bb090800 /* debug */ = { + FFF7e30188007ffde3018800 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6493,7 +6493,7 @@ }; name = "debug"; }; - FFF7bb090ef07f87bb090ef0 /* release */ = { + FFF7e3018ef07ffde3018ef0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6523,7 +6523,7 @@ }; name = "release"; }; - FFF7bb0915e07f87bb0915e0 /* checked */ = { + FFF7e30195e07ffde30195e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6553,7 +6553,7 @@ }; name = "checked"; }; - FFF7bb091cd07f87bb091cd0 /* profile */ = { + FFF7e3019cd07ffde3019cd0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6583,7 +6583,7 @@ }; name = "profile"; }; - FFF7ba0716007f87ba071600 /* debug */ = { + FFF7e21784007ffde2178400 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6613,7 +6613,7 @@ }; name = "debug"; }; - FFF7ba071cf07f87ba071cf0 /* release */ = { + FFF7e2178af07ffde2178af0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6643,7 +6643,7 @@ }; name = "release"; }; - FFF7ba0723e07f87ba0723e0 /* checked */ = { + FFF7e21791e07ffde21791e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6673,7 +6673,7 @@ }; name = "checked"; }; - FFF7ba072ad07f87ba072ad0 /* profile */ = { + FFF7e21798d07ffde21798d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6703,7 +6703,7 @@ }; name = "profile"; }; - FFF7b9020e007f87b9020e00 /* debug */ = { + FFF7e304f0007ffde304f000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6733,7 +6733,7 @@ }; name = "debug"; }; - FFF7b90214f07f87b90214f0 /* checked */ = { + FFF7e304f6f07ffde304f6f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6763,7 +6763,7 @@ }; name = "checked"; }; - FFF7b9021be07f87b9021be0 /* profile */ = { + FFF7e304fde07ffde304fde0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6793,7 +6793,7 @@ }; name = "profile"; }; - FFF7b90222d07f87b90222d0 /* release */ = { + FFF7e30504d07ffde30504d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6823,7 +6823,7 @@ }; name = "release"; }; - FFF7ba80c6007f87ba80c600 /* debug */ = { + FFF7e381a0007ffde381a000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6853,7 +6853,7 @@ }; name = "debug"; }; - FFF7ba80ccf07f87ba80ccf0 /* checked */ = { + FFF7e381a6f07ffde381a6f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6883,7 +6883,7 @@ }; name = "checked"; }; - FFF7ba80d3e07f87ba80d3e0 /* profile */ = { + FFF7e381ade07ffde381ade0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6913,7 +6913,7 @@ }; name = "profile"; }; - FFF7ba80dad07f87ba80dad0 /* release */ = { + FFF7e381b4d07ffde381b4d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6943,7 +6943,7 @@ }; name = "release"; }; - FFF7ba80fc007f87ba80fc00 /* debug */ = { + FFF7e38252007ffde3825200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6973,7 +6973,7 @@ }; name = "debug"; }; - FFF7ba8102f07f87ba8102f0 /* checked */ = { + FFF7e38258f07ffde38258f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7003,7 +7003,7 @@ }; name = "checked"; }; - FFF7ba8109e07f87ba8109e0 /* profile */ = { + FFF7e3825fe07ffde3825fe0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7033,7 +7033,7 @@ }; name = "profile"; }; - FFF7ba8110d07f87ba8110d0 /* release */ = { + FFF7e38266d07ffde38266d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7063,7 +7063,7 @@ }; name = "release"; }; - FFF7ba8162007f87ba816200 /* debug */ = { + FFF7e21864007ffde2186400 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7093,7 +7093,7 @@ }; name = "debug"; }; - FFF7ba8168f07f87ba8168f0 /* checked */ = { + FFF7e2186af07ffde2186af0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7123,7 +7123,7 @@ }; name = "checked"; }; - FFF7ba816fe07f87ba816fe0 /* profile */ = { + FFF7e21871e07ffde21871e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7153,7 +7153,7 @@ }; name = "profile"; }; - FFF7ba8176d07f87ba8176d0 /* release */ = { + FFF7e21878d07ffde21878d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7183,7 +7183,7 @@ }; name = "release"; }; - FFF7b8807c007f87b8807c00 /* debug */ = { + FFF7e1823e007ffde1823e00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7213,7 +7213,7 @@ }; name = "debug"; }; - FFF7b88082f07f87b88082f0 /* checked */ = { + FFF7e18244f07ffde18244f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7243,7 +7243,7 @@ }; name = "checked"; }; - FFF7b88089e07f87b88089e0 /* profile */ = { + FFF7e1824be07ffde1824be0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7273,7 +7273,7 @@ }; name = "profile"; }; - FFF7b88090d07f87b88090d0 /* release */ = { + FFF7e18252d07ffde18252d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7303,7 +7303,7 @@ }; name = "release"; }; - FFF7bc80f4007f87bc80f400 /* debug */ = { + FFF7e30562007ffde3056200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7333,7 +7333,7 @@ }; name = "debug"; }; - FFF7bc80faf07f87bc80faf0 /* release */ = { + FFF7e30568f07ffde30568f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7363,7 +7363,7 @@ }; name = "release"; }; - FFF7bc8101e07f87bc8101e0 /* checked */ = { + FFF7e3056fe07ffde3056fe0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7393,7 +7393,7 @@ }; name = "checked"; }; - FFF7bc8108d07f87bc8108d0 /* profile */ = { + FFF7e30576d07ffde30576d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7423,7 +7423,7 @@ }; name = "profile"; }; - FFF7bc8110007f87bc811000 /* debug */ = { + FFF7e218c6007ffde218c600 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7453,7 +7453,7 @@ }; name = "debug"; }; - FFF7bc8116f07f87bc8116f0 /* release */ = { + FFF7e218ccf07ffde218ccf0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7483,7 +7483,7 @@ }; name = "release"; }; - FFF7bc811de07f87bc811de0 /* checked */ = { + FFF7e218d3e07ffde218d3e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7513,7 +7513,7 @@ }; name = "checked"; }; - FFF7bc8124d07f87bc8124d0 /* profile */ = { + FFF7e218dad07ffde218dad0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7543,25 +7543,25 @@ }; name = "profile"; }; - FFF3bb81ae007f87bb81ae00 /* release */ = { + FFF3e382b6007ffde382b600 /* release */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "release"; }; - FFF3bb81b4f07f87bb81b4f0 /* debug */ = { + FFF3e382bcf07ffde382bcf0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "debug"; }; - FFF3bb81bbe07f87bb81bbe0 /* checked */ = { + FFF3e382c3e07ffde382c3e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "checked"; }; - FFF3bb81c2d07f87bb81c2d0 /* profile */ = { + FFF3e382cad07ffde382cad0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { }; @@ -7570,34 +7570,34 @@ /* End XCBuildConfiguration section */ /* Begin PBXProject section */ - FFF9b980f9b07f87b980f9b0 /* Project object */ = { + FFF9e170df007ffde170df00 /* Project object */ = { isa = PBXProject; - buildConfigurationList = FFF6b980f9b07f87b980f9b0 /* Build configuration list for PBXProject PhysX */; + buildConfigurationList = FFF6e170df007ffde170df00 /* Build configuration list for PBXProject PhysX */; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; - mainGroup = FFFBb980fa187f87b980fa18 /* PhysX */; + mainGroup = FFFBe170df687ffde170df68 /* PhysX */; targets = ( - FFFAb9b18ce07f87b9b18ce0, - FFFAbd2c56a07f87bd2c56a0, - FFFAbd07bfb07f87bd07bfb0, - FFFAb9ac2fb07f87b9ac2fb0, - FFFAb9b326907f87b9b32690, - FFFAb9b2f6c07f87b9b2f6c0, - FFFAbd3609d07f87bd3609d0, - FFFAb85164f07f87b85164f0, - FFFAb8500ad07f87b8500ad0, - FFFAb9b082f07f87b9b082f0, - FFFAb86f79707f87b86f7970, - FFFAbd2378b07f87bd2378b0, - FFFAbd00c5a07f87bd00c5a0, - FFFAbd0168307f87bd016830, - FFFAb85369107f87b8536910, - FFFAb9b1cd207f87b9b1cd20, - FFFAb85c61b07f87b85c61b0, + FFFAe29464b07ffde29464b0, + FFFAe294ef707ffde294ef70, + FFFAe29504707ffde2950470, + FFFAe29617f07ffde29617f0, + FFFAe450b7207ffde450b720, + FFFAe450fbf07ffde450fbf0, + FFFAe2d74eb07ffde2d74eb0, + FFFAe2c17a107ffde2c17a10, + FFFAe2c0b7d07ffde2c0b7d0, + FFFAe29691807ffde2969180, + FFFAe2f1a6b07ffde2f1a6b0, + FFFAe2d334507ffde2d33450, + FFFAe2d544f07ffde2d544f0, + FFFAe292cb407ffde292cb40, + FFFAe1484d707ffde1484d70, + FFFAe2f4cec07ffde2f4cec0, + FFFAe2942d107ffde2942d10, ); }; /* End PBXProject section */ }; - rootObject = FFF9b980f9b07f87b980f9b0 /* Project object */; + rootObject = FFF9e170df007ffde170df00 /* Project object */; } diff --git a/PhysX_3.4/Source/compiler/xcode_osx32/PhysX.xcodeproj/project.pbxproj b/PhysX_3.4/Source/compiler/xcode_osx32/PhysX.xcodeproj/project.pbxproj index 35111783..aef8e52a 100644 --- a/PhysX_3.4/Source/compiler/xcode_osx32/PhysX.xcodeproj/project.pbxproj +++ b/PhysX_3.4/Source/compiler/xcode_osx32/PhysX.xcodeproj/project.pbxproj @@ -7,223 +7,223 @@ objects = { /* Begin PBXBuildFile section of PhysX */ - FFFFc34349107fb7c3434910 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDc4e529207fb7c4e52920 /* SceneQuery */; }; - FFFFc34349707fb7c3434970 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDc4e56c807fb7c4e56c80 /* SimulationController */; }; - FFFFc3817a387fb7c3817a38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817a387fb7c3817a38 /* NpActor.cpp */; }; - FFFFc3817aa07fb7c3817aa0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817aa07fb7c3817aa0 /* NpAggregate.cpp */; }; - FFFFc3817b087fb7c3817b08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817b087fb7c3817b08 /* NpArticulation.cpp */; }; - FFFFc3817b707fb7c3817b70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817b707fb7c3817b70 /* NpArticulationJoint.cpp */; }; - FFFFc3817bd87fb7c3817bd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817bd87fb7c3817bd8 /* NpArticulationLink.cpp */; }; - FFFFc3817c407fb7c3817c40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817c407fb7c3817c40 /* NpBatchQuery.cpp */; }; - FFFFc3817ca87fb7c3817ca8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817ca87fb7c3817ca8 /* NpConstraint.cpp */; }; - FFFFc3817d107fb7c3817d10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817d107fb7c3817d10 /* NpFactory.cpp */; }; - FFFFc3817d787fb7c3817d78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817d787fb7c3817d78 /* NpMaterial.cpp */; }; - FFFFc3817de07fb7c3817de0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817de07fb7c3817de0 /* NpMetaData.cpp */; }; - FFFFc3817e487fb7c3817e48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817e487fb7c3817e48 /* NpPhysics.cpp */; }; - FFFFc3817eb07fb7c3817eb0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817eb07fb7c3817eb0 /* NpPvdSceneQueryCollector.cpp */; }; - FFFFc3817f187fb7c3817f18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817f187fb7c3817f18 /* NpReadCheck.cpp */; }; - FFFFc3817f807fb7c3817f80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817f807fb7c3817f80 /* NpRigidDynamic.cpp */; }; - FFFFc3817fe87fb7c3817fe8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3817fe87fb7c3817fe8 /* NpRigidStatic.cpp */; }; - FFFFc38180507fb7c3818050 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38180507fb7c3818050 /* NpScene.cpp */; }; - FFFFc38180b87fb7c38180b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38180b87fb7c38180b8 /* NpSceneQueries.cpp */; }; - FFFFc38181207fb7c3818120 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38181207fb7c3818120 /* NpSerializerAdapter.cpp */; }; - FFFFc38181887fb7c3818188 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38181887fb7c3818188 /* NpShape.cpp */; }; - FFFFc38181f07fb7c38181f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38181f07fb7c38181f0 /* NpShapeManager.cpp */; }; - FFFFc38182587fb7c3818258 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38182587fb7c3818258 /* NpSpatialIndex.cpp */; }; - FFFFc38182c07fb7c38182c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38182c07fb7c38182c0 /* NpVolumeCache.cpp */; }; - FFFFc38183287fb7c3818328 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38183287fb7c3818328 /* NpWriteCheck.cpp */; }; - FFFFc38183907fb7c3818390 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38183907fb7c3818390 /* PvdMetaDataPvdBinding.cpp */; }; - FFFFc38183f87fb7c38183f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38183f87fb7c38183f8 /* PvdPhysicsClient.cpp */; }; - FFFFc38186007fb7c3818600 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38186007fb7c3818600 /* particles/NpParticleFluid.cpp */; }; - FFFFc38186687fb7c3818668 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38186687fb7c3818668 /* particles/NpParticleSystem.cpp */; }; - FFFFc3818e207fb7c3818e20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3818e207fb7c3818e20 /* buffering/ScbActor.cpp */; }; - FFFFc3818e887fb7c3818e88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3818e887fb7c3818e88 /* buffering/ScbAggregate.cpp */; }; - FFFFc3818ef07fb7c3818ef0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3818ef07fb7c3818ef0 /* buffering/ScbBase.cpp */; }; - FFFFc3818f587fb7c3818f58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3818f587fb7c3818f58 /* buffering/ScbCloth.cpp */; }; - FFFFc3818fc07fb7c3818fc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc3818fc07fb7c3818fc0 /* buffering/ScbMetaData.cpp */; }; - FFFFc38190287fb7c3819028 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38190287fb7c3819028 /* buffering/ScbParticleSystem.cpp */; }; - FFFFc38190907fb7c3819090 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38190907fb7c3819090 /* buffering/ScbScene.cpp */; }; - FFFFc38190f87fb7c38190f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38190f87fb7c38190f8 /* buffering/ScbScenePvdClient.cpp */; }; - FFFFc38191607fb7c3819160 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38191607fb7c3819160 /* buffering/ScbShape.cpp */; }; - FFFFc38193007fb7c3819300 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38193007fb7c3819300 /* cloth/NpCloth.cpp */; }; - FFFFc38193687fb7c3819368 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38193687fb7c3819368 /* cloth/NpClothFabric.cpp */; }; - FFFFc38193d07fb7c38193d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38193d07fb7c38193d0 /* cloth/NpClothParticleData.cpp */; }; - FFFFc38194387fb7c3819438 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc38194387fb7c3819438 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; - FFFFc380f3a87fb7c380f3a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDc380f3a87fb7c380f3a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; - FFFFc380f4107fb7c380f410 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDc380f4107fb7c380f410 /* core/src/PxMetaDataObjects.cpp */; }; + FFFFfc0d6bb07fbcfc0d6bb0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDfc0985207fbcfc098520 /* SceneQuery */; }; + FFFFfc0e5a707fbcfc0e5a70 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDfc08d4e07fbcfc08d4e0 /* SimulationController */; }; + FFFFfc8326387fbcfc832638 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8326387fbcfc832638 /* NpActor.cpp */; }; + FFFFfc8326a07fbcfc8326a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8326a07fbcfc8326a0 /* NpAggregate.cpp */; }; + FFFFfc8327087fbcfc832708 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8327087fbcfc832708 /* NpArticulation.cpp */; }; + FFFFfc8327707fbcfc832770 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8327707fbcfc832770 /* NpArticulationJoint.cpp */; }; + FFFFfc8327d87fbcfc8327d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8327d87fbcfc8327d8 /* NpArticulationLink.cpp */; }; + FFFFfc8328407fbcfc832840 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8328407fbcfc832840 /* NpBatchQuery.cpp */; }; + FFFFfc8328a87fbcfc8328a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8328a87fbcfc8328a8 /* NpConstraint.cpp */; }; + FFFFfc8329107fbcfc832910 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8329107fbcfc832910 /* NpFactory.cpp */; }; + FFFFfc8329787fbcfc832978 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8329787fbcfc832978 /* NpMaterial.cpp */; }; + FFFFfc8329e07fbcfc8329e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8329e07fbcfc8329e0 /* NpMetaData.cpp */; }; + FFFFfc832a487fbcfc832a48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832a487fbcfc832a48 /* NpPhysics.cpp */; }; + FFFFfc832ab07fbcfc832ab0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832ab07fbcfc832ab0 /* NpPvdSceneQueryCollector.cpp */; }; + FFFFfc832b187fbcfc832b18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832b187fbcfc832b18 /* NpReadCheck.cpp */; }; + FFFFfc832b807fbcfc832b80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832b807fbcfc832b80 /* NpRigidDynamic.cpp */; }; + FFFFfc832be87fbcfc832be8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832be87fbcfc832be8 /* NpRigidStatic.cpp */; }; + FFFFfc832c507fbcfc832c50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832c507fbcfc832c50 /* NpScene.cpp */; }; + FFFFfc832cb87fbcfc832cb8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832cb87fbcfc832cb8 /* NpSceneQueries.cpp */; }; + FFFFfc832d207fbcfc832d20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832d207fbcfc832d20 /* NpSerializerAdapter.cpp */; }; + FFFFfc832d887fbcfc832d88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832d887fbcfc832d88 /* NpShape.cpp */; }; + FFFFfc832df07fbcfc832df0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832df07fbcfc832df0 /* NpShapeManager.cpp */; }; + FFFFfc832e587fbcfc832e58 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832e587fbcfc832e58 /* NpSpatialIndex.cpp */; }; + FFFFfc832ec07fbcfc832ec0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832ec07fbcfc832ec0 /* NpVolumeCache.cpp */; }; + FFFFfc832f287fbcfc832f28 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832f287fbcfc832f28 /* NpWriteCheck.cpp */; }; + FFFFfc832f907fbcfc832f90 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832f907fbcfc832f90 /* PvdMetaDataPvdBinding.cpp */; }; + FFFFfc832ff87fbcfc832ff8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832ff87fbcfc832ff8 /* PvdPhysicsClient.cpp */; }; + FFFFfc8332007fbcfc833200 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8332007fbcfc833200 /* particles/NpParticleFluid.cpp */; }; + FFFFfc8332687fbcfc833268 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8332687fbcfc833268 /* particles/NpParticleSystem.cpp */; }; + FFFFfc833a207fbcfc833a20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833a207fbcfc833a20 /* buffering/ScbActor.cpp */; }; + FFFFfc833a887fbcfc833a88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833a887fbcfc833a88 /* buffering/ScbAggregate.cpp */; }; + FFFFfc833af07fbcfc833af0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833af07fbcfc833af0 /* buffering/ScbBase.cpp */; }; + FFFFfc833b587fbcfc833b58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833b587fbcfc833b58 /* buffering/ScbCloth.cpp */; }; + FFFFfc833bc07fbcfc833bc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833bc07fbcfc833bc0 /* buffering/ScbMetaData.cpp */; }; + FFFFfc833c287fbcfc833c28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833c287fbcfc833c28 /* buffering/ScbParticleSystem.cpp */; }; + FFFFfc833c907fbcfc833c90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833c907fbcfc833c90 /* buffering/ScbScene.cpp */; }; + FFFFfc833cf87fbcfc833cf8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833cf87fbcfc833cf8 /* buffering/ScbScenePvdClient.cpp */; }; + FFFFfc833d607fbcfc833d60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833d607fbcfc833d60 /* buffering/ScbShape.cpp */; }; + FFFFfc833f007fbcfc833f00 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833f007fbcfc833f00 /* cloth/NpCloth.cpp */; }; + FFFFfc833f687fbcfc833f68 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833f687fbcfc833f68 /* cloth/NpClothFabric.cpp */; }; + FFFFfc833fd07fbcfc833fd0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833fd07fbcfc833fd0 /* cloth/NpClothParticleData.cpp */; }; + FFFFfc8340387fbcfc834038 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8340387fbcfc834038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; + FFFFfc830ba87fbcfc830ba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDfc830ba87fbcfc830ba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; + FFFFfc830c107fbcfc830c10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDfc830c107fbcfc830c10 /* core/src/PxMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc4e60af07fb7c4e60af0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc3816c007fb7c3816c00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3816c687fb7c3816c68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3816cd07fb7c3816cd0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3816d387fb7c3816d38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3816da07fb7c3816da0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3816e087fb7c3816e08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3816e707fb7c3816e70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3816ed87fb7c3816ed8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3816f407fb7c3816f40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3816fa87fb7c3816fa8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38170107fb7c3817010 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38170787fb7c3817078 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38170e07fb7c38170e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38171487fb7c3817148 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38171b07fb7c38171b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38172187fb7c3817218 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38172807fb7c3817280 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38172e87fb7c38172e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38173507fb7c3817350 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38173b87fb7c38173b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38174207fb7c3817420 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38174887fb7c3817488 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38174f07fb7c38174f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38175587fb7c3817558 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38175c07fb7c38175c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38176287fb7c3817628 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38176907fb7c3817690 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38176f87fb7c38176f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38177607fb7c3817760 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38177c87fb7c38177c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38178307fb7c3817830 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38178987fb7c3817898 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38179007fb7c3817900 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38179687fb7c3817968 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38179d07fb7c38179d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3817a387fb7c3817a38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817aa07fb7c3817aa0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817b087fb7c3817b08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817b707fb7c3817b70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817bd87fb7c3817bd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817c407fb7c3817c40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817ca87fb7c3817ca8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817d107fb7c3817d10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817d787fb7c3817d78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817de07fb7c3817de0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817e487fb7c3817e48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817eb07fb7c3817eb0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817f187fb7c3817f18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817f807fb7c3817f80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3817fe87fb7c3817fe8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38180507fb7c3818050 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38180b87fb7c38180b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38181207fb7c3818120 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38181887fb7c3818188 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38181f07fb7c38181f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38182587fb7c3818258 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38182c07fb7c38182c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38183287fb7c3818328 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38183907fb7c3818390 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38183f87fb7c38183f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38184607fb7c3818460 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38184c87fb7c38184c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38185307fb7c3818530 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38185987fb7c3818598 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38186007fb7c3818600 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38186687fb7c3818668 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38186d07fb7c38186d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38187387fb7c3818738 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38187a07fb7c38187a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38188087fb7c3818808 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38188707fb7c3818870 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38188d87fb7c38188d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38189407fb7c3818940 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38189a87fb7c38189a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3818a107fb7c3818a10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3818a787fb7c3818a78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3818ae07fb7c3818ae0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3818b487fb7c3818b48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3818bb07fb7c3818bb0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3818c187fb7c3818c18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3818c807fb7c3818c80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3818ce87fb7c3818ce8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3818d507fb7c3818d50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3818db87fb7c3818db8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3818e207fb7c3818e20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3818e887fb7c3818e88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3818ef07fb7c3818ef0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3818f587fb7c3818f58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3818fc07fb7c3818fc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38190287fb7c3819028 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38190907fb7c3819090 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38190f87fb7c38190f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38191607fb7c3819160 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38191c87fb7c38191c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38192307fb7c3819230 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38192987fb7c3819298 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38193007fb7c3819300 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38193687fb7c3819368 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38193d07fb7c38193d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38194387fb7c3819438 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38196007fb7c3819600 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38196687fb7c3819668 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38196d07fb7c38196d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38197387fb7c3819738 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38197a07fb7c38197a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38198087fb7c3819808 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38198707fb7c3819870 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38198d87fb7c38198d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38199407fb7c3819940 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38199a87fb7c38199a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819a107fb7c3819a10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819a787fb7c3819a78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819ae07fb7c3819ae0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819b487fb7c3819b48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819bb07fb7c3819bb0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819c187fb7c3819c18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819c807fb7c3819c80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819ce87fb7c3819ce8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819d507fb7c3819d50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819db87fb7c3819db8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819e207fb7c3819e20 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819e887fb7c3819e88 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819ef07fb7c3819ef0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819f587fb7c3819f58 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3819fc07fb7c3819fc0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a0287fb7c381a028 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a0907fb7c381a090 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a0f87fb7c381a0f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a1607fb7c381a160 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a1c87fb7c381a1c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a2307fb7c381a230 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a2987fb7c381a298 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a3007fb7c381a300 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a3687fb7c381a368 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a3d07fb7c381a3d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a4387fb7c381a438 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a4a07fb7c381a4a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a5087fb7c381a508 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a5707fb7c381a570 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a5d87fb7c381a5d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a6407fb7c381a640 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a6a87fb7c381a6a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a7107fb7c381a710 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a7787fb7c381a778 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a7e07fb7c381a7e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a8487fb7c381a848 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a8b07fb7c381a8b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a9187fb7c381a918 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a9807fb7c381a980 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381a9e87fb7c381a9e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381aa507fb7c381aa50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381aab87fb7c381aab8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381ab207fb7c381ab20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc381ab887fb7c381ab88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc380f0007fb7c380f000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDc380f0687fb7c380f068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDc380f0d07fb7c380f0d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc380f1387fb7c380f138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDc380f1a07fb7c380f1a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc380f2087fb7c380f208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFDc380f2707fb7c380f270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFDc380f2d87fb7c380f2d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc380f3407fb7c380f340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc380f3a87fb7c380f3a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc380f4107fb7c380f410 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc0690807fbcfc069080 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfc8318007fbcfc831800 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8318687fbcfc831868 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8318d07fbcfc8318d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8319387fbcfc831938 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8319a07fbcfc8319a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831a087fbcfc831a08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831a707fbcfc831a70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831ad87fbcfc831ad8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831b407fbcfc831b40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831ba87fbcfc831ba8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831c107fbcfc831c10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831c787fbcfc831c78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831ce07fbcfc831ce0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831d487fbcfc831d48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831db07fbcfc831db0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831e187fbcfc831e18 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831e807fbcfc831e80 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831ee87fbcfc831ee8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831f507fbcfc831f50 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc831fb87fbcfc831fb8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8320207fbcfc832020 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8320887fbcfc832088 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8320f07fbcfc8320f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8321587fbcfc832158 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8321c07fbcfc8321c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8322287fbcfc832228 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8322907fbcfc832290 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8322f87fbcfc8322f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8323607fbcfc832360 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8323c87fbcfc8323c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8324307fbcfc832430 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8324987fbcfc832498 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8325007fbcfc832500 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8325687fbcfc832568 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8325d07fbcfc8325d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8326387fbcfc832638 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8326a07fbcfc8326a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8327087fbcfc832708 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8327707fbcfc832770 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8327d87fbcfc8327d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8328407fbcfc832840 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8328a87fbcfc8328a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8329107fbcfc832910 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8329787fbcfc832978 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8329e07fbcfc8329e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832a487fbcfc832a48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832ab07fbcfc832ab0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832b187fbcfc832b18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832b807fbcfc832b80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832be87fbcfc832be8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832c507fbcfc832c50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832cb87fbcfc832cb8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832d207fbcfc832d20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832d887fbcfc832d88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832df07fbcfc832df0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832e587fbcfc832e58 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832ec07fbcfc832ec0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832f287fbcfc832f28 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832f907fbcfc832f90 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc832ff87fbcfc832ff8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8330607fbcfc833060 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8330c87fbcfc8330c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8331307fbcfc833130 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8331987fbcfc833198 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8332007fbcfc833200 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8332687fbcfc833268 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8332d07fbcfc8332d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8333387fbcfc833338 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8333a07fbcfc8333a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8334087fbcfc833408 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8334707fbcfc833470 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8334d87fbcfc8334d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8335407fbcfc833540 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8335a87fbcfc8335a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8336107fbcfc833610 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8336787fbcfc833678 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8336e07fbcfc8336e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8337487fbcfc833748 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8337b07fbcfc8337b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8338187fbcfc833818 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8338807fbcfc833880 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8338e87fbcfc8338e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8339507fbcfc833950 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8339b87fbcfc8339b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc833a207fbcfc833a20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc833a887fbcfc833a88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc833af07fbcfc833af0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc833b587fbcfc833b58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc833bc07fbcfc833bc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc833c287fbcfc833c28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc833c907fbcfc833c90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc833cf87fbcfc833cf8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc833d607fbcfc833d60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc833dc87fbcfc833dc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc833e307fbcfc833e30 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc833e987fbcfc833e98 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc833f007fbcfc833f00 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc833f687fbcfc833f68 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc833fd07fbcfc833fd0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8340387fbcfc834038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f2007fbcfc82f200 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f2687fbcfc82f268 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f2d07fbcfc82f2d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f3387fbcfc82f338 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f3a07fbcfc82f3a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f4087fbcfc82f408 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f4707fbcfc82f470 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f4d87fbcfc82f4d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f5407fbcfc82f540 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f5a87fbcfc82f5a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f6107fbcfc82f610 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f6787fbcfc82f678 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f6e07fbcfc82f6e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f7487fbcfc82f748 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f7b07fbcfc82f7b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f8187fbcfc82f818 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f8807fbcfc82f880 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f8e87fbcfc82f8e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f9507fbcfc82f950 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82f9b87fbcfc82f9b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82fa207fbcfc82fa20 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82fa887fbcfc82fa88 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82faf07fbcfc82faf0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82fb587fbcfc82fb58 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82fbc07fbcfc82fbc0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82fc287fbcfc82fc28 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82fc907fbcfc82fc90 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82fcf87fbcfc82fcf8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82fd607fbcfc82fd60 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82fdc87fbcfc82fdc8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82fe307fbcfc82fe30 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82fe987fbcfc82fe98 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82ff007fbcfc82ff00 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82ff687fbcfc82ff68 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc82ffd07fbcfc82ffd0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8300387fbcfc830038 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8300a07fbcfc8300a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8301087fbcfc830108 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8301707fbcfc830170 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8301d87fbcfc8301d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8302407fbcfc830240 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8302a87fbcfc8302a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8303107fbcfc830310 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8303787fbcfc830378 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8303e07fbcfc8303e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8304487fbcfc830448 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8304b07fbcfc8304b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8305187fbcfc830518 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8305807fbcfc830580 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8305e87fbcfc8305e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8306507fbcfc830650 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8306b87fbcfc8306b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8307207fbcfc830720 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8307887fbcfc830788 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8308007fbcfc830800 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8308687fbcfc830868 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8308d07fbcfc8308d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8309387fbcfc830938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8309a07fbcfc8309a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc830a087fbcfc830a08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc830a707fbcfc830a70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc830ad87fbcfc830ad8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc830b407fbcfc830b40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc830ba87fbcfc830ba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc830c107fbcfc830c10 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c4e60af07fb7c4e60af0 /* Resources */ = { + FFF2fc0690807fbcfc069080 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -233,7 +233,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc4e60af07fb7c4e60af0 /* Frameworks */ = { + FFFCfc0690807fbcfc069080 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -243,52 +243,52 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c4e60af07fb7c4e60af0 /* Sources */ = { + FFF8fc0690807fbcfc069080 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc3817a387fb7c3817a38, - FFFFc3817aa07fb7c3817aa0, - FFFFc3817b087fb7c3817b08, - FFFFc3817b707fb7c3817b70, - FFFFc3817bd87fb7c3817bd8, - FFFFc3817c407fb7c3817c40, - FFFFc3817ca87fb7c3817ca8, - FFFFc3817d107fb7c3817d10, - FFFFc3817d787fb7c3817d78, - FFFFc3817de07fb7c3817de0, - FFFFc3817e487fb7c3817e48, - FFFFc3817eb07fb7c3817eb0, - FFFFc3817f187fb7c3817f18, - FFFFc3817f807fb7c3817f80, - FFFFc3817fe87fb7c3817fe8, - FFFFc38180507fb7c3818050, - FFFFc38180b87fb7c38180b8, - FFFFc38181207fb7c3818120, - FFFFc38181887fb7c3818188, - FFFFc38181f07fb7c38181f0, - FFFFc38182587fb7c3818258, - FFFFc38182c07fb7c38182c0, - FFFFc38183287fb7c3818328, - FFFFc38183907fb7c3818390, - FFFFc38183f87fb7c38183f8, - FFFFc38186007fb7c3818600, - FFFFc38186687fb7c3818668, - FFFFc3818e207fb7c3818e20, - FFFFc3818e887fb7c3818e88, - FFFFc3818ef07fb7c3818ef0, - FFFFc3818f587fb7c3818f58, - FFFFc3818fc07fb7c3818fc0, - FFFFc38190287fb7c3819028, - FFFFc38190907fb7c3819090, - FFFFc38190f87fb7c38190f8, - FFFFc38191607fb7c3819160, - FFFFc38193007fb7c3819300, - FFFFc38193687fb7c3819368, - FFFFc38193d07fb7c38193d0, - FFFFc38194387fb7c3819438, - FFFFc380f3a87fb7c380f3a8, - FFFFc380f4107fb7c380f410, + FFFFfc8326387fbcfc832638, + FFFFfc8326a07fbcfc8326a0, + FFFFfc8327087fbcfc832708, + FFFFfc8327707fbcfc832770, + FFFFfc8327d87fbcfc8327d8, + FFFFfc8328407fbcfc832840, + FFFFfc8328a87fbcfc8328a8, + FFFFfc8329107fbcfc832910, + FFFFfc8329787fbcfc832978, + FFFFfc8329e07fbcfc8329e0, + FFFFfc832a487fbcfc832a48, + FFFFfc832ab07fbcfc832ab0, + FFFFfc832b187fbcfc832b18, + FFFFfc832b807fbcfc832b80, + FFFFfc832be87fbcfc832be8, + FFFFfc832c507fbcfc832c50, + FFFFfc832cb87fbcfc832cb8, + FFFFfc832d207fbcfc832d20, + FFFFfc832d887fbcfc832d88, + FFFFfc832df07fbcfc832df0, + FFFFfc832e587fbcfc832e58, + FFFFfc832ec07fbcfc832ec0, + FFFFfc832f287fbcfc832f28, + FFFFfc832f907fbcfc832f90, + FFFFfc832ff87fbcfc832ff8, + FFFFfc8332007fbcfc833200, + FFFFfc8332687fbcfc833268, + FFFFfc833a207fbcfc833a20, + FFFFfc833a887fbcfc833a88, + FFFFfc833af07fbcfc833af0, + FFFFfc833b587fbcfc833b58, + FFFFfc833bc07fbcfc833bc0, + FFFFfc833c287fbcfc833c28, + FFFFfc833c907fbcfc833c90, + FFFFfc833cf87fbcfc833cf8, + FFFFfc833d607fbcfc833d60, + FFFFfc833f007fbcfc833f00, + FFFFfc833f687fbcfc833f68, + FFFFfc833fd07fbcfc833fd0, + FFFFfc8340387fbcfc834038, + FFFFfc830ba87fbcfc830ba8, + FFFFfc830c107fbcfc830c10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -297,112 +297,112 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4c34395207fb7c3439520 /* PBXTargetDependency */ = { + FFF4fc0721c07fbcfc0721c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc81162307fb7c8116230 /* LowLevel */; - targetProxy = FFF5c81162307fb7c8116230 /* PBXContainerItemProxy */; + target = FFFAfab277107fbcfab27710 /* LowLevel */; + targetProxy = FFF5fab277107fbcfab27710 /* PBXContainerItemProxy */; }; - FFF4c34395807fb7c3439580 /* PBXTargetDependency */ = { + FFF4fc0727407fbcfc072740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc811f6607fb7c811f660 /* LowLevelAABB */; - targetProxy = FFF5c811f6607fb7c811f660 /* PBXContainerItemProxy */; + target = FFFAfab514407fbcfab51440 /* LowLevelAABB */; + targetProxy = FFF5fab514407fbcfab51440 /* PBXContainerItemProxy */; }; - FFF4c34348507fb7c3434850 /* PBXTargetDependency */ = { + FFF4fc0716c07fbcfc0716c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc812c3507fb7c812c350 /* LowLevelCloth */; - targetProxy = FFF5c812c3507fb7c812c350 /* PBXContainerItemProxy */; + target = FFFAfab48c407fbcfab48c40 /* LowLevelCloth */; + targetProxy = FFF5fab48c407fbcfab48c40 /* PBXContainerItemProxy */; }; - FFF4c34100407fb7c3410040 /* PBXTargetDependency */ = { + FFF4fc0727a07fbcfc0727a0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc4a1ce107fb7c4a1ce10 /* LowLevelDynamics */; - targetProxy = FFF5c4a1ce107fb7c4a1ce10 /* PBXContainerItemProxy */; + target = FFFAfaef20807fbcfaef2080 /* LowLevelDynamics */; + targetProxy = FFF5faef20807fbcfaef2080 /* PBXContainerItemProxy */; }; - FFF4c34348b07fb7c34348b0 /* PBXTargetDependency */ = { + FFF4fc0d6b507fbcfc0d6b50 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc80807f07fb7c80807f0 /* LowLevelParticles */; - targetProxy = FFF5c80807f07fb7c80807f0 /* PBXContainerItemProxy */; + target = FFFAfc003cb07fbcfc003cb0 /* LowLevelParticles */; + targetProxy = FFF5fc003cb07fbcfc003cb0 /* PBXContainerItemProxy */; }; - FFF4c3435fb07fb7c3435fb0 /* PBXTargetDependency */ = { + FFF4fc0750707fbcfc075070 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc4b0e1607fb7c4b0e160 /* PhysXCommon */; - targetProxy = FFF5c4b0e1607fb7c4b0e160 /* PBXContainerItemProxy */; + target = FFFAfa8913407fbcfa891340 /* PhysXCommon */; + targetProxy = FFF5fa8913407fbcfa891340 /* PBXContainerItemProxy */; }; - FFF4c4e60f207fb7c4e60f20 /* PBXTargetDependency */ = { + FFF4fc0693707fbcfc069370 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc37144b07fb7c37144b0 /* PxFoundation */; - targetProxy = FFF5c37144b07fb7c37144b0 /* PBXContainerItemProxy */; + target = FFFAfa87f5207fbcfa87f520 /* PxFoundation */; + targetProxy = FFF5fa87f5207fbcfa87f520 /* PBXContainerItemProxy */; }; - FFF4c4e57cd07fb7c4e57cd0 /* PBXTargetDependency */ = { + FFF4fc0690207fbcfc069020 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc4a2a3107fb7c4a2a310 /* PxPvdSDK */; - targetProxy = FFF5c4a2a3107fb7c4a2a310 /* PBXContainerItemProxy */; + target = FFFAfab095c07fbcfab095c0 /* PxPvdSDK */; + targetProxy = FFF5fab095c07fbcfab095c0 /* PBXContainerItemProxy */; }; - FFF4c34349a07fb7c34349a0 /* PBXTargetDependency */ = { + FFF4fc0e5aa07fbcfc0e5aa0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc3662bc07fb7c3662bc0 /* PxTask */; - targetProxy = FFF5c3662bc07fb7c3662bc0 /* PBXContainerItemProxy */; + target = FFFAfc2149407fbcfc214940 /* PxTask */; + targetProxy = FFF5fc2149407fbcfc214940 /* PBXContainerItemProxy */; }; - FFF4c34349107fb7c3434910 /* PBXTargetDependency */ = { + FFF4fc0d6bb07fbcfc0d6bb0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc4e529207fb7c4e52920 /* SceneQuery */; - targetProxy = FFF5c4e529207fb7c4e52920 /* PBXContainerItemProxy */; + target = FFFAfc0985207fbcfc098520 /* SceneQuery */; + targetProxy = FFF5fc0985207fbcfc098520 /* PBXContainerItemProxy */; }; - FFF4c34349707fb7c3434970 /* PBXTargetDependency */ = { + FFF4fc0e5a707fbcfc0e5a70 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc4e56c807fb7c4e56c80 /* SimulationController */; - targetProxy = FFF5c4e56c807fb7c4e56c80 /* PBXContainerItemProxy */; + target = FFFAfc08d4e07fbcfc08d4e0 /* SimulationController */; + targetProxy = FFF5fc08d4e07fbcfc08d4e0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCharacterKinematic */ - FFFFc36803507fb7c3680350 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDc80a0d007fb7c80a0d00 /* PhysXExtensions */; }; - FFFFc6015c787fb7c6015c78 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6015c787fb7c6015c78 /* CctBoxController.cpp */; }; - FFFFc6015ce07fb7c6015ce0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6015ce07fb7c6015ce0 /* CctCapsuleController.cpp */; }; - FFFFc6015d487fb7c6015d48 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6015d487fb7c6015d48 /* CctCharacterController.cpp */; }; - FFFFc6015db07fb7c6015db0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6015db07fb7c6015db0 /* CctCharacterControllerCallbacks.cpp */; }; - FFFFc6015e187fb7c6015e18 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6015e187fb7c6015e18 /* CctCharacterControllerManager.cpp */; }; - FFFFc6015e807fb7c6015e80 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6015e807fb7c6015e80 /* CctController.cpp */; }; - FFFFc6015ee87fb7c6015ee8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6015ee87fb7c6015ee8 /* CctObstacleContext.cpp */; }; - FFFFc6015f507fb7c6015f50 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6015f507fb7c6015f50 /* CctSweptBox.cpp */; }; - FFFFc6015fb87fb7c6015fb8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6015fb87fb7c6015fb8 /* CctSweptCapsule.cpp */; }; - FFFFc60160207fb7c6016020 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc60160207fb7c6016020 /* CctSweptVolume.cpp */; }; + FFFFfc0e71107fbcfc0e7110 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDfc0c74907fbcfc0c7490 /* PhysXExtensions */; }; + FFFFfc8388787fbcfc838878 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8388787fbcfc838878 /* CctBoxController.cpp */; }; + FFFFfc8388e07fbcfc8388e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8388e07fbcfc8388e0 /* CctCapsuleController.cpp */; }; + FFFFfc8389487fbcfc838948 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8389487fbcfc838948 /* CctCharacterController.cpp */; }; + FFFFfc8389b07fbcfc8389b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8389b07fbcfc8389b0 /* CctCharacterControllerCallbacks.cpp */; }; + FFFFfc838a187fbcfc838a18 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc838a187fbcfc838a18 /* CctCharacterControllerManager.cpp */; }; + FFFFfc838a807fbcfc838a80 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc838a807fbcfc838a80 /* CctController.cpp */; }; + FFFFfc838ae87fbcfc838ae8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc838ae87fbcfc838ae8 /* CctObstacleContext.cpp */; }; + FFFFfc838b507fbcfc838b50 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc838b507fbcfc838b50 /* CctSweptBox.cpp */; }; + FFFFfc838bb87fbcfc838bb8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc838bb87fbcfc838bb8 /* CctSweptCapsule.cpp */; }; + FFFFfc838c207fbcfc838c20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc838c207fbcfc838c20 /* CctSweptVolume.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc342d6907fb7c342d690 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc3681f207fb7c3681f20 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3681f887fb7c3681f88 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3681ff07fb7c3681ff0 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc36820587fb7c3682058 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc36820c07fb7c36820c0 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; - FFFDc36821287fb7c3682128 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc36821907fb7c3682190 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; - FFFDc36821f87fb7c36821f8 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60158007fb7c6015800 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60158687fb7c6015868 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60158d07fb7c60158d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60159387fb7c6015938 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60159a07fb7c60159a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6015a087fb7c6015a08 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6015a707fb7c6015a70 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6015ad87fb7c6015ad8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6015b407fb7c6015b40 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6015ba87fb7c6015ba8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6015c107fb7c6015c10 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6015c787fb7c6015c78 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6015ce07fb7c6015ce0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6015d487fb7c6015d48 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6015db07fb7c6015db0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6015e187fb7c6015e18 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6015e807fb7c6015e80 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6015ee87fb7c6015ee8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6015f507fb7c6015f50 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6015fb87fb7c6015fb8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc60160207fb7c6016020 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc0717b07fbcfc0717b0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfc0760a07fbcfc0760a0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc0761087fbcfc076108 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc0761707fbcfc076170 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc0761d87fbcfc0761d8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc0762407fbcfc076240 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc0762a87fbcfc0762a8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc0763107fbcfc076310 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc0763787fbcfc076378 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8384007fbcfc838400 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8384687fbcfc838468 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8384d07fbcfc8384d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8385387fbcfc838538 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8385a07fbcfc8385a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8386087fbcfc838608 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8386707fbcfc838670 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8386d87fbcfc8386d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8387407fbcfc838740 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8387a87fbcfc8387a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8388107fbcfc838810 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8388787fbcfc838878 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8388e07fbcfc8388e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8389487fbcfc838948 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8389b07fbcfc8389b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc838a187fbcfc838a18 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc838a807fbcfc838a80 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc838ae87fbcfc838ae8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc838b507fbcfc838b50 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc838bb87fbcfc838bb8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc838c207fbcfc838c20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c342d6907fb7c342d690 /* Resources */ = { + FFF2fc0717b07fbcfc0717b0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -412,7 +412,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc342d6907fb7c342d690 /* Frameworks */ = { + FFFCfc0717b07fbcfc0717b0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -422,20 +422,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c342d6907fb7c342d690 /* Sources */ = { + FFF8fc0717b07fbcfc0717b0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc6015c787fb7c6015c78, - FFFFc6015ce07fb7c6015ce0, - FFFFc6015d487fb7c6015d48, - FFFFc6015db07fb7c6015db0, - FFFFc6015e187fb7c6015e18, - FFFFc6015e807fb7c6015e80, - FFFFc6015ee87fb7c6015ee8, - FFFFc6015f507fb7c6015f50, - FFFFc6015fb87fb7c6015fb8, - FFFFc60160207fb7c6016020, + FFFFfc8388787fbcfc838878, + FFFFfc8388e07fbcfc8388e0, + FFFFfc8389487fbcfc838948, + FFFFfc8389b07fbcfc8389b0, + FFFFfc838a187fbcfc838a18, + FFFFfc838a807fbcfc838a80, + FFFFfc838ae87fbcfc838ae8, + FFFFfc838b507fbcfc838b50, + FFFFfc838bb87fbcfc838bb8, + FFFFfc838c207fbcfc838c20, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -444,91 +444,91 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4c36806f07fb7c36806f0 /* PBXTargetDependency */ = { + FFF4fc0760107fbcfc076010 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc4b0e1607fb7c4b0e160 /* PhysXCommon */; - targetProxy = FFF5c4b0e1607fb7c4b0e160 /* PBXContainerItemProxy */; + target = FFFAfa8913407fbcfa891340 /* PhysXCommon */; + targetProxy = FFF5fa8913407fbcfa891340 /* PBXContainerItemProxy */; }; - FFF4c36803507fb7c3680350 /* PBXTargetDependency */ = { + FFF4fc0e71107fbcfc0e7110 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc80a0d007fb7c80a0d00 /* PhysXExtensions */; - targetProxy = FFF5c80a0d007fb7c80a0d00 /* PBXContainerItemProxy */; + target = FFFAfc0c74907fbcfc0c7490 /* PhysXExtensions */; + targetProxy = FFF5fc0c74907fbcfc0c7490 /* PBXContainerItemProxy */; }; - FFF4c36813407fb7c3681340 /* PBXTargetDependency */ = { + FFF4fc0733907fbcfc073390 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc37144b07fb7c37144b0 /* PxFoundation */; - targetProxy = FFF5c37144b07fb7c37144b0 /* PBXContainerItemProxy */; + target = FFFAfa87f5207fbcfa87f520 /* PxFoundation */; + targetProxy = FFF5fa87f5207fbcfa87f520 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXVehicle */ - FFFFc5051c087fb7c5051c08 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc5051c087fb7c5051c08 /* PxVehicleComponents.cpp */; }; - FFFFc5051c707fb7c5051c70 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc5051c707fb7c5051c70 /* PxVehicleDrive.cpp */; }; - FFFFc5051cd87fb7c5051cd8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc5051cd87fb7c5051cd8 /* PxVehicleDrive4W.cpp */; }; - FFFFc5051d407fb7c5051d40 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc5051d407fb7c5051d40 /* PxVehicleDriveNW.cpp */; }; - FFFFc5051da87fb7c5051da8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc5051da87fb7c5051da8 /* PxVehicleDriveTank.cpp */; }; - FFFFc5051e107fb7c5051e10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc5051e107fb7c5051e10 /* PxVehicleMetaData.cpp */; }; - FFFFc5051e787fb7c5051e78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc5051e787fb7c5051e78 /* PxVehicleNoDrive.cpp */; }; - FFFFc5051ee07fb7c5051ee0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc5051ee07fb7c5051ee0 /* PxVehicleSDK.cpp */; }; - FFFFc5051f487fb7c5051f48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc5051f487fb7c5051f48 /* PxVehicleSerialization.cpp */; }; - FFFFc5051fb07fb7c5051fb0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc5051fb07fb7c5051fb0 /* PxVehicleSuspWheelTire4.cpp */; }; - FFFFc50520187fb7c5052018 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc50520187fb7c5052018 /* PxVehicleTireFriction.cpp */; }; - FFFFc50520807fb7c5052080 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc50520807fb7c5052080 /* PxVehicleUpdate.cpp */; }; - FFFFc50520e87fb7c50520e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc50520e87fb7c50520e8 /* PxVehicleWheels.cpp */; }; - FFFFc50521507fb7c5052150 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc50521507fb7c5052150 /* VehicleUtilControl.cpp */; }; - FFFFc50521b87fb7c50521b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc50521b87fb7c50521b8 /* VehicleUtilSetup.cpp */; }; - FFFFc50522207fb7c5052220 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc50522207fb7c5052220 /* VehicleUtilTelemetry.cpp */; }; - FFFFc80a08287fb7c80a0828 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDc80a08287fb7c80a0828 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; - FFFFc80a08907fb7c80a0890 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDc80a08907fb7c80a0890 /* src/PxVehicleMetaDataObjects.cpp */; }; + FFFFfc83d6087fbcfc83d608 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d6087fbcfc83d608 /* PxVehicleComponents.cpp */; }; + FFFFfc83d6707fbcfc83d670 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d6707fbcfc83d670 /* PxVehicleDrive.cpp */; }; + FFFFfc83d6d87fbcfc83d6d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d6d87fbcfc83d6d8 /* PxVehicleDrive4W.cpp */; }; + FFFFfc83d7407fbcfc83d740 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d7407fbcfc83d740 /* PxVehicleDriveNW.cpp */; }; + FFFFfc83d7a87fbcfc83d7a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d7a87fbcfc83d7a8 /* PxVehicleDriveTank.cpp */; }; + FFFFfc83d8107fbcfc83d810 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d8107fbcfc83d810 /* PxVehicleMetaData.cpp */; }; + FFFFfc83d8787fbcfc83d878 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d8787fbcfc83d878 /* PxVehicleNoDrive.cpp */; }; + FFFFfc83d8e07fbcfc83d8e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d8e07fbcfc83d8e0 /* PxVehicleSDK.cpp */; }; + FFFFfc83d9487fbcfc83d948 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d9487fbcfc83d948 /* PxVehicleSerialization.cpp */; }; + FFFFfc83d9b07fbcfc83d9b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d9b07fbcfc83d9b0 /* PxVehicleSuspWheelTire4.cpp */; }; + FFFFfc83da187fbcfc83da18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83da187fbcfc83da18 /* PxVehicleTireFriction.cpp */; }; + FFFFfc83da807fbcfc83da80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83da807fbcfc83da80 /* PxVehicleUpdate.cpp */; }; + FFFFfc83dae87fbcfc83dae8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83dae87fbcfc83dae8 /* PxVehicleWheels.cpp */; }; + FFFFfc83db507fbcfc83db50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83db507fbcfc83db50 /* VehicleUtilControl.cpp */; }; + FFFFfc83dbb87fbcfc83dbb8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83dbb87fbcfc83dbb8 /* VehicleUtilSetup.cpp */; }; + FFFFfc83dc207fbcfc83dc20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83dc207fbcfc83dc20 /* VehicleUtilTelemetry.cpp */; }; + FFFFfc0c77c87fbcfc0c77c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDfc0c77c87fbcfc0c77c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; + FFFFfc0c78307fbcfc0c7830 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDfc0c78307fbcfc0c7830 /* src/PxVehicleMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc36831307fb7c3683130 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc5048c007fb7c5048c00 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5048c687fb7c5048c68 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5048cd07fb7c5048cd0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5048d387fb7c5048d38 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5048da07fb7c5048da0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5048e087fb7c5048e08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5048e707fb7c5048e70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5048ed87fb7c5048ed8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5048f407fb7c5048f40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5048fa87fb7c5048fa8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc50490107fb7c5049010 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDc50490787fb7c5049078 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc50490e07fb7c50490e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; - FFFDc50491487fb7c5049148 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc50491b07fb7c50491b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5051a007fb7c5051a00 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5051a687fb7c5051a68 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5051ad07fb7c5051ad0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5051b387fb7c5051b38 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5051ba07fb7c5051ba0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5051c087fb7c5051c08 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc5051c707fb7c5051c70 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc5051cd87fb7c5051cd8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc5051d407fb7c5051d40 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc5051da87fb7c5051da8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc5051e107fb7c5051e10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc5051e787fb7c5051e78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc5051ee07fb7c5051ee0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc5051f487fb7c5051f48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc5051fb07fb7c5051fb0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc50520187fb7c5052018 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc50520807fb7c5052080 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc50520e87fb7c50520e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc50521507fb7c5052150 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc50521b87fb7c50521b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc50522207fb7c5052220 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc80a06f07fb7c80a06f0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDc80a07587fb7c80a0758 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc80a07c07fb7c80a07c0 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc80a08287fb7c80a0828 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc80a08907fb7c80a0890 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc0771907fbcfc077190 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfc83b2007fbcfc83b200 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b2687fbcfc83b268 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b2d07fbcfc83b2d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b3387fbcfc83b338 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b3a07fbcfc83b3a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b4087fbcfc83b408 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b4707fbcfc83b470 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b4d87fbcfc83b4d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b5407fbcfc83b540 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b5a87fbcfc83b5a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b6107fbcfc83b610 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b6787fbcfc83b678 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b6e07fbcfc83b6e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b7487fbcfc83b748 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83b7b07fbcfc83b7b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d4007fbcfc83d400 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d4687fbcfc83d468 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d4d07fbcfc83d4d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d5387fbcfc83d538 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d5a07fbcfc83d5a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d6087fbcfc83d608 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d6707fbcfc83d670 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d6d87fbcfc83d6d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d7407fbcfc83d740 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d7a87fbcfc83d7a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d8107fbcfc83d810 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d8787fbcfc83d878 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d8e07fbcfc83d8e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d9487fbcfc83d948 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83d9b07fbcfc83d9b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83da187fbcfc83da18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83da807fbcfc83da80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83dae87fbcfc83dae8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83db507fbcfc83db50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83dbb87fbcfc83dbb8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83dc207fbcfc83dc20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc0c76907fbcfc0c7690 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc0c76f87fbcfc0c76f8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc0c77607fbcfc0c7760 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc0c77c87fbcfc0c77c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc0c78307fbcfc0c7830 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c36831307fb7c3683130 /* Resources */ = { + FFF2fc0771907fbcfc077190 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -538,7 +538,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc36831307fb7c3683130 /* Frameworks */ = { + FFFCfc0771907fbcfc077190 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -548,28 +548,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c36831307fb7c3683130 /* Sources */ = { + FFF8fc0771907fbcfc077190 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc5051c087fb7c5051c08, - FFFFc5051c707fb7c5051c70, - FFFFc5051cd87fb7c5051cd8, - FFFFc5051d407fb7c5051d40, - FFFFc5051da87fb7c5051da8, - FFFFc5051e107fb7c5051e10, - FFFFc5051e787fb7c5051e78, - FFFFc5051ee07fb7c5051ee0, - FFFFc5051f487fb7c5051f48, - FFFFc5051fb07fb7c5051fb0, - FFFFc50520187fb7c5052018, - FFFFc50520807fb7c5052080, - FFFFc50520e87fb7c50520e8, - FFFFc50521507fb7c5052150, - FFFFc50521b87fb7c50521b8, - FFFFc50522207fb7c5052220, - FFFFc80a08287fb7c80a0828, - FFFFc80a08907fb7c80a0890, + FFFFfc83d6087fbcfc83d608, + FFFFfc83d6707fbcfc83d670, + FFFFfc83d6d87fbcfc83d6d8, + FFFFfc83d7407fbcfc83d740, + FFFFfc83d7a87fbcfc83d7a8, + FFFFfc83d8107fbcfc83d810, + FFFFfc83d8787fbcfc83d878, + FFFFfc83d8e07fbcfc83d8e0, + FFFFfc83d9487fbcfc83d948, + FFFFfc83d9b07fbcfc83d9b0, + FFFFfc83da187fbcfc83da18, + FFFFfc83da807fbcfc83da80, + FFFFfc83dae87fbcfc83dae8, + FFFFfc83db507fbcfc83db50, + FFFFfc83dbb87fbcfc83dbb8, + FFFFfc83dc207fbcfc83dc20, + FFFFfc0c77c87fbcfc0c77c8, + FFFFfc0c78307fbcfc0c7830, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -581,220 +581,220 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXExtensions */ - FFFFc7019ae87fb7c7019ae8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019ae87fb7c7019ae8 /* ExtBroadPhase.cpp */; }; - FFFFc7019b507fb7c7019b50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019b507fb7c7019b50 /* ExtClothFabricCooker.cpp */; }; - FFFFc7019bb87fb7c7019bb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019bb87fb7c7019bb8 /* ExtClothGeodesicTetherCooker.cpp */; }; - FFFFc7019c207fb7c7019c20 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019c207fb7c7019c20 /* ExtClothMeshQuadifier.cpp */; }; - FFFFc7019c887fb7c7019c88 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019c887fb7c7019c88 /* ExtClothSimpleTetherCooker.cpp */; }; - FFFFc7019cf07fb7c7019cf0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019cf07fb7c7019cf0 /* ExtCollection.cpp */; }; - FFFFc7019d587fb7c7019d58 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019d587fb7c7019d58 /* ExtConvexMeshExt.cpp */; }; - FFFFc7019dc07fb7c7019dc0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019dc07fb7c7019dc0 /* ExtCpuWorkerThread.cpp */; }; - FFFFc7019e287fb7c7019e28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019e287fb7c7019e28 /* ExtD6Joint.cpp */; }; - FFFFc7019e907fb7c7019e90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019e907fb7c7019e90 /* ExtD6JointSolverPrep.cpp */; }; - FFFFc7019ef87fb7c7019ef8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019ef87fb7c7019ef8 /* ExtDefaultCpuDispatcher.cpp */; }; - FFFFc7019f607fb7c7019f60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019f607fb7c7019f60 /* ExtDefaultErrorCallback.cpp */; }; - FFFFc7019fc87fb7c7019fc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc7019fc87fb7c7019fc8 /* ExtDefaultSimulationFilterShader.cpp */; }; - FFFFc701a0307fb7c701a030 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a0307fb7c701a030 /* ExtDefaultStreams.cpp */; }; - FFFFc701a0987fb7c701a098 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a0987fb7c701a098 /* ExtDistanceJoint.cpp */; }; - FFFFc701a1007fb7c701a100 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a1007fb7c701a100 /* ExtDistanceJointSolverPrep.cpp */; }; - FFFFc701a1687fb7c701a168 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a1687fb7c701a168 /* ExtExtensions.cpp */; }; - FFFFc701a1d07fb7c701a1d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a1d07fb7c701a1d0 /* ExtFixedJoint.cpp */; }; - FFFFc701a2387fb7c701a238 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a2387fb7c701a238 /* ExtFixedJointSolverPrep.cpp */; }; - FFFFc701a2a07fb7c701a2a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a2a07fb7c701a2a0 /* ExtJoint.cpp */; }; - FFFFc701a3087fb7c701a308 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a3087fb7c701a308 /* ExtMetaData.cpp */; }; - FFFFc701a3707fb7c701a370 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a3707fb7c701a370 /* ExtParticleExt.cpp */; }; - FFFFc701a3d87fb7c701a3d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a3d87fb7c701a3d8 /* ExtPrismaticJoint.cpp */; }; - FFFFc701a4407fb7c701a440 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a4407fb7c701a440 /* ExtPrismaticJointSolverPrep.cpp */; }; - FFFFc701a4a87fb7c701a4a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a4a87fb7c701a4a8 /* ExtPvd.cpp */; }; - FFFFc701a5107fb7c701a510 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a5107fb7c701a510 /* ExtPxStringTable.cpp */; }; - FFFFc701a5787fb7c701a578 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a5787fb7c701a578 /* ExtRaycastCCD.cpp */; }; - FFFFc701a5e07fb7c701a5e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a5e07fb7c701a5e0 /* ExtRevoluteJoint.cpp */; }; - FFFFc701a6487fb7c701a648 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a6487fb7c701a648 /* ExtRevoluteJointSolverPrep.cpp */; }; - FFFFc701a6b07fb7c701a6b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a6b07fb7c701a6b0 /* ExtRigidBodyExt.cpp */; }; - FFFFc701a7187fb7c701a718 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a7187fb7c701a718 /* ExtSceneQueryExt.cpp */; }; - FFFFc701a7807fb7c701a780 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a7807fb7c701a780 /* ExtSimpleFactory.cpp */; }; - FFFFc701a7e87fb7c701a7e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a7e87fb7c701a7e8 /* ExtSmoothNormals.cpp */; }; - FFFFc701a8507fb7c701a850 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a8507fb7c701a850 /* ExtSphericalJoint.cpp */; }; - FFFFc701a8b87fb7c701a8b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a8b87fb7c701a8b8 /* ExtSphericalJointSolverPrep.cpp */; }; - FFFFc701a9207fb7c701a920 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc701a9207fb7c701a920 /* ExtTriangleMeshExt.cpp */; }; - FFFFc701d0d07fb7c701d0d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d0d07fb7c701d0d0 /* SnSerialUtils.cpp */; }; - FFFFc701d1387fb7c701d138 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d1387fb7c701d138 /* SnSerialization.cpp */; }; - FFFFc701d1a07fb7c701d1a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d1a07fb7c701d1a0 /* SnSerializationRegistry.cpp */; }; - FFFFc701d4e07fb7c701d4e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d4e07fb7c701d4e0 /* Binary/SnBinaryDeserialization.cpp */; }; - FFFFc701d5487fb7c701d548 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d5487fb7c701d548 /* Binary/SnBinarySerialization.cpp */; }; - FFFFc701d5b07fb7c701d5b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d5b07fb7c701d5b0 /* Binary/SnConvX.cpp */; }; - FFFFc701d6187fb7c701d618 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d6187fb7c701d618 /* Binary/SnConvX_Align.cpp */; }; - FFFFc701d6807fb7c701d680 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d6807fb7c701d680 /* Binary/SnConvX_Convert.cpp */; }; - FFFFc701d6e87fb7c701d6e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d6e87fb7c701d6e8 /* Binary/SnConvX_Error.cpp */; }; - FFFFc701d7507fb7c701d750 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d7507fb7c701d750 /* Binary/SnConvX_MetaData.cpp */; }; - FFFFc701d7b87fb7c701d7b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d7b87fb7c701d7b8 /* Binary/SnConvX_Output.cpp */; }; - FFFFc701d8207fb7c701d820 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d8207fb7c701d820 /* Binary/SnConvX_Union.cpp */; }; - FFFFc701d8887fb7c701d888 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701d8887fb7c701d888 /* Binary/SnSerializationContext.cpp */; }; - FFFFc701e1787fb7c701e178 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701e1787fb7c701e178 /* Xml/SnJointRepXSerializer.cpp */; }; - FFFFc701e1e07fb7c701e1e0 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701e1e07fb7c701e1e0 /* Xml/SnRepXCoreSerializer.cpp */; }; - FFFFc701e2487fb7c701e248 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701e2487fb7c701e248 /* Xml/SnRepXUpgrader.cpp */; }; - FFFFc701e2b07fb7c701e2b0 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc701e2b07fb7c701e2b0 /* Xml/SnXmlSerialization.cpp */; }; - FFFFc701bee07fb7c701bee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDc701bee07fb7c701bee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; + FFFFfc83f4e87fbcfc83f4e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f4e87fbcfc83f4e8 /* ExtBroadPhase.cpp */; }; + FFFFfc83f5507fbcfc83f550 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f5507fbcfc83f550 /* ExtClothFabricCooker.cpp */; }; + FFFFfc83f5b87fbcfc83f5b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f5b87fbcfc83f5b8 /* ExtClothGeodesicTetherCooker.cpp */; }; + FFFFfc83f6207fbcfc83f620 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f6207fbcfc83f620 /* ExtClothMeshQuadifier.cpp */; }; + FFFFfc83f6887fbcfc83f688 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f6887fbcfc83f688 /* ExtClothSimpleTetherCooker.cpp */; }; + FFFFfc83f6f07fbcfc83f6f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f6f07fbcfc83f6f0 /* ExtCollection.cpp */; }; + FFFFfc83f7587fbcfc83f758 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f7587fbcfc83f758 /* ExtConvexMeshExt.cpp */; }; + FFFFfc83f7c07fbcfc83f7c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f7c07fbcfc83f7c0 /* ExtCpuWorkerThread.cpp */; }; + FFFFfc83f8287fbcfc83f828 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f8287fbcfc83f828 /* ExtD6Joint.cpp */; }; + FFFFfc83f8907fbcfc83f890 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f8907fbcfc83f890 /* ExtD6JointSolverPrep.cpp */; }; + FFFFfc83f8f87fbcfc83f8f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f8f87fbcfc83f8f8 /* ExtDefaultCpuDispatcher.cpp */; }; + FFFFfc83f9607fbcfc83f960 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f9607fbcfc83f960 /* ExtDefaultErrorCallback.cpp */; }; + FFFFfc83f9c87fbcfc83f9c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f9c87fbcfc83f9c8 /* ExtDefaultSimulationFilterShader.cpp */; }; + FFFFfc83fa307fbcfc83fa30 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fa307fbcfc83fa30 /* ExtDefaultStreams.cpp */; }; + FFFFfc83fa987fbcfc83fa98 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fa987fbcfc83fa98 /* ExtDistanceJoint.cpp */; }; + FFFFfc83fb007fbcfc83fb00 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fb007fbcfc83fb00 /* ExtDistanceJointSolverPrep.cpp */; }; + FFFFfc83fb687fbcfc83fb68 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fb687fbcfc83fb68 /* ExtExtensions.cpp */; }; + FFFFfc83fbd07fbcfc83fbd0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fbd07fbcfc83fbd0 /* ExtFixedJoint.cpp */; }; + FFFFfc83fc387fbcfc83fc38 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fc387fbcfc83fc38 /* ExtFixedJointSolverPrep.cpp */; }; + FFFFfc83fca07fbcfc83fca0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fca07fbcfc83fca0 /* ExtJoint.cpp */; }; + FFFFfc83fd087fbcfc83fd08 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fd087fbcfc83fd08 /* ExtMetaData.cpp */; }; + FFFFfc83fd707fbcfc83fd70 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fd707fbcfc83fd70 /* ExtParticleExt.cpp */; }; + FFFFfc83fdd87fbcfc83fdd8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fdd87fbcfc83fdd8 /* ExtPrismaticJoint.cpp */; }; + FFFFfc83fe407fbcfc83fe40 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fe407fbcfc83fe40 /* ExtPrismaticJointSolverPrep.cpp */; }; + FFFFfc83fea87fbcfc83fea8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fea87fbcfc83fea8 /* ExtPvd.cpp */; }; + FFFFfc83ff107fbcfc83ff10 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83ff107fbcfc83ff10 /* ExtPxStringTable.cpp */; }; + FFFFfc83ff787fbcfc83ff78 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83ff787fbcfc83ff78 /* ExtRaycastCCD.cpp */; }; + FFFFfc83ffe07fbcfc83ffe0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83ffe07fbcfc83ffe0 /* ExtRevoluteJoint.cpp */; }; + FFFFfc8400487fbcfc840048 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8400487fbcfc840048 /* ExtRevoluteJointSolverPrep.cpp */; }; + FFFFfc8400b07fbcfc8400b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8400b07fbcfc8400b0 /* ExtRigidBodyExt.cpp */; }; + FFFFfc8401187fbcfc840118 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8401187fbcfc840118 /* ExtSceneQueryExt.cpp */; }; + FFFFfc8401807fbcfc840180 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8401807fbcfc840180 /* ExtSimpleFactory.cpp */; }; + FFFFfc8401e87fbcfc8401e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8401e87fbcfc8401e8 /* ExtSmoothNormals.cpp */; }; + FFFFfc8402507fbcfc840250 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8402507fbcfc840250 /* ExtSphericalJoint.cpp */; }; + FFFFfc8402b87fbcfc8402b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8402b87fbcfc8402b8 /* ExtSphericalJointSolverPrep.cpp */; }; + FFFFfc8403207fbcfc840320 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8403207fbcfc840320 /* ExtTriangleMeshExt.cpp */; }; + FFFFfc8438d07fbcfc8438d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8438d07fbcfc8438d0 /* SnSerialUtils.cpp */; }; + FFFFfc8439387fbcfc843938 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8439387fbcfc843938 /* SnSerialization.cpp */; }; + FFFFfc8439a07fbcfc8439a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8439a07fbcfc8439a0 /* SnSerializationRegistry.cpp */; }; + FFFFfc843ce07fbcfc843ce0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843ce07fbcfc843ce0 /* Binary/SnBinaryDeserialization.cpp */; }; + FFFFfc843d487fbcfc843d48 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843d487fbcfc843d48 /* Binary/SnBinarySerialization.cpp */; }; + FFFFfc843db07fbcfc843db0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843db07fbcfc843db0 /* Binary/SnConvX.cpp */; }; + FFFFfc843e187fbcfc843e18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843e187fbcfc843e18 /* Binary/SnConvX_Align.cpp */; }; + FFFFfc843e807fbcfc843e80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843e807fbcfc843e80 /* Binary/SnConvX_Convert.cpp */; }; + FFFFfc843ee87fbcfc843ee8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843ee87fbcfc843ee8 /* Binary/SnConvX_Error.cpp */; }; + FFFFfc843f507fbcfc843f50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843f507fbcfc843f50 /* Binary/SnConvX_MetaData.cpp */; }; + FFFFfc843fb87fbcfc843fb8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843fb87fbcfc843fb8 /* Binary/SnConvX_Output.cpp */; }; + FFFFfc8440207fbcfc844020 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8440207fbcfc844020 /* Binary/SnConvX_Union.cpp */; }; + FFFFfc8440887fbcfc844088 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8440887fbcfc844088 /* Binary/SnSerializationContext.cpp */; }; + FFFFfc8449787fbcfc844978 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8449787fbcfc844978 /* Xml/SnJointRepXSerializer.cpp */; }; + FFFFfc8449e07fbcfc8449e0 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8449e07fbcfc8449e0 /* Xml/SnRepXCoreSerializer.cpp */; }; + FFFFfc844a487fbcfc844a48 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc844a487fbcfc844a48 /* Xml/SnRepXUpgrader.cpp */; }; + FFFFfc844ab07fbcfc844ab0 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc844ab07fbcfc844ab0 /* Xml/SnXmlSerialization.cpp */; }; + FFFFfc8418e07fbcfc8418e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDfc8418e07fbcfc8418e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc80a0d007fb7c80a0d00 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc701aa007fb7c701aa00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701aa687fb7c701aa68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701aad07fb7c701aad0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701ab387fb7c701ab38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701aba07fb7c701aba0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701ac087fb7c701ac08 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701ac707fb7c701ac70 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701acd87fb7c701acd8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701ad407fb7c701ad40 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701ada87fb7c701ada8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701ae107fb7c701ae10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701ae787fb7c701ae78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701aee07fb7c701aee0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701af487fb7c701af48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701afb07fb7c701afb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b0187fb7c701b018 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b0807fb7c701b080 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b0e87fb7c701b0e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b1507fb7c701b150 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b1b87fb7c701b1b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b2207fb7c701b220 /* PxJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointRepXSerializer.h"; path = "../../../Include/extensions/PxJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b2887fb7c701b288 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b2f07fb7c701b2f0 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b3587fb7c701b358 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b3c07fb7c701b3c0 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b4287fb7c701b428 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b4907fb7c701b490 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b4f87fb7c701b4f8 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b5607fb7c701b560 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b5c87fb7c701b5c8 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b6307fb7c701b630 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b6987fb7c701b698 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b7007fb7c701b700 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b7687fb7c701b768 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b7d07fb7c701b7d0 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b8387fb7c701b838 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b8a07fb7c701b8a0 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701b9087fb7c701b908 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70194007fb7c7019400 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70194687fb7c7019468 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70194d07fb7c70194d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70195387fb7c7019538 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70195a07fb7c70195a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70196087fb7c7019608 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70196707fb7c7019670 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70196d87fb7c70196d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70197407fb7c7019740 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70197a87fb7c70197a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70198107fb7c7019810 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70198787fb7c7019878 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70198e07fb7c70198e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70199487fb7c7019948 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70199b07fb7c70199b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7019a187fb7c7019a18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7019a807fb7c7019a80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7019ae87fb7c7019ae8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc7019b507fb7c7019b50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc7019bb87fb7c7019bb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc7019c207fb7c7019c20 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc7019c887fb7c7019c88 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc7019cf07fb7c7019cf0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc7019d587fb7c7019d58 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc7019dc07fb7c7019dc0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc7019e287fb7c7019e28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc7019e907fb7c7019e90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc7019ef87fb7c7019ef8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc7019f607fb7c7019f60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc7019fc87fb7c7019fc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a0307fb7c701a030 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a0987fb7c701a098 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a1007fb7c701a100 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a1687fb7c701a168 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a1d07fb7c701a1d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a2387fb7c701a238 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a2a07fb7c701a2a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a3087fb7c701a308 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a3707fb7c701a370 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a3d87fb7c701a3d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a4407fb7c701a440 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a4a87fb7c701a4a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a5107fb7c701a510 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a5787fb7c701a578 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a5e07fb7c701a5e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a6487fb7c701a648 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a6b07fb7c701a6b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a7187fb7c701a718 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a7807fb7c701a780 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a7e87fb7c701a7e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a8507fb7c701a850 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a8b87fb7c701a8b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701a9207fb7c701a920 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d0007fb7c701d000 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701d0687fb7c701d068 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701d0d07fb7c701d0d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d1387fb7c701d138 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d1a07fb7c701d1a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d2087fb7c701d208 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701d2707fb7c701d270 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701d2d87fb7c701d2d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701d3407fb7c701d340 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701d3a87fb7c701d3a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701d4107fb7c701d410 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701d4787fb7c701d478 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701d4e07fb7c701d4e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d5487fb7c701d548 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d5b07fb7c701d5b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d6187fb7c701d618 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d6807fb7c701d680 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d6e87fb7c701d6e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d7507fb7c701d750 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d7b87fb7c701d7b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d8207fb7c701d820 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d8887fb7c701d888 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701d8f07fb7c701d8f0 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701d9587fb7c701d958 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701d9c07fb7c701d9c0 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701da287fb7c701da28 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701da907fb7c701da90 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701daf87fb7c701daf8 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701db607fb7c701db60 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701dbc87fb7c701dbc8 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701dc307fb7c701dc30 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701dc987fb7c701dc98 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701dd007fb7c701dd00 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701dd687fb7c701dd68 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701ddd07fb7c701ddd0 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701de387fb7c701de38 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701dea07fb7c701dea0 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701df087fb7c701df08 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701df707fb7c701df70 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701dfd87fb7c701dfd8 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701e0407fb7c701e040 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701e0a87fb7c701e0a8 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701e1107fb7c701e110 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701e1787fb7c701e178 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701e1e07fb7c701e1e0 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701e2487fb7c701e248 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701e2b07fb7c701e2b0 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc701e3187fb7c701e318 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701ba007fb7c701ba00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701ba687fb7c701ba68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701bad07fb7c701bad0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701bb387fb7c701bb38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701bba07fb7c701bba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701bc087fb7c701bc08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701bc707fb7c701bc70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701bcd87fb7c701bcd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701bd407fb7c701bd40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701bda87fb7c701bda8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701be107fb7c701be10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701be787fb7c701be78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc701bee07fb7c701bee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc0c74907fbcfc0c7490 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfc8404007fbcfc840400 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8404687fbcfc840468 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8404d07fbcfc8404d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8405387fbcfc840538 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8405a07fbcfc8405a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8406087fbcfc840608 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8406707fbcfc840670 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8406d87fbcfc8406d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8407407fbcfc840740 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8407a87fbcfc8407a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8408107fbcfc840810 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8408787fbcfc840878 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8408e07fbcfc8408e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8409487fbcfc840948 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8409b07fbcfc8409b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840a187fbcfc840a18 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840a807fbcfc840a80 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840ae87fbcfc840ae8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840b507fbcfc840b50 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840bb87fbcfc840bb8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840c207fbcfc840c20 /* PxJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointRepXSerializer.h"; path = "../../../Include/extensions/PxJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840c887fbcfc840c88 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840cf07fbcfc840cf0 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840d587fbcfc840d58 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840dc07fbcfc840dc0 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840e287fbcfc840e28 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840e907fbcfc840e90 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840ef87fbcfc840ef8 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840f607fbcfc840f60 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc840fc87fbcfc840fc8 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8410307fbcfc841030 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8410987fbcfc841098 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8411007fbcfc841100 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8411687fbcfc841168 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8411d07fbcfc8411d0 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8412387fbcfc841238 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8412a07fbcfc8412a0 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8413087fbcfc841308 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83ee007fbcfc83ee00 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83ee687fbcfc83ee68 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83eed07fbcfc83eed0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83ef387fbcfc83ef38 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83efa07fbcfc83efa0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f0087fbcfc83f008 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f0707fbcfc83f070 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f0d87fbcfc83f0d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f1407fbcfc83f140 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f1a87fbcfc83f1a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f2107fbcfc83f210 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f2787fbcfc83f278 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f2e07fbcfc83f2e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f3487fbcfc83f348 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f3b07fbcfc83f3b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f4187fbcfc83f418 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f4807fbcfc83f480 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f4e87fbcfc83f4e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f5507fbcfc83f550 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f5b87fbcfc83f5b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f6207fbcfc83f620 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f6887fbcfc83f688 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f6f07fbcfc83f6f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f7587fbcfc83f758 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f7c07fbcfc83f7c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f8287fbcfc83f828 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f8907fbcfc83f890 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f8f87fbcfc83f8f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f9607fbcfc83f960 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83f9c87fbcfc83f9c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83fa307fbcfc83fa30 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83fa987fbcfc83fa98 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83fb007fbcfc83fb00 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83fb687fbcfc83fb68 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83fbd07fbcfc83fbd0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83fc387fbcfc83fc38 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83fca07fbcfc83fca0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83fd087fbcfc83fd08 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83fd707fbcfc83fd70 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83fdd87fbcfc83fdd8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83fe407fbcfc83fe40 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83fea87fbcfc83fea8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83ff107fbcfc83ff10 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83ff787fbcfc83ff78 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc83ffe07fbcfc83ffe0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8400487fbcfc840048 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8400b07fbcfc8400b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8401187fbcfc840118 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8401807fbcfc840180 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8401e87fbcfc8401e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8402507fbcfc840250 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8402b87fbcfc8402b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8403207fbcfc840320 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8438007fbcfc843800 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8438687fbcfc843868 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8438d07fbcfc8438d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8439387fbcfc843938 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8439a07fbcfc8439a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc843a087fbcfc843a08 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc843a707fbcfc843a70 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc843ad87fbcfc843ad8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc843b407fbcfc843b40 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc843ba87fbcfc843ba8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc843c107fbcfc843c10 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc843c787fbcfc843c78 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc843ce07fbcfc843ce0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc843d487fbcfc843d48 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc843db07fbcfc843db0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc843e187fbcfc843e18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc843e807fbcfc843e80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc843ee87fbcfc843ee8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc843f507fbcfc843f50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc843fb87fbcfc843fb8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8440207fbcfc844020 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8440887fbcfc844088 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8440f07fbcfc8440f0 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8441587fbcfc844158 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8441c07fbcfc8441c0 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8442287fbcfc844228 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8442907fbcfc844290 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8442f87fbcfc8442f8 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8443607fbcfc844360 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8443c87fbcfc8443c8 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8444307fbcfc844430 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8444987fbcfc844498 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8445007fbcfc844500 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8445687fbcfc844568 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8445d07fbcfc8445d0 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8446387fbcfc844638 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8446a07fbcfc8446a0 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8447087fbcfc844708 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8447707fbcfc844770 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8447d87fbcfc8447d8 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8448407fbcfc844840 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8448a87fbcfc8448a8 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8449107fbcfc844910 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8449787fbcfc844978 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8449e07fbcfc8449e0 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc844a487fbcfc844a48 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc844ab07fbcfc844ab0 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc844b187fbcfc844b18 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8414007fbcfc841400 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8414687fbcfc841468 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8414d07fbcfc8414d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8415387fbcfc841538 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8415a07fbcfc8415a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8416087fbcfc841608 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8416707fbcfc841670 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8416d87fbcfc8416d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8417407fbcfc841740 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8417a87fbcfc8417a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8418107fbcfc841810 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8418787fbcfc841878 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8418e07fbcfc8418e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c80a0d007fb7c80a0d00 /* Resources */ = { + FFF2fc0c74907fbcfc0c7490 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -804,7 +804,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc80a0d007fb7c80a0d00 /* Frameworks */ = { + FFFCfc0c74907fbcfc0c7490 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -814,64 +814,64 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c80a0d007fb7c80a0d00 /* Sources */ = { + FFF8fc0c74907fbcfc0c7490 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc7019ae87fb7c7019ae8, - FFFFc7019b507fb7c7019b50, - FFFFc7019bb87fb7c7019bb8, - FFFFc7019c207fb7c7019c20, - FFFFc7019c887fb7c7019c88, - FFFFc7019cf07fb7c7019cf0, - FFFFc7019d587fb7c7019d58, - FFFFc7019dc07fb7c7019dc0, - FFFFc7019e287fb7c7019e28, - FFFFc7019e907fb7c7019e90, - FFFFc7019ef87fb7c7019ef8, - FFFFc7019f607fb7c7019f60, - FFFFc7019fc87fb7c7019fc8, - FFFFc701a0307fb7c701a030, - FFFFc701a0987fb7c701a098, - FFFFc701a1007fb7c701a100, - FFFFc701a1687fb7c701a168, - FFFFc701a1d07fb7c701a1d0, - FFFFc701a2387fb7c701a238, - FFFFc701a2a07fb7c701a2a0, - FFFFc701a3087fb7c701a308, - FFFFc701a3707fb7c701a370, - FFFFc701a3d87fb7c701a3d8, - FFFFc701a4407fb7c701a440, - FFFFc701a4a87fb7c701a4a8, - FFFFc701a5107fb7c701a510, - FFFFc701a5787fb7c701a578, - FFFFc701a5e07fb7c701a5e0, - FFFFc701a6487fb7c701a648, - FFFFc701a6b07fb7c701a6b0, - FFFFc701a7187fb7c701a718, - FFFFc701a7807fb7c701a780, - FFFFc701a7e87fb7c701a7e8, - FFFFc701a8507fb7c701a850, - FFFFc701a8b87fb7c701a8b8, - FFFFc701a9207fb7c701a920, - FFFFc701d0d07fb7c701d0d0, - FFFFc701d1387fb7c701d138, - FFFFc701d1a07fb7c701d1a0, - FFFFc701d4e07fb7c701d4e0, - FFFFc701d5487fb7c701d548, - FFFFc701d5b07fb7c701d5b0, - FFFFc701d6187fb7c701d618, - FFFFc701d6807fb7c701d680, - FFFFc701d6e87fb7c701d6e8, - FFFFc701d7507fb7c701d750, - FFFFc701d7b87fb7c701d7b8, - FFFFc701d8207fb7c701d820, - FFFFc701d8887fb7c701d888, - FFFFc701e1787fb7c701e178, - FFFFc701e1e07fb7c701e1e0, - FFFFc701e2487fb7c701e248, - FFFFc701e2b07fb7c701e2b0, - FFFFc701bee07fb7c701bee0, + FFFFfc83f4e87fbcfc83f4e8, + FFFFfc83f5507fbcfc83f550, + FFFFfc83f5b87fbcfc83f5b8, + FFFFfc83f6207fbcfc83f620, + FFFFfc83f6887fbcfc83f688, + FFFFfc83f6f07fbcfc83f6f0, + FFFFfc83f7587fbcfc83f758, + FFFFfc83f7c07fbcfc83f7c0, + FFFFfc83f8287fbcfc83f828, + FFFFfc83f8907fbcfc83f890, + FFFFfc83f8f87fbcfc83f8f8, + FFFFfc83f9607fbcfc83f960, + FFFFfc83f9c87fbcfc83f9c8, + FFFFfc83fa307fbcfc83fa30, + FFFFfc83fa987fbcfc83fa98, + FFFFfc83fb007fbcfc83fb00, + FFFFfc83fb687fbcfc83fb68, + FFFFfc83fbd07fbcfc83fbd0, + FFFFfc83fc387fbcfc83fc38, + FFFFfc83fca07fbcfc83fca0, + FFFFfc83fd087fbcfc83fd08, + FFFFfc83fd707fbcfc83fd70, + FFFFfc83fdd87fbcfc83fdd8, + FFFFfc83fe407fbcfc83fe40, + FFFFfc83fea87fbcfc83fea8, + FFFFfc83ff107fbcfc83ff10, + FFFFfc83ff787fbcfc83ff78, + FFFFfc83ffe07fbcfc83ffe0, + FFFFfc8400487fbcfc840048, + FFFFfc8400b07fbcfc8400b0, + FFFFfc8401187fbcfc840118, + FFFFfc8401807fbcfc840180, + FFFFfc8401e87fbcfc8401e8, + FFFFfc8402507fbcfc840250, + FFFFfc8402b87fbcfc8402b8, + FFFFfc8403207fbcfc840320, + FFFFfc8438d07fbcfc8438d0, + FFFFfc8439387fbcfc843938, + FFFFfc8439a07fbcfc8439a0, + FFFFfc843ce07fbcfc843ce0, + FFFFfc843d487fbcfc843d48, + FFFFfc843db07fbcfc843db0, + FFFFfc843e187fbcfc843e18, + FFFFfc843e807fbcfc843e80, + FFFFfc843ee87fbcfc843ee8, + FFFFfc843f507fbcfc843f50, + FFFFfc843fb87fbcfc843fb8, + FFFFfc8440207fbcfc844020, + FFFFfc8440887fbcfc844088, + FFFFfc8449787fbcfc844978, + FFFFfc8449e07fbcfc8449e0, + FFFFfc844a487fbcfc844a48, + FFFFfc844ab07fbcfc844ab0, + FFFFfc8418e07fbcfc8418e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -880,56 +880,56 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4c80a05c07fb7c80a05c0 /* PBXTargetDependency */ = { + FFF4fc0c97b07fbcfc0c97b0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc4b829a07fb7c4b829a0 /* PsFastXml */; - targetProxy = FFF5c4b829a07fb7c4b829a0 /* PBXContainerItemProxy */; + target = FFFAfc0657b07fbcfc0657b0 /* PsFastXml */; + targetProxy = FFF5fc0657b07fbcfc0657b0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SceneQuery */ - FFFFc70220007fb7c7022000 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc70220007fb7c7022000 /* SqAABBPruner.cpp */; }; - FFFFc70220687fb7c7022068 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc70220687fb7c7022068 /* SqAABBTree.cpp */; }; - FFFFc70220d07fb7c70220d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc70220d07fb7c70220d0 /* SqAABBTreeUpdateMap.cpp */; }; - FFFFc70221387fb7c7022138 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc70221387fb7c7022138 /* SqBounds.cpp */; }; - FFFFc70221a07fb7c70221a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc70221a07fb7c70221a0 /* SqBucketPruner.cpp */; }; - FFFFc70222087fb7c7022208 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc70222087fb7c7022208 /* SqExtendedBucketPruner.cpp */; }; - FFFFc70222707fb7c7022270 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc70222707fb7c7022270 /* SqMetaData.cpp */; }; - FFFFc70222d87fb7c70222d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc70222d87fb7c70222d8 /* SqPruningPool.cpp */; }; - FFFFc70223407fb7c7022340 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc70223407fb7c7022340 /* SqPruningStructure.cpp */; }; - FFFFc70223a87fb7c70223a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc70223a87fb7c70223a8 /* SqSceneQueryManager.cpp */; }; + FFFFfc8478007fbcfc847800 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8478007fbcfc847800 /* SqAABBPruner.cpp */; }; + FFFFfc8478687fbcfc847868 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8478687fbcfc847868 /* SqAABBTree.cpp */; }; + FFFFfc8478d07fbcfc8478d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8478d07fbcfc8478d0 /* SqAABBTreeUpdateMap.cpp */; }; + FFFFfc8479387fbcfc847938 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8479387fbcfc847938 /* SqBounds.cpp */; }; + FFFFfc8479a07fbcfc8479a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8479a07fbcfc8479a0 /* SqBucketPruner.cpp */; }; + FFFFfc847a087fbcfc847a08 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc847a087fbcfc847a08 /* SqExtendedBucketPruner.cpp */; }; + FFFFfc847a707fbcfc847a70 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc847a707fbcfc847a70 /* SqMetaData.cpp */; }; + FFFFfc847ad87fbcfc847ad8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc847ad87fbcfc847ad8 /* SqPruningPool.cpp */; }; + FFFFfc847b407fbcfc847b40 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc847b407fbcfc847b40 /* SqPruningStructure.cpp */; }; + FFFFfc847ba87fbcfc847ba8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc847ba87fbcfc847ba8 /* SqSceneQueryManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc4e529207fb7c4e52920 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc70220007fb7c7022000 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc70220687fb7c7022068 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc70220d07fb7c70220d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc70221387fb7c7022138 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc70221a07fb7c70221a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc70222087fb7c7022208 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc70222707fb7c7022270 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc70222d87fb7c70222d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc70223407fb7c7022340 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc70223a87fb7c70223a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc70224107fb7c7022410 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70224787fb7c7022478 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70224e07fb7c70224e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70225487fb7c7022548 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70225b07fb7c70225b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70226187fb7c7022618 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70226807fb7c7022680 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70226e87fb7c70226e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70227507fb7c7022750 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc70227b87fb7c70227b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4e569c07fb7c4e569c0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4e56a287fb7c4e56a28 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4e56a907fb7c4e56a90 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4e56af87fb7c4e56af8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc0985207fbcfc098520 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfc8478007fbcfc847800 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8478687fbcfc847868 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8478d07fbcfc8478d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8479387fbcfc847938 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8479a07fbcfc8479a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc847a087fbcfc847a08 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc847a707fbcfc847a70 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc847ad87fbcfc847ad8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc847b407fbcfc847b40 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc847ba87fbcfc847ba8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc847c107fbcfc847c10 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc847c787fbcfc847c78 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc847ce07fbcfc847ce0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc847d487fbcfc847d48 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc847db07fbcfc847db0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc847e187fbcfc847e18 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc847e807fbcfc847e80 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc847ee87fbcfc847ee8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc847f507fbcfc847f50 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc847fb87fbcfc847fb8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc08d1907fbcfc08d190 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc08d1f87fbcfc08d1f8 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc08d2607fbcfc08d260 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc08d2c87fbcfc08d2c8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c4e529207fb7c4e52920 /* Resources */ = { + FFF2fc0985207fbcfc098520 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -939,7 +939,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc4e529207fb7c4e52920 /* Frameworks */ = { + FFFCfc0985207fbcfc098520 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -949,20 +949,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c4e529207fb7c4e52920 /* Sources */ = { + FFF8fc0985207fbcfc098520 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc70220007fb7c7022000, - FFFFc70220687fb7c7022068, - FFFFc70220d07fb7c70220d0, - FFFFc70221387fb7c7022138, - FFFFc70221a07fb7c70221a0, - FFFFc70222087fb7c7022208, - FFFFc70222707fb7c7022270, - FFFFc70222d87fb7c70222d8, - FFFFc70223407fb7c7022340, - FFFFc70223a87fb7c70223a8, + FFFFfc8478007fbcfc847800, + FFFFfc8478687fbcfc847868, + FFFFfc8478d07fbcfc8478d0, + FFFFfc8479387fbcfc847938, + FFFFfc8479a07fbcfc8479a0, + FFFFfc847a087fbcfc847a08, + FFFFfc847a707fbcfc847a70, + FFFFfc847ad87fbcfc847ad8, + FFFFfc847b407fbcfc847b40, + FFFFfc847ba87fbcfc847ba8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -974,154 +974,154 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SimulationController */ - FFFFc40323d07fb7c40323d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40323d07fb7c40323d0 /* ScActorCore.cpp */; }; - FFFFc40324387fb7c4032438 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40324387fb7c4032438 /* ScActorSim.cpp */; }; - FFFFc40324a07fb7c40324a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40324a07fb7c40324a0 /* ScArticulationCore.cpp */; }; - FFFFc40325087fb7c4032508 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40325087fb7c4032508 /* ScArticulationJointCore.cpp */; }; - FFFFc40325707fb7c4032570 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40325707fb7c4032570 /* ScArticulationJointSim.cpp */; }; - FFFFc40325d87fb7c40325d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40325d87fb7c40325d8 /* ScArticulationSim.cpp */; }; - FFFFc40326407fb7c4032640 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40326407fb7c4032640 /* ScBodyCore.cpp */; }; - FFFFc40326a87fb7c40326a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40326a87fb7c40326a8 /* ScBodyCoreKinematic.cpp */; }; - FFFFc40327107fb7c4032710 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40327107fb7c4032710 /* ScBodySim.cpp */; }; - FFFFc40327787fb7c4032778 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40327787fb7c4032778 /* ScConstraintCore.cpp */; }; - FFFFc40327e07fb7c40327e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40327e07fb7c40327e0 /* ScConstraintGroupNode.cpp */; }; - FFFFc40328487fb7c4032848 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40328487fb7c4032848 /* ScConstraintInteraction.cpp */; }; - FFFFc40328b07fb7c40328b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40328b07fb7c40328b0 /* ScConstraintProjectionManager.cpp */; }; - FFFFc40329187fb7c4032918 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40329187fb7c4032918 /* ScConstraintProjectionTree.cpp */; }; - FFFFc40329807fb7c4032980 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40329807fb7c4032980 /* ScConstraintSim.cpp */; }; - FFFFc40329e87fb7c40329e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40329e87fb7c40329e8 /* ScElementInteractionMarker.cpp */; }; - FFFFc4032a507fb7c4032a50 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032a507fb7c4032a50 /* ScElementSim.cpp */; }; - FFFFc4032ab87fb7c4032ab8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032ab87fb7c4032ab8 /* ScInteraction.cpp */; }; - FFFFc4032b207fb7c4032b20 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032b207fb7c4032b20 /* ScIterators.cpp */; }; - FFFFc4032b887fb7c4032b88 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032b887fb7c4032b88 /* ScMaterialCore.cpp */; }; - FFFFc4032bf07fb7c4032bf0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032bf07fb7c4032bf0 /* ScMetaData.cpp */; }; - FFFFc4032c587fb7c4032c58 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032c587fb7c4032c58 /* ScNPhaseCore.cpp */; }; - FFFFc4032cc07fb7c4032cc0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032cc07fb7c4032cc0 /* ScPhysics.cpp */; }; - FFFFc4032d287fb7c4032d28 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032d287fb7c4032d28 /* ScRigidCore.cpp */; }; - FFFFc4032d907fb7c4032d90 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032d907fb7c4032d90 /* ScRigidSim.cpp */; }; - FFFFc4032df87fb7c4032df8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032df87fb7c4032df8 /* ScScene.cpp */; }; - FFFFc4032e607fb7c4032e60 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032e607fb7c4032e60 /* ScShapeCore.cpp */; }; - FFFFc4032ec87fb7c4032ec8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032ec87fb7c4032ec8 /* ScShapeInteraction.cpp */; }; - FFFFc4032f307fb7c4032f30 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032f307fb7c4032f30 /* ScShapeSim.cpp */; }; - FFFFc4032f987fb7c4032f98 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4032f987fb7c4032f98 /* ScSimStats.cpp */; }; - FFFFc40330007fb7c4033000 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40330007fb7c4033000 /* ScSimulationController.cpp */; }; - FFFFc40330687fb7c4033068 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40330687fb7c4033068 /* ScSqBoundsManager.cpp */; }; - FFFFc40330d07fb7c40330d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40330d07fb7c40330d0 /* ScStaticCore.cpp */; }; - FFFFc40331387fb7c4033138 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40331387fb7c4033138 /* ScStaticSim.cpp */; }; - FFFFc40331a07fb7c40331a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40331a07fb7c40331a0 /* ScTriggerInteraction.cpp */; }; - FFFFc40333407fb7c4033340 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40333407fb7c4033340 /* particles/ScParticleBodyInteraction.cpp */; }; - FFFFc40333a87fb7c40333a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40333a87fb7c40333a8 /* particles/ScParticlePacketShape.cpp */; }; - FFFFc40334107fb7c4033410 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40334107fb7c4033410 /* particles/ScParticleSystemCore.cpp */; }; - FFFFc40334787fb7c4033478 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40334787fb7c4033478 /* particles/ScParticleSystemSim.cpp */; }; - FFFFc40335b07fb7c40335b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40335b07fb7c40335b0 /* cloth/ScClothCore.cpp */; }; - FFFFc40336187fb7c4033618 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40336187fb7c4033618 /* cloth/ScClothFabricCore.cpp */; }; - FFFFc40336807fb7c4033680 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40336807fb7c4033680 /* cloth/ScClothShape.cpp */; }; - FFFFc40336e87fb7c40336e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc40336e87fb7c40336e8 /* cloth/ScClothSim.cpp */; }; + FFFFfc84e1d07fbcfc84e1d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e1d07fbcfc84e1d0 /* ScActorCore.cpp */; }; + FFFFfc84e2387fbcfc84e238 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e2387fbcfc84e238 /* ScActorSim.cpp */; }; + FFFFfc84e2a07fbcfc84e2a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e2a07fbcfc84e2a0 /* ScArticulationCore.cpp */; }; + FFFFfc84e3087fbcfc84e308 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e3087fbcfc84e308 /* ScArticulationJointCore.cpp */; }; + FFFFfc84e3707fbcfc84e370 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e3707fbcfc84e370 /* ScArticulationJointSim.cpp */; }; + FFFFfc84e3d87fbcfc84e3d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e3d87fbcfc84e3d8 /* ScArticulationSim.cpp */; }; + FFFFfc84e4407fbcfc84e440 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e4407fbcfc84e440 /* ScBodyCore.cpp */; }; + FFFFfc84e4a87fbcfc84e4a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e4a87fbcfc84e4a8 /* ScBodyCoreKinematic.cpp */; }; + FFFFfc84e5107fbcfc84e510 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e5107fbcfc84e510 /* ScBodySim.cpp */; }; + FFFFfc84e5787fbcfc84e578 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e5787fbcfc84e578 /* ScConstraintCore.cpp */; }; + FFFFfc84e5e07fbcfc84e5e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e5e07fbcfc84e5e0 /* ScConstraintGroupNode.cpp */; }; + FFFFfc84e6487fbcfc84e648 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e6487fbcfc84e648 /* ScConstraintInteraction.cpp */; }; + FFFFfc84e6b07fbcfc84e6b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e6b07fbcfc84e6b0 /* ScConstraintProjectionManager.cpp */; }; + FFFFfc84e7187fbcfc84e718 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e7187fbcfc84e718 /* ScConstraintProjectionTree.cpp */; }; + FFFFfc84e7807fbcfc84e780 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e7807fbcfc84e780 /* ScConstraintSim.cpp */; }; + FFFFfc84e7e87fbcfc84e7e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e7e87fbcfc84e7e8 /* ScElementInteractionMarker.cpp */; }; + FFFFfc84e8507fbcfc84e850 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e8507fbcfc84e850 /* ScElementSim.cpp */; }; + FFFFfc84e8b87fbcfc84e8b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e8b87fbcfc84e8b8 /* ScInteraction.cpp */; }; + FFFFfc84e9207fbcfc84e920 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e9207fbcfc84e920 /* ScIterators.cpp */; }; + FFFFfc84e9887fbcfc84e988 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e9887fbcfc84e988 /* ScMaterialCore.cpp */; }; + FFFFfc84e9f07fbcfc84e9f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e9f07fbcfc84e9f0 /* ScMetaData.cpp */; }; + FFFFfc84ea587fbcfc84ea58 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ea587fbcfc84ea58 /* ScNPhaseCore.cpp */; }; + FFFFfc84eac07fbcfc84eac0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84eac07fbcfc84eac0 /* ScPhysics.cpp */; }; + FFFFfc84eb287fbcfc84eb28 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84eb287fbcfc84eb28 /* ScRigidCore.cpp */; }; + FFFFfc84eb907fbcfc84eb90 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84eb907fbcfc84eb90 /* ScRigidSim.cpp */; }; + FFFFfc84ebf87fbcfc84ebf8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ebf87fbcfc84ebf8 /* ScScene.cpp */; }; + FFFFfc84ec607fbcfc84ec60 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ec607fbcfc84ec60 /* ScShapeCore.cpp */; }; + FFFFfc84ecc87fbcfc84ecc8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ecc87fbcfc84ecc8 /* ScShapeInteraction.cpp */; }; + FFFFfc84ed307fbcfc84ed30 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ed307fbcfc84ed30 /* ScShapeSim.cpp */; }; + FFFFfc84ed987fbcfc84ed98 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ed987fbcfc84ed98 /* ScSimStats.cpp */; }; + FFFFfc84ee007fbcfc84ee00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ee007fbcfc84ee00 /* ScSimulationController.cpp */; }; + FFFFfc84ee687fbcfc84ee68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ee687fbcfc84ee68 /* ScSqBoundsManager.cpp */; }; + FFFFfc84eed07fbcfc84eed0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84eed07fbcfc84eed0 /* ScStaticCore.cpp */; }; + FFFFfc84ef387fbcfc84ef38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ef387fbcfc84ef38 /* ScStaticSim.cpp */; }; + FFFFfc84efa07fbcfc84efa0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84efa07fbcfc84efa0 /* ScTriggerInteraction.cpp */; }; + FFFFfc84f1407fbcfc84f140 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f1407fbcfc84f140 /* particles/ScParticleBodyInteraction.cpp */; }; + FFFFfc84f1a87fbcfc84f1a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f1a87fbcfc84f1a8 /* particles/ScParticlePacketShape.cpp */; }; + FFFFfc84f2107fbcfc84f210 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f2107fbcfc84f210 /* particles/ScParticleSystemCore.cpp */; }; + FFFFfc84f2787fbcfc84f278 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f2787fbcfc84f278 /* particles/ScParticleSystemSim.cpp */; }; + FFFFfc84f3b07fbcfc84f3b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f3b07fbcfc84f3b0 /* cloth/ScClothCore.cpp */; }; + FFFFfc84f4187fbcfc84f418 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f4187fbcfc84f418 /* cloth/ScClothFabricCore.cpp */; }; + FFFFfc84f4807fbcfc84f480 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f4807fbcfc84f480 /* cloth/ScClothShape.cpp */; }; + FFFFfc84f4e87fbcfc84f4e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f4e87fbcfc84f4e8 /* cloth/ScClothSim.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc4e56c807fb7c4e56c80 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc402ec007fb7c402ec00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402ec687fb7c402ec68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402ecd07fb7c402ecd0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402ed387fb7c402ed38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402eda07fb7c402eda0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402ee087fb7c402ee08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402ee707fb7c402ee70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402eed87fb7c402eed8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402ef407fb7c402ef40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402efa87fb7c402efa8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402f0107fb7c402f010 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402f0787fb7c402f078 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402f0e07fb7c402f0e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402f1487fb7c402f148 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402f1b07fb7c402f1b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40316007fb7c4031600 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40316687fb7c4031668 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40316d07fb7c40316d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40317387fb7c4031738 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40317a07fb7c40317a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40318087fb7c4031808 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40318707fb7c4031870 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40318d87fb7c40318d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40319407fb7c4031940 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40319a87fb7c40319a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031a107fb7c4031a10 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031a787fb7c4031a78 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031ae07fb7c4031ae0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031b487fb7c4031b48 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031bb07fb7c4031bb0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031c187fb7c4031c18 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031c807fb7c4031c80 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031ce87fb7c4031ce8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031d507fb7c4031d50 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031db87fb7c4031db8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031e207fb7c4031e20 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031e887fb7c4031e88 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031ef07fb7c4031ef0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031f587fb7c4031f58 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4031fc07fb7c4031fc0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40320287fb7c4032028 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40320907fb7c4032090 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40320f87fb7c40320f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40321607fb7c4032160 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40321c87fb7c40321c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40322307fb7c4032230 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40322987fb7c4032298 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40323007fb7c4032300 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40323687fb7c4032368 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40323d07fb7c40323d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40324387fb7c4032438 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40324a07fb7c40324a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40325087fb7c4032508 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40325707fb7c4032570 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40325d87fb7c40325d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40326407fb7c4032640 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40326a87fb7c40326a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40327107fb7c4032710 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40327787fb7c4032778 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40327e07fb7c40327e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40328487fb7c4032848 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40328b07fb7c40328b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40329187fb7c4032918 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40329807fb7c4032980 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40329e87fb7c40329e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032a507fb7c4032a50 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032ab87fb7c4032ab8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032b207fb7c4032b20 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032b887fb7c4032b88 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032bf07fb7c4032bf0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032c587fb7c4032c58 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032cc07fb7c4032cc0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032d287fb7c4032d28 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032d907fb7c4032d90 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032df87fb7c4032df8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032e607fb7c4032e60 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032ec87fb7c4032ec8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032f307fb7c4032f30 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4032f987fb7c4032f98 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40330007fb7c4033000 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40330687fb7c4033068 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40330d07fb7c40330d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40331387fb7c4033138 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40331a07fb7c40331a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40332087fb7c4033208 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40332707fb7c4033270 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40332d87fb7c40332d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40333407fb7c4033340 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40333a87fb7c40333a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40334107fb7c4033410 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40334787fb7c4033478 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40334e07fb7c40334e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40335487fb7c4033548 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40335b07fb7c40335b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40336187fb7c4033618 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40336807fb7c4033680 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40336e87fb7c40336e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc08d4e07fbcfc08d4e0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfc84a2007fbcfc84a200 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a2687fbcfc84a268 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a2d07fbcfc84a2d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a3387fbcfc84a338 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a3a07fbcfc84a3a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a4087fbcfc84a408 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a4707fbcfc84a470 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a4d87fbcfc84a4d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a5407fbcfc84a540 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a5a87fbcfc84a5a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a6107fbcfc84a610 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a6787fbcfc84a678 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a6e07fbcfc84a6e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a7487fbcfc84a748 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84a7b07fbcfc84a7b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d4007fbcfc84d400 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d4687fbcfc84d468 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d4d07fbcfc84d4d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d5387fbcfc84d538 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d5a07fbcfc84d5a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d6087fbcfc84d608 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d6707fbcfc84d670 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d6d87fbcfc84d6d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d7407fbcfc84d740 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d7a87fbcfc84d7a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d8107fbcfc84d810 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d8787fbcfc84d878 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d8e07fbcfc84d8e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d9487fbcfc84d948 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84d9b07fbcfc84d9b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84da187fbcfc84da18 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84da807fbcfc84da80 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84dae87fbcfc84dae8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84db507fbcfc84db50 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84dbb87fbcfc84dbb8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84dc207fbcfc84dc20 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84dc887fbcfc84dc88 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84dcf07fbcfc84dcf0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84dd587fbcfc84dd58 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84ddc07fbcfc84ddc0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84de287fbcfc84de28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84de907fbcfc84de90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84def87fbcfc84def8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84df607fbcfc84df60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84dfc87fbcfc84dfc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e0307fbcfc84e030 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e0987fbcfc84e098 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e1007fbcfc84e100 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e1687fbcfc84e168 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e1d07fbcfc84e1d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e2387fbcfc84e238 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e2a07fbcfc84e2a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e3087fbcfc84e308 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e3707fbcfc84e370 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e3d87fbcfc84e3d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e4407fbcfc84e440 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e4a87fbcfc84e4a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e5107fbcfc84e510 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e5787fbcfc84e578 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e5e07fbcfc84e5e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e6487fbcfc84e648 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e6b07fbcfc84e6b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e7187fbcfc84e718 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e7807fbcfc84e780 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e7e87fbcfc84e7e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e8507fbcfc84e850 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e8b87fbcfc84e8b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e9207fbcfc84e920 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e9887fbcfc84e988 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84e9f07fbcfc84e9f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84ea587fbcfc84ea58 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84eac07fbcfc84eac0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84eb287fbcfc84eb28 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84eb907fbcfc84eb90 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84ebf87fbcfc84ebf8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84ec607fbcfc84ec60 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84ecc87fbcfc84ecc8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84ed307fbcfc84ed30 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84ed987fbcfc84ed98 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84ee007fbcfc84ee00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84ee687fbcfc84ee68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84eed07fbcfc84eed0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84ef387fbcfc84ef38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84efa07fbcfc84efa0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f0087fbcfc84f008 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f0707fbcfc84f070 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f0d87fbcfc84f0d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f1407fbcfc84f140 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f1a87fbcfc84f1a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f2107fbcfc84f210 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f2787fbcfc84f278 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f2e07fbcfc84f2e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f3487fbcfc84f348 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f3b07fbcfc84f3b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f4187fbcfc84f418 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f4807fbcfc84f480 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc84f4e87fbcfc84f4e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c4e56c807fb7c4e56c80 /* Resources */ = { + FFF2fc08d4e07fbcfc08d4e0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1131,7 +1131,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc4e56c807fb7c4e56c80 /* Frameworks */ = { + FFFCfc08d4e07fbcfc08d4e0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1141,53 +1141,53 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c4e56c807fb7c4e56c80 /* Sources */ = { + FFF8fc08d4e07fbcfc08d4e0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc40323d07fb7c40323d0, - FFFFc40324387fb7c4032438, - FFFFc40324a07fb7c40324a0, - FFFFc40325087fb7c4032508, - FFFFc40325707fb7c4032570, - FFFFc40325d87fb7c40325d8, - FFFFc40326407fb7c4032640, - FFFFc40326a87fb7c40326a8, - FFFFc40327107fb7c4032710, - FFFFc40327787fb7c4032778, - FFFFc40327e07fb7c40327e0, - FFFFc40328487fb7c4032848, - FFFFc40328b07fb7c40328b0, - FFFFc40329187fb7c4032918, - FFFFc40329807fb7c4032980, - FFFFc40329e87fb7c40329e8, - FFFFc4032a507fb7c4032a50, - FFFFc4032ab87fb7c4032ab8, - FFFFc4032b207fb7c4032b20, - FFFFc4032b887fb7c4032b88, - FFFFc4032bf07fb7c4032bf0, - FFFFc4032c587fb7c4032c58, - FFFFc4032cc07fb7c4032cc0, - FFFFc4032d287fb7c4032d28, - FFFFc4032d907fb7c4032d90, - FFFFc4032df87fb7c4032df8, - FFFFc4032e607fb7c4032e60, - FFFFc4032ec87fb7c4032ec8, - FFFFc4032f307fb7c4032f30, - FFFFc4032f987fb7c4032f98, - FFFFc40330007fb7c4033000, - FFFFc40330687fb7c4033068, - FFFFc40330d07fb7c40330d0, - FFFFc40331387fb7c4033138, - FFFFc40331a07fb7c40331a0, - FFFFc40333407fb7c4033340, - FFFFc40333a87fb7c40333a8, - FFFFc40334107fb7c4033410, - FFFFc40334787fb7c4033478, - FFFFc40335b07fb7c40335b0, - FFFFc40336187fb7c4033618, - FFFFc40336807fb7c4033680, - FFFFc40336e87fb7c40336e8, + FFFFfc84e1d07fbcfc84e1d0, + FFFFfc84e2387fbcfc84e238, + FFFFfc84e2a07fbcfc84e2a0, + FFFFfc84e3087fbcfc84e308, + FFFFfc84e3707fbcfc84e370, + FFFFfc84e3d87fbcfc84e3d8, + FFFFfc84e4407fbcfc84e440, + FFFFfc84e4a87fbcfc84e4a8, + FFFFfc84e5107fbcfc84e510, + FFFFfc84e5787fbcfc84e578, + FFFFfc84e5e07fbcfc84e5e0, + FFFFfc84e6487fbcfc84e648, + FFFFfc84e6b07fbcfc84e6b0, + FFFFfc84e7187fbcfc84e718, + FFFFfc84e7807fbcfc84e780, + FFFFfc84e7e87fbcfc84e7e8, + FFFFfc84e8507fbcfc84e850, + FFFFfc84e8b87fbcfc84e8b8, + FFFFfc84e9207fbcfc84e920, + FFFFfc84e9887fbcfc84e988, + FFFFfc84e9f07fbcfc84e9f0, + FFFFfc84ea587fbcfc84ea58, + FFFFfc84eac07fbcfc84eac0, + FFFFfc84eb287fbcfc84eb28, + FFFFfc84eb907fbcfc84eb90, + FFFFfc84ebf87fbcfc84ebf8, + FFFFfc84ec607fbcfc84ec60, + FFFFfc84ecc87fbcfc84ecc8, + FFFFfc84ed307fbcfc84ed30, + FFFFfc84ed987fbcfc84ed98, + FFFFfc84ee007fbcfc84ee00, + FFFFfc84ee687fbcfc84ee68, + FFFFfc84eed07fbcfc84eed0, + FFFFfc84ef387fbcfc84ef38, + FFFFfc84efa07fbcfc84efa0, + FFFFfc84f1407fbcfc84f140, + FFFFfc84f1a87fbcfc84f1a8, + FFFFfc84f2107fbcfc84f210, + FFFFfc84f2787fbcfc84f278, + FFFFfc84f3b07fbcfc84f3b0, + FFFFfc84f4187fbcfc84f418, + FFFFfc84f4807fbcfc84f480, + FFFFfc84f4e87fbcfc84f4e8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1199,80 +1199,80 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCooking */ - FFFFc4b86f907fb7c4b86f90 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDc80a0d007fb7c80a0d00 /* PhysXExtensions */; }; - FFFFc68216007fb7c6821600 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc68216007fb7c6821600 /* Adjacencies.cpp */; }; - FFFFc68216687fb7c6821668 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc68216687fb7c6821668 /* Cooking.cpp */; }; - FFFFc68216d07fb7c68216d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc68216d07fb7c68216d0 /* CookingUtils.cpp */; }; - FFFFc68217387fb7c6821738 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc68217387fb7c6821738 /* EdgeList.cpp */; }; - FFFFc68217a07fb7c68217a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc68217a07fb7c68217a0 /* MeshCleaner.cpp */; }; - FFFFc68218087fb7c6821808 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc68218087fb7c6821808 /* Quantizer.cpp */; }; - FFFFc6821ae07fb7c6821ae0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6821ae07fb7c6821ae0 /* mesh/GrbTriangleMeshCooking.cpp */; }; - FFFFc6821b487fb7c6821b48 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6821b487fb7c6821b48 /* mesh/HeightFieldCooking.cpp */; }; - FFFFc6821bb07fb7c6821bb0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6821bb07fb7c6821bb0 /* mesh/RTreeCooking.cpp */; }; - FFFFc6821c187fb7c6821c18 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6821c187fb7c6821c18 /* mesh/TriangleMeshBuilder.cpp */; }; - FFFFc6821e887fb7c6821e88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6821e887fb7c6821e88 /* convex/BigConvexDataBuilder.cpp */; }; - FFFFc6821ef07fb7c6821ef0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6821ef07fb7c6821ef0 /* convex/ConvexHullBuilder.cpp */; }; - FFFFc6821f587fb7c6821f58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6821f587fb7c6821f58 /* convex/ConvexHullLib.cpp */; }; - FFFFc6821fc07fb7c6821fc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6821fc07fb7c6821fc0 /* convex/ConvexHullUtils.cpp */; }; - FFFFc68220287fb7c6822028 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc68220287fb7c6822028 /* convex/ConvexMeshBuilder.cpp */; }; - FFFFc68220907fb7c6822090 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc68220907fb7c6822090 /* convex/ConvexPolygonsBuilder.cpp */; }; - FFFFc68220f87fb7c68220f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc68220f87fb7c68220f8 /* convex/InflationConvexHullLib.cpp */; }; - FFFFc68221607fb7c6822160 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc68221607fb7c6822160 /* convex/QuickHullConvexHullLib.cpp */; }; - FFFFc68221c87fb7c68221c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc68221c87fb7c68221c8 /* convex/VolumeIntegration.cpp */; }; + FFFFfc1bc6b07fbcfc1bc6b0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDfc0c74907fbcfc0c7490 /* PhysXExtensions */; }; + FFFFfc8516007fbcfc851600 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8516007fbcfc851600 /* Adjacencies.cpp */; }; + FFFFfc8516687fbcfc851668 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8516687fbcfc851668 /* Cooking.cpp */; }; + FFFFfc8516d07fbcfc8516d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8516d07fbcfc8516d0 /* CookingUtils.cpp */; }; + FFFFfc8517387fbcfc851738 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8517387fbcfc851738 /* EdgeList.cpp */; }; + FFFFfc8517a07fbcfc8517a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8517a07fbcfc8517a0 /* MeshCleaner.cpp */; }; + FFFFfc8518087fbcfc851808 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8518087fbcfc851808 /* Quantizer.cpp */; }; + FFFFfc851ae07fbcfc851ae0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851ae07fbcfc851ae0 /* mesh/GrbTriangleMeshCooking.cpp */; }; + FFFFfc851b487fbcfc851b48 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851b487fbcfc851b48 /* mesh/HeightFieldCooking.cpp */; }; + FFFFfc851bb07fbcfc851bb0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851bb07fbcfc851bb0 /* mesh/RTreeCooking.cpp */; }; + FFFFfc851c187fbcfc851c18 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851c187fbcfc851c18 /* mesh/TriangleMeshBuilder.cpp */; }; + FFFFfc851e887fbcfc851e88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851e887fbcfc851e88 /* convex/BigConvexDataBuilder.cpp */; }; + FFFFfc851ef07fbcfc851ef0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851ef07fbcfc851ef0 /* convex/ConvexHullBuilder.cpp */; }; + FFFFfc851f587fbcfc851f58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851f587fbcfc851f58 /* convex/ConvexHullLib.cpp */; }; + FFFFfc851fc07fbcfc851fc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851fc07fbcfc851fc0 /* convex/ConvexHullUtils.cpp */; }; + FFFFfc8520287fbcfc852028 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8520287fbcfc852028 /* convex/ConvexMeshBuilder.cpp */; }; + FFFFfc8520907fbcfc852090 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8520907fbcfc852090 /* convex/ConvexPolygonsBuilder.cpp */; }; + FFFFfc8520f87fbcfc8520f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8520f87fbcfc8520f8 /* convex/InflationConvexHullLib.cpp */; }; + FFFFfc8521607fbcfc852160 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8521607fbcfc852160 /* convex/QuickHullConvexHullLib.cpp */; }; + FFFFfc8521c87fbcfc8521c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8521c87fbcfc8521c8 /* convex/VolumeIntegration.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc342e0007fb7c342e000 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc346bad07fb7c346bad0 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc346bb387fb7c346bb38 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc346bba07fb7c346bba0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc346bc087fb7c346bc08 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDc346bc707fb7c346bc70 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc346bcd87fb7c346bcd8 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc346bd407fb7c346bd40 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc68216007fb7c6821600 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68216687fb7c6821668 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68216d07fb7c68216d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68217387fb7c6821738 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68217a07fb7c68217a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68218087fb7c6821808 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68218707fb7c6821870 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; - FFFDc68218d87fb7c68218d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDc68219407fb7c6821940 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc68219a87fb7c68219a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6821a107fb7c6821a10 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6821a787fb7c6821a78 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6821ae07fb7c6821ae0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6821b487fb7c6821b48 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6821bb07fb7c6821bb0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6821c187fb7c6821c18 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6821c807fb7c6821c80 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6821ce87fb7c6821ce8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6821d507fb7c6821d50 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6821db87fb7c6821db8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6821e207fb7c6821e20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6821e887fb7c6821e88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6821ef07fb7c6821ef0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6821f587fb7c6821f58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6821fc07fb7c6821fc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68220287fb7c6822028 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68220907fb7c6822090 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68220f87fb7c68220f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68221607fb7c6822160 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68221c87fb7c68221c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68222307fb7c6822230 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc68222987fb7c6822298 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc68223007fb7c6822300 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDc68223687fb7c6822368 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc68223d07fb7c68223d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc68224387fb7c6822438 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc68224a07fb7c68224a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDc68225087fb7c6822508 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDc68225707fb7c6822570 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc07fd407fbcfc07fd40 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfc1bb2907fbcfc1bb290 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc1bb2f87fbcfc1bb2f8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc1bb3607fbcfc1bb360 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc1bb3c87fbcfc1bb3c8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc1bb4307fbcfc1bb430 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc1bb4987fbcfc1bb498 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc1bb5007fbcfc1bb500 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8516007fbcfc851600 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8516687fbcfc851668 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8516d07fbcfc8516d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8517387fbcfc851738 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8517a07fbcfc8517a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8518087fbcfc851808 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8518707fbcfc851870 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8518d87fbcfc8518d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8519407fbcfc851940 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8519a87fbcfc8519a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc851a107fbcfc851a10 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc851a787fbcfc851a78 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc851ae07fbcfc851ae0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc851b487fbcfc851b48 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc851bb07fbcfc851bb0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc851c187fbcfc851c18 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc851c807fbcfc851c80 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc851ce87fbcfc851ce8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc851d507fbcfc851d50 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc851db87fbcfc851db8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc851e207fbcfc851e20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc851e887fbcfc851e88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc851ef07fbcfc851ef0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc851f587fbcfc851f58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc851fc07fbcfc851fc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8520287fbcfc852028 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8520907fbcfc852090 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8520f87fbcfc8520f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8521607fbcfc852160 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8521c87fbcfc8521c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8522307fbcfc852230 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8522987fbcfc852298 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8523007fbcfc852300 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8523687fbcfc852368 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8523d07fbcfc8523d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8524387fbcfc852438 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8524a07fbcfc8524a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8525087fbcfc852508 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8525707fbcfc852570 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c342e0007fb7c342e000 /* Resources */ = { + FFF2fc07fd407fbcfc07fd40 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1282,7 +1282,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc342e0007fb7c342e000 /* Frameworks */ = { + FFFCfc07fd407fbcfc07fd40 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1292,29 +1292,29 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c342e0007fb7c342e000 /* Sources */ = { + FFF8fc07fd407fbcfc07fd40 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc68216007fb7c6821600, - FFFFc68216687fb7c6821668, - FFFFc68216d07fb7c68216d0, - FFFFc68217387fb7c6821738, - FFFFc68217a07fb7c68217a0, - FFFFc68218087fb7c6821808, - FFFFc6821ae07fb7c6821ae0, - FFFFc6821b487fb7c6821b48, - FFFFc6821bb07fb7c6821bb0, - FFFFc6821c187fb7c6821c18, - FFFFc6821e887fb7c6821e88, - FFFFc6821ef07fb7c6821ef0, - FFFFc6821f587fb7c6821f58, - FFFFc6821fc07fb7c6821fc0, - FFFFc68220287fb7c6822028, - FFFFc68220907fb7c6822090, - FFFFc68220f87fb7c68220f8, - FFFFc68221607fb7c6822160, - FFFFc68221c87fb7c68221c8, + FFFFfc8516007fbcfc851600, + FFFFfc8516687fbcfc851668, + FFFFfc8516d07fbcfc8516d0, + FFFFfc8517387fbcfc851738, + FFFFfc8517a07fbcfc8517a0, + FFFFfc8518087fbcfc851808, + FFFFfc851ae07fbcfc851ae0, + FFFFfc851b487fbcfc851b48, + FFFFfc851bb07fbcfc851bb0, + FFFFfc851c187fbcfc851c18, + FFFFfc851e887fbcfc851e88, + FFFFfc851ef07fbcfc851ef0, + FFFFfc851f587fbcfc851f58, + FFFFfc851fc07fbcfc851fc0, + FFFFfc8520287fbcfc852028, + FFFFfc8520907fbcfc852090, + FFFFfc8520f87fbcfc8520f8, + FFFFfc8521607fbcfc852160, + FFFFfc8521c87fbcfc8521c8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1323,515 +1323,515 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4c4b86cf07fb7c4b86cf0 /* PBXTargetDependency */ = { + FFF4fc1bc8107fbcfc1bc810 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc4b0e1607fb7c4b0e160 /* PhysXCommon */; - targetProxy = FFF5c4b0e1607fb7c4b0e160 /* PBXContainerItemProxy */; + target = FFFAfa8913407fbcfa891340 /* PhysXCommon */; + targetProxy = FFF5fa8913407fbcfa891340 /* PBXContainerItemProxy */; }; - FFF4c4b86f907fb7c4b86f90 /* PBXTargetDependency */ = { + FFF4fc1bc6b07fbcfc1bc6b0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc80a0d007fb7c80a0d00 /* PhysXExtensions */; - targetProxy = FFF5c80a0d007fb7c80a0d00 /* PBXContainerItemProxy */; + target = FFFAfc0c74907fbcfc0c7490 /* PhysXExtensions */; + targetProxy = FFF5fc0c74907fbcfc0c7490 /* PBXContainerItemProxy */; }; - FFF4c342df307fb7c342df30 /* PBXTargetDependency */ = { + FFF4fc0897807fbcfc089780 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc37144b07fb7c37144b0 /* PxFoundation */; - targetProxy = FFF5c37144b07fb7c37144b0 /* PBXContainerItemProxy */; + target = FFFAfa87f5207fbcfa87f520 /* PxFoundation */; + targetProxy = FFF5fa87f5207fbcfa87f520 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCommon */ - FFFFc3808e007fb7c3808e00 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc3808e007fb7c3808e00 /* src/CmBoxPruning.cpp */; }; - FFFFc3808e687fb7c3808e68 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc3808e687fb7c3808e68 /* src/CmCollection.cpp */; }; - FFFFc3808ed07fb7c3808ed0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc3808ed07fb7c3808ed0 /* src/CmMathUtils.cpp */; }; - FFFFc3808f387fb7c3808f38 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc3808f387fb7c3808f38 /* src/CmPtrTable.cpp */; }; - FFFFc3808fa07fb7c3808fa0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc3808fa07fb7c3808fa0 /* src/CmRadixSort.cpp */; }; - FFFFc38090087fb7c3809008 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc38090087fb7c3809008 /* src/CmRadixSortBuffered.cpp */; }; - FFFFc38090707fb7c3809070 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc38090707fb7c3809070 /* src/CmRenderOutput.cpp */; }; - FFFFc38090d87fb7c38090d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc38090d87fb7c38090d8 /* src/CmVisualization.cpp */; }; - FFFFc680afa87fb7c680afa8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680afa87fb7c680afa8 /* ../../Include/GeomUtils */; }; - FFFFc680e4e07fb7c680e4e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e4e07fb7c680e4e0 /* src/GuBounds.cpp */; }; - FFFFc680e5487fb7c680e548 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e5487fb7c680e548 /* src/GuBox.cpp */; }; - FFFFc680e5b07fb7c680e5b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e5b07fb7c680e5b0 /* src/GuCCTSweepTests.cpp */; }; - FFFFc680e6187fb7c680e618 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e6187fb7c680e618 /* src/GuCapsule.cpp */; }; - FFFFc680e6807fb7c680e680 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e6807fb7c680e680 /* src/GuGeometryQuery.cpp */; }; - FFFFc680e6e87fb7c680e6e8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e6e87fb7c680e6e8 /* src/GuGeometryUnion.cpp */; }; - FFFFc680e7507fb7c680e750 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e7507fb7c680e750 /* src/GuInternal.cpp */; }; - FFFFc680e7b87fb7c680e7b8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e7b87fb7c680e7b8 /* src/GuMTD.cpp */; }; - FFFFc680e8207fb7c680e820 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e8207fb7c680e820 /* src/GuMeshFactory.cpp */; }; - FFFFc680e8887fb7c680e888 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e8887fb7c680e888 /* src/GuMetaData.cpp */; }; - FFFFc680e8f07fb7c680e8f0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e8f07fb7c680e8f0 /* src/GuOverlapTests.cpp */; }; - FFFFc680e9587fb7c680e958 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e9587fb7c680e958 /* src/GuRaycastTests.cpp */; }; - FFFFc680e9c07fb7c680e9c0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680e9c07fb7c680e9c0 /* src/GuSerialize.cpp */; }; - FFFFc680ea287fb7c680ea28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680ea287fb7c680ea28 /* src/GuSweepMTD.cpp */; }; - FFFFc680ea907fb7c680ea90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680ea907fb7c680ea90 /* src/GuSweepSharedTests.cpp */; }; - FFFFc680eaf87fb7c680eaf8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680eaf87fb7c680eaf8 /* src/GuSweepTests.cpp */; }; - FFFFc680eb607fb7c680eb60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680eb607fb7c680eb60 /* src/contact/GuContactBoxBox.cpp */; }; - FFFFc680ebc87fb7c680ebc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680ebc87fb7c680ebc8 /* src/contact/GuContactCapsuleBox.cpp */; }; - FFFFc680ec307fb7c680ec30 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680ec307fb7c680ec30 /* src/contact/GuContactCapsuleCapsule.cpp */; }; - FFFFc680ec987fb7c680ec98 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680ec987fb7c680ec98 /* src/contact/GuContactCapsuleConvex.cpp */; }; - FFFFc680ed007fb7c680ed00 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680ed007fb7c680ed00 /* src/contact/GuContactCapsuleMesh.cpp */; }; - FFFFc680ed687fb7c680ed68 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680ed687fb7c680ed68 /* src/contact/GuContactConvexConvex.cpp */; }; - FFFFc680edd07fb7c680edd0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680edd07fb7c680edd0 /* src/contact/GuContactConvexMesh.cpp */; }; - FFFFc680ee387fb7c680ee38 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680ee387fb7c680ee38 /* src/contact/GuContactPlaneBox.cpp */; }; - FFFFc680eea07fb7c680eea0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680eea07fb7c680eea0 /* src/contact/GuContactPlaneCapsule.cpp */; }; - FFFFc680ef087fb7c680ef08 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680ef087fb7c680ef08 /* src/contact/GuContactPlaneConvex.cpp */; }; - FFFFc680ef707fb7c680ef70 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680ef707fb7c680ef70 /* src/contact/GuContactPolygonPolygon.cpp */; }; - FFFFc680efd87fb7c680efd8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680efd87fb7c680efd8 /* src/contact/GuContactSphereBox.cpp */; }; - FFFFc680f0407fb7c680f040 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f0407fb7c680f040 /* src/contact/GuContactSphereCapsule.cpp */; }; - FFFFc680f0a87fb7c680f0a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f0a87fb7c680f0a8 /* src/contact/GuContactSphereMesh.cpp */; }; - FFFFc680f1107fb7c680f110 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f1107fb7c680f110 /* src/contact/GuContactSpherePlane.cpp */; }; - FFFFc680f1787fb7c680f178 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f1787fb7c680f178 /* src/contact/GuContactSphereSphere.cpp */; }; - FFFFc680f1e07fb7c680f1e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f1e07fb7c680f1e0 /* src/contact/GuFeatureCode.cpp */; }; - FFFFc680f2487fb7c680f248 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f2487fb7c680f248 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; - FFFFc680f2b07fb7c680f2b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f2b07fb7c680f2b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; - FFFFc680f3187fb7c680f318 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f3187fb7c680f318 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; - FFFFc680f3807fb7c680f380 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f3807fb7c680f380 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; - FFFFc680f3e87fb7c680f3e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f3e87fb7c680f3e8 /* src/common/GuBarycentricCoordinates.cpp */; }; - FFFFc680f4507fb7c680f450 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f4507fb7c680f450 /* src/common/GuSeparatingAxes.cpp */; }; - FFFFc680f4b87fb7c680f4b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f4b87fb7c680f4b8 /* src/convex/GuBigConvexData.cpp */; }; - FFFFc680f5207fb7c680f520 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f5207fb7c680f520 /* src/convex/GuConvexHelper.cpp */; }; - FFFFc680f5887fb7c680f588 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f5887fb7c680f588 /* src/convex/GuConvexMesh.cpp */; }; - FFFFc680f5f07fb7c680f5f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f5f07fb7c680f5f0 /* src/convex/GuConvexSupportTable.cpp */; }; - FFFFc680f6587fb7c680f658 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f6587fb7c680f658 /* src/convex/GuConvexUtilsInternal.cpp */; }; - FFFFc680f6c07fb7c680f6c0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f6c07fb7c680f6c0 /* src/convex/GuHillClimbing.cpp */; }; - FFFFc680f7287fb7c680f728 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f7287fb7c680f728 /* src/convex/GuShapeConvex.cpp */; }; - FFFFc680f7907fb7c680f790 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f7907fb7c680f790 /* src/distance/GuDistancePointBox.cpp */; }; - FFFFc680f7f87fb7c680f7f8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f7f87fb7c680f7f8 /* src/distance/GuDistancePointTriangle.cpp */; }; - FFFFc680f8607fb7c680f860 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f8607fb7c680f860 /* src/distance/GuDistanceSegmentBox.cpp */; }; - FFFFc680f8c87fb7c680f8c8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f8c87fb7c680f8c8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; - FFFFc680f9307fb7c680f930 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f9307fb7c680f930 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; - FFFFc680f9987fb7c680f998 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680f9987fb7c680f998 /* src/sweep/GuSweepBoxBox.cpp */; }; - FFFFc680fa007fb7c680fa00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fa007fb7c680fa00 /* src/sweep/GuSweepBoxSphere.cpp */; }; - FFFFc680fa687fb7c680fa68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fa687fb7c680fa68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; - FFFFc680fad07fb7c680fad0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fad07fb7c680fad0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; - FFFFc680fb387fb7c680fb38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fb387fb7c680fb38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; - FFFFc680fba07fb7c680fba0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fba07fb7c680fba0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; - FFFFc680fc087fb7c680fc08 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fc087fb7c680fc08 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; - FFFFc680fc707fb7c680fc70 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fc707fb7c680fc70 /* src/sweep/GuSweepSphereCapsule.cpp */; }; - FFFFc680fcd87fb7c680fcd8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fcd87fb7c680fcd8 /* src/sweep/GuSweepSphereSphere.cpp */; }; - FFFFc680fd407fb7c680fd40 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fd407fb7c680fd40 /* src/sweep/GuSweepSphereTriangle.cpp */; }; - FFFFc680fda87fb7c680fda8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fda87fb7c680fda8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; - FFFFc680fe107fb7c680fe10 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fe107fb7c680fe10 /* src/gjk/GuEPA.cpp */; }; - FFFFc680fe787fb7c680fe78 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fe787fb7c680fe78 /* src/gjk/GuGJKSimplex.cpp */; }; - FFFFc680fee07fb7c680fee0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680fee07fb7c680fee0 /* src/gjk/GuGJKTest.cpp */; }; - FFFFc680ff487fb7c680ff48 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680ff487fb7c680ff48 /* src/intersection/GuIntersectionBoxBox.cpp */; }; - FFFFc680ffb07fb7c680ffb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc680ffb07fb7c680ffb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; - FFFFc68100187fb7c6810018 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68100187fb7c6810018 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; - FFFFc68100807fb7c6810080 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68100807fb7c6810080 /* src/intersection/GuIntersectionRayBox.cpp */; }; - FFFFc68100e87fb7c68100e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68100e87fb7c68100e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; - FFFFc68101507fb7c6810150 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68101507fb7c6810150 /* src/intersection/GuIntersectionRaySphere.cpp */; }; - FFFFc68101b87fb7c68101b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68101b87fb7c68101b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; - FFFFc68102207fb7c6810220 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68102207fb7c6810220 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; - FFFFc68102887fb7c6810288 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68102887fb7c6810288 /* src/mesh/GuBV32.cpp */; }; - FFFFc68102f07fb7c68102f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68102f07fb7c68102f0 /* src/mesh/GuBV32Build.cpp */; }; - FFFFc68103587fb7c6810358 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68103587fb7c6810358 /* src/mesh/GuBV4.cpp */; }; - FFFFc68103c07fb7c68103c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68103c07fb7c68103c0 /* src/mesh/GuBV4Build.cpp */; }; - FFFFc68104287fb7c6810428 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68104287fb7c6810428 /* src/mesh/GuBV4_AABBSweep.cpp */; }; - FFFFc68104907fb7c6810490 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68104907fb7c6810490 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; - FFFFc68104f87fb7c68104f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68104f87fb7c68104f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; - FFFFc68105607fb7c6810560 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68105607fb7c6810560 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; - FFFFc68105c87fb7c68105c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68105c87fb7c68105c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; - FFFFc68106307fb7c6810630 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68106307fb7c6810630 /* src/mesh/GuBV4_Raycast.cpp */; }; - FFFFc68106987fb7c6810698 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68106987fb7c6810698 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; - FFFFc68107007fb7c6810700 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68107007fb7c6810700 /* src/mesh/GuBV4_SphereSweep.cpp */; }; - FFFFc68107687fb7c6810768 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68107687fb7c6810768 /* src/mesh/GuMeshQuery.cpp */; }; - FFFFc68107d07fb7c68107d0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68107d07fb7c68107d0 /* src/mesh/GuMidphaseBV4.cpp */; }; - FFFFc68108387fb7c6810838 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68108387fb7c6810838 /* src/mesh/GuMidphaseRTree.cpp */; }; - FFFFc68108a07fb7c68108a0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68108a07fb7c68108a0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; - FFFFc68109087fb7c6810908 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68109087fb7c6810908 /* src/mesh/GuRTree.cpp */; }; - FFFFc68109707fb7c6810970 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68109707fb7c6810970 /* src/mesh/GuRTreeQueries.cpp */; }; - FFFFc68109d87fb7c68109d8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68109d87fb7c68109d8 /* src/mesh/GuSweepsMesh.cpp */; }; - FFFFc6810a407fb7c6810a40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810a407fb7c6810a40 /* src/mesh/GuTriangleMesh.cpp */; }; - FFFFc6810aa87fb7c6810aa8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810aa87fb7c6810aa8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; - FFFFc6810b107fb7c6810b10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810b107fb7c6810b10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; - FFFFc6810b787fb7c6810b78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810b787fb7c6810b78 /* src/hf/GuHeightField.cpp */; }; - FFFFc6810be07fb7c6810be0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810be07fb7c6810be0 /* src/hf/GuHeightFieldUtil.cpp */; }; - FFFFc6810c487fb7c6810c48 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810c487fb7c6810c48 /* src/hf/GuOverlapTestsHF.cpp */; }; - FFFFc6810cb07fb7c6810cb0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810cb07fb7c6810cb0 /* src/hf/GuSweepsHF.cpp */; }; - FFFFc6810d187fb7c6810d18 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810d187fb7c6810d18 /* src/pcm/GuPCMContactBoxBox.cpp */; }; - FFFFc6810d807fb7c6810d80 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810d807fb7c6810d80 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; - FFFFc6810de87fb7c6810de8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810de87fb7c6810de8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; - FFFFc6810e507fb7c6810e50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810e507fb7c6810e50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; - FFFFc6810eb87fb7c6810eb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810eb87fb7c6810eb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; - FFFFc6810f207fb7c6810f20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810f207fb7c6810f20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; - FFFFc6810f887fb7c6810f88 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810f887fb7c6810f88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; - FFFFc6810ff07fb7c6810ff0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc6810ff07fb7c6810ff0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; - FFFFc68110587fb7c6811058 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68110587fb7c6811058 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; - FFFFc68110c07fb7c68110c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68110c07fb7c68110c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; - FFFFc68111287fb7c6811128 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68111287fb7c6811128 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; - FFFFc68111907fb7c6811190 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68111907fb7c6811190 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; - FFFFc68111f87fb7c68111f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68111f87fb7c68111f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; - FFFFc68112607fb7c6811260 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68112607fb7c6811260 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; - FFFFc68112c87fb7c68112c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68112c87fb7c68112c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; - FFFFc68113307fb7c6811330 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68113307fb7c6811330 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; - FFFFc68113987fb7c6811398 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68113987fb7c6811398 /* src/pcm/GuPCMContactSphereBox.cpp */; }; - FFFFc68114007fb7c6811400 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68114007fb7c6811400 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; - FFFFc68114687fb7c6811468 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68114687fb7c6811468 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; - FFFFc68114d07fb7c68114d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68114d07fb7c68114d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; - FFFFc68115387fb7c6811538 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68115387fb7c6811538 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; - FFFFc68115a07fb7c68115a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68115a07fb7c68115a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; - FFFFc68116087fb7c6811608 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68116087fb7c6811608 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; - FFFFc68116707fb7c6811670 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68116707fb7c6811670 /* src/pcm/GuPCMShapeConvex.cpp */; }; - FFFFc68116d87fb7c68116d8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68116d87fb7c68116d8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; - FFFFc68117407fb7c6811740 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68117407fb7c6811740 /* src/pcm/GuPersistentContactManifold.cpp */; }; - FFFFc68117a87fb7c68117a8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68117a87fb7c68117a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; - FFFFc68118107fb7c6811810 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc68118107fb7c6811810 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; + FFFFfa18ee007fbcfa18ee00 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18ee007fbcfa18ee00 /* src/CmBoxPruning.cpp */; }; + FFFFfa18ee687fbcfa18ee68 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18ee687fbcfa18ee68 /* src/CmCollection.cpp */; }; + FFFFfa18eed07fbcfa18eed0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18eed07fbcfa18eed0 /* src/CmMathUtils.cpp */; }; + FFFFfa18ef387fbcfa18ef38 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18ef387fbcfa18ef38 /* src/CmPtrTable.cpp */; }; + FFFFfa18efa07fbcfa18efa0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18efa07fbcfa18efa0 /* src/CmRadixSort.cpp */; }; + FFFFfa18f0087fbcfa18f008 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18f0087fbcfa18f008 /* src/CmRadixSortBuffered.cpp */; }; + FFFFfa18f0707fbcfa18f070 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18f0707fbcfa18f070 /* src/CmRenderOutput.cpp */; }; + FFFFfa18f0d87fbcfa18f0d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18f0d87fbcfa18f0d8 /* src/CmVisualization.cpp */; }; + FFFFfb0013a87fbcfb0013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0013a87fbcfb0013a8 /* ../../Include/GeomUtils */; }; + FFFFfb0048e07fbcfb0048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0048e07fbcfb0048e0 /* src/GuBounds.cpp */; }; + FFFFfb0049487fbcfb004948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0049487fbcfb004948 /* src/GuBox.cpp */; }; + FFFFfb0049b07fbcfb0049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0049b07fbcfb0049b0 /* src/GuCCTSweepTests.cpp */; }; + FFFFfb004a187fbcfb004a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004a187fbcfb004a18 /* src/GuCapsule.cpp */; }; + FFFFfb004a807fbcfb004a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004a807fbcfb004a80 /* src/GuGeometryQuery.cpp */; }; + FFFFfb004ae87fbcfb004ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004ae87fbcfb004ae8 /* src/GuGeometryUnion.cpp */; }; + FFFFfb004b507fbcfb004b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004b507fbcfb004b50 /* src/GuInternal.cpp */; }; + FFFFfb004bb87fbcfb004bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004bb87fbcfb004bb8 /* src/GuMTD.cpp */; }; + FFFFfb004c207fbcfb004c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004c207fbcfb004c20 /* src/GuMeshFactory.cpp */; }; + FFFFfb004c887fbcfb004c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004c887fbcfb004c88 /* src/GuMetaData.cpp */; }; + FFFFfb004cf07fbcfb004cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004cf07fbcfb004cf0 /* src/GuOverlapTests.cpp */; }; + FFFFfb004d587fbcfb004d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004d587fbcfb004d58 /* src/GuRaycastTests.cpp */; }; + FFFFfb004dc07fbcfb004dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004dc07fbcfb004dc0 /* src/GuSerialize.cpp */; }; + FFFFfb004e287fbcfb004e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004e287fbcfb004e28 /* src/GuSweepMTD.cpp */; }; + FFFFfb004e907fbcfb004e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004e907fbcfb004e90 /* src/GuSweepSharedTests.cpp */; }; + FFFFfb004ef87fbcfb004ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004ef87fbcfb004ef8 /* src/GuSweepTests.cpp */; }; + FFFFfb004f607fbcfb004f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004f607fbcfb004f60 /* src/contact/GuContactBoxBox.cpp */; }; + FFFFfb004fc87fbcfb004fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004fc87fbcfb004fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; + FFFFfb0050307fbcfb005030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0050307fbcfb005030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; + FFFFfb0050987fbcfb005098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0050987fbcfb005098 /* src/contact/GuContactCapsuleConvex.cpp */; }; + FFFFfb0051007fbcfb005100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0051007fbcfb005100 /* src/contact/GuContactCapsuleMesh.cpp */; }; + FFFFfb0051687fbcfb005168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0051687fbcfb005168 /* src/contact/GuContactConvexConvex.cpp */; }; + FFFFfb0051d07fbcfb0051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0051d07fbcfb0051d0 /* src/contact/GuContactConvexMesh.cpp */; }; + FFFFfb0052387fbcfb005238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0052387fbcfb005238 /* src/contact/GuContactPlaneBox.cpp */; }; + FFFFfb0052a07fbcfb0052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0052a07fbcfb0052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; + FFFFfb0053087fbcfb005308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0053087fbcfb005308 /* src/contact/GuContactPlaneConvex.cpp */; }; + FFFFfb0053707fbcfb005370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0053707fbcfb005370 /* src/contact/GuContactPolygonPolygon.cpp */; }; + FFFFfb0053d87fbcfb0053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0053d87fbcfb0053d8 /* src/contact/GuContactSphereBox.cpp */; }; + FFFFfb0054407fbcfb005440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0054407fbcfb005440 /* src/contact/GuContactSphereCapsule.cpp */; }; + FFFFfb0054a87fbcfb0054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0054a87fbcfb0054a8 /* src/contact/GuContactSphereMesh.cpp */; }; + FFFFfb0055107fbcfb005510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0055107fbcfb005510 /* src/contact/GuContactSpherePlane.cpp */; }; + FFFFfb0055787fbcfb005578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0055787fbcfb005578 /* src/contact/GuContactSphereSphere.cpp */; }; + FFFFfb0055e07fbcfb0055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0055e07fbcfb0055e0 /* src/contact/GuFeatureCode.cpp */; }; + FFFFfb0056487fbcfb005648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0056487fbcfb005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; + FFFFfb0056b07fbcfb0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0056b07fbcfb0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; + FFFFfb0057187fbcfb005718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0057187fbcfb005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; + FFFFfb0057807fbcfb005780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0057807fbcfb005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; + FFFFfb0057e87fbcfb0057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0057e87fbcfb0057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; + FFFFfb0058507fbcfb005850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0058507fbcfb005850 /* src/common/GuSeparatingAxes.cpp */; }; + FFFFfb0058b87fbcfb0058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0058b87fbcfb0058b8 /* src/convex/GuBigConvexData.cpp */; }; + FFFFfb0059207fbcfb005920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0059207fbcfb005920 /* src/convex/GuConvexHelper.cpp */; }; + FFFFfb0059887fbcfb005988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0059887fbcfb005988 /* src/convex/GuConvexMesh.cpp */; }; + FFFFfb0059f07fbcfb0059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0059f07fbcfb0059f0 /* src/convex/GuConvexSupportTable.cpp */; }; + FFFFfb005a587fbcfb005a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005a587fbcfb005a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; + FFFFfb005ac07fbcfb005ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005ac07fbcfb005ac0 /* src/convex/GuHillClimbing.cpp */; }; + FFFFfb005b287fbcfb005b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005b287fbcfb005b28 /* src/convex/GuShapeConvex.cpp */; }; + FFFFfb005b907fbcfb005b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005b907fbcfb005b90 /* src/distance/GuDistancePointBox.cpp */; }; + FFFFfb005bf87fbcfb005bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005bf87fbcfb005bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; + FFFFfb005c607fbcfb005c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005c607fbcfb005c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; + FFFFfb005cc87fbcfb005cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005cc87fbcfb005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; + FFFFfb005d307fbcfb005d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005d307fbcfb005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; + FFFFfb005d987fbcfb005d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005d987fbcfb005d98 /* src/sweep/GuSweepBoxBox.cpp */; }; + FFFFfb005e007fbcfb005e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005e007fbcfb005e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; + FFFFfb005e687fbcfb005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005e687fbcfb005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; + FFFFfb005ed07fbcfb005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005ed07fbcfb005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; + FFFFfb005f387fbcfb005f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005f387fbcfb005f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; + FFFFfb005fa07fbcfb005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005fa07fbcfb005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; + FFFFfb0060087fbcfb006008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0060087fbcfb006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; + FFFFfb0060707fbcfb006070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0060707fbcfb006070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; + FFFFfb0060d87fbcfb0060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0060d87fbcfb0060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; + FFFFfb0061407fbcfb006140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0061407fbcfb006140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; + FFFFfb0061a87fbcfb0061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0061a87fbcfb0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; + FFFFfb0062107fbcfb006210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0062107fbcfb006210 /* src/gjk/GuEPA.cpp */; }; + FFFFfb0062787fbcfb006278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0062787fbcfb006278 /* src/gjk/GuGJKSimplex.cpp */; }; + FFFFfb0062e07fbcfb0062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0062e07fbcfb0062e0 /* src/gjk/GuGJKTest.cpp */; }; + FFFFfb0063487fbcfb006348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0063487fbcfb006348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; + FFFFfb0063b07fbcfb0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0063b07fbcfb0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; + FFFFfb0064187fbcfb006418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0064187fbcfb006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; + FFFFfb0064807fbcfb006480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0064807fbcfb006480 /* src/intersection/GuIntersectionRayBox.cpp */; }; + FFFFfb0064e87fbcfb0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0064e87fbcfb0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; + FFFFfb0065507fbcfb006550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0065507fbcfb006550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; + FFFFfb0065b87fbcfb0065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0065b87fbcfb0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; + FFFFfb0066207fbcfb006620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0066207fbcfb006620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; + FFFFfb0066887fbcfb006688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0066887fbcfb006688 /* src/mesh/GuBV32.cpp */; }; + FFFFfb0066f07fbcfb0066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0066f07fbcfb0066f0 /* src/mesh/GuBV32Build.cpp */; }; + FFFFfb0067587fbcfb006758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0067587fbcfb006758 /* src/mesh/GuBV4.cpp */; }; + FFFFfb0067c07fbcfb0067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0067c07fbcfb0067c0 /* src/mesh/GuBV4Build.cpp */; }; + FFFFfb0068287fbcfb006828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0068287fbcfb006828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; + FFFFfb0068907fbcfb006890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0068907fbcfb006890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; + FFFFfb0068f87fbcfb0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0068f87fbcfb0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; + FFFFfb0069607fbcfb006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0069607fbcfb006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; + FFFFfb0069c87fbcfb0069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0069c87fbcfb0069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; + FFFFfb006a307fbcfb006a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006a307fbcfb006a30 /* src/mesh/GuBV4_Raycast.cpp */; }; + FFFFfb006a987fbcfb006a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006a987fbcfb006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; + FFFFfb006b007fbcfb006b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006b007fbcfb006b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; + FFFFfb006b687fbcfb006b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006b687fbcfb006b68 /* src/mesh/GuMeshQuery.cpp */; }; + FFFFfb006bd07fbcfb006bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006bd07fbcfb006bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; + FFFFfb006c387fbcfb006c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006c387fbcfb006c38 /* src/mesh/GuMidphaseRTree.cpp */; }; + FFFFfb006ca07fbcfb006ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006ca07fbcfb006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; + FFFFfb006d087fbcfb006d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006d087fbcfb006d08 /* src/mesh/GuRTree.cpp */; }; + FFFFfb006d707fbcfb006d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006d707fbcfb006d70 /* src/mesh/GuRTreeQueries.cpp */; }; + FFFFfb006dd87fbcfb006dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006dd87fbcfb006dd8 /* src/mesh/GuSweepsMesh.cpp */; }; + FFFFfb006e407fbcfb006e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006e407fbcfb006e40 /* src/mesh/GuTriangleMesh.cpp */; }; + FFFFfb006ea87fbcfb006ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006ea87fbcfb006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; + FFFFfb006f107fbcfb006f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006f107fbcfb006f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; + FFFFfb006f787fbcfb006f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006f787fbcfb006f78 /* src/hf/GuHeightField.cpp */; }; + FFFFfb006fe07fbcfb006fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006fe07fbcfb006fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; + FFFFfb0070487fbcfb007048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0070487fbcfb007048 /* src/hf/GuOverlapTestsHF.cpp */; }; + FFFFfb0070b07fbcfb0070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0070b07fbcfb0070b0 /* src/hf/GuSweepsHF.cpp */; }; + FFFFfb0071187fbcfb007118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0071187fbcfb007118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; + FFFFfb0071807fbcfb007180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0071807fbcfb007180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; + FFFFfb0071e87fbcfb0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0071e87fbcfb0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; + FFFFfb0072507fbcfb007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0072507fbcfb007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; + FFFFfb0072b87fbcfb0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0072b87fbcfb0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; + FFFFfb0073207fbcfb007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0073207fbcfb007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; + FFFFfb0073887fbcfb007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0073887fbcfb007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; + FFFFfb0073f07fbcfb0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0073f07fbcfb0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; + FFFFfb0074587fbcfb007458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0074587fbcfb007458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; + FFFFfb0074c07fbcfb0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0074c07fbcfb0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; + FFFFfb0075287fbcfb007528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0075287fbcfb007528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; + FFFFfb0075907fbcfb007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0075907fbcfb007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; + FFFFfb0075f87fbcfb0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0075f87fbcfb0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; + FFFFfb0076607fbcfb007660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0076607fbcfb007660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; + FFFFfb0076c87fbcfb0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0076c87fbcfb0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; + FFFFfb0077307fbcfb007730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0077307fbcfb007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; + FFFFfb0077987fbcfb007798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0077987fbcfb007798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; + FFFFfb0078007fbcfb007800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0078007fbcfb007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; + FFFFfb0078687fbcfb007868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0078687fbcfb007868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; + FFFFfb0078d07fbcfb0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0078d07fbcfb0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; + FFFFfb0079387fbcfb007938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0079387fbcfb007938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; + FFFFfb0079a07fbcfb0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0079a07fbcfb0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; + FFFFfb007a087fbcfb007a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb007a087fbcfb007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; + FFFFfb007a707fbcfb007a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb007a707fbcfb007a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; + FFFFfb007ad87fbcfb007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb007ad87fbcfb007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; + FFFFfb007b407fbcfb007b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb007b407fbcfb007b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; + FFFFfb007ba87fbcfb007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb007ba87fbcfb007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; + FFFFfb007c107fbcfb007c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb007c107fbcfb007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc4b0e1607fb7c4b0e160 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc401fe007fb7c401fe00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc401fe687fb7c401fe68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDc401fed07fb7c401fed0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc401ff387fb7c401ff38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc401ffa07fb7c401ffa0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40200087fb7c4020008 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40200707fb7c4020070 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40200d87fb7c40200d8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40201407fb7c4020140 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40201a87fb7c40201a8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40202107fb7c4020210 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40202787fb7c4020278 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40202e07fb7c40202e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40203487fb7c4020348 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40203b07fb7c40203b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40204187fb7c4020418 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40204807fb7c4020480 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40204e87fb7c40204e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40205507fb7c4020550 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40205b87fb7c40205b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40206207fb7c4020620 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40206887fb7c4020688 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40206f07fb7c40206f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40207587fb7c4020758 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40207c07fb7c40207c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40208287fb7c4020828 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40208907fb7c4020890 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40208f87fb7c40208f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40209607fb7c4020960 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40209c87fb7c40209c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4020a307fb7c4020a30 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4020a987fb7c4020a98 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4020b007fb7c4020b00 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3808e007fb7c3808e00 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3808e687fb7c3808e68 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3808ed07fb7c3808ed0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3808f387fb7c3808f38 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3808fa07fb7c3808fa0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38090087fb7c3809008 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38090707fb7c3809070 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38090d87fb7c38090d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38091407fb7c3809140 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38091a87fb7c38091a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38092107fb7c3809210 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38092787fb7c3809278 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38092e07fb7c38092e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38093487fb7c3809348 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38093b07fb7c38093b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38094187fb7c3809418 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38094807fb7c3809480 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38094e87fb7c38094e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38095507fb7c3809550 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38095b87fb7c38095b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38096207fb7c3809620 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38096887fb7c3809688 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38096f07fb7c38096f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38097587fb7c3809758 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38097c07fb7c38097c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38098287fb7c3809828 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38098907fb7c3809890 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38098f87fb7c38098f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38099607fb7c3809960 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38099c87fb7c38099c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3809a307fb7c3809a30 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3809a987fb7c3809a98 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3809b007fb7c3809b00 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3809b687fb7c3809b68 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3809bd07fb7c3809bd0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3809c387fb7c3809c38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680ac007fb7c680ac00 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680ac687fb7c680ac68 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680acd07fb7c680acd0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680ad387fb7c680ad38 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680ada07fb7c680ada0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680ae087fb7c680ae08 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680ae707fb7c680ae70 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680aed87fb7c680aed8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680af407fb7c680af40 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680afa87fb7c680afa8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; - FFFDc680b0107fb7c680b010 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b0787fb7c680b078 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b0e07fb7c680b0e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b1487fb7c680b148 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b1b07fb7c680b1b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b2187fb7c680b218 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b2807fb7c680b280 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b2e87fb7c680b2e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b3507fb7c680b350 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b3b87fb7c680b3b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b4207fb7c680b420 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b4887fb7c680b488 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b4f07fb7c680b4f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b5587fb7c680b558 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b5c07fb7c680b5c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b6287fb7c680b628 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b6907fb7c680b690 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b6f87fb7c680b6f8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b7607fb7c680b760 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b7c87fb7c680b7c8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b8307fb7c680b830 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b8987fb7c680b898 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b9007fb7c680b900 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b9687fb7c680b968 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680b9d07fb7c680b9d0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680ba387fb7c680ba38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680baa07fb7c680baa0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680bb087fb7c680bb08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680bb707fb7c680bb70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680bbd87fb7c680bbd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680bc407fb7c680bc40 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680bca87fb7c680bca8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680bd107fb7c680bd10 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680bd787fb7c680bd78 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680bde07fb7c680bde0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680be487fb7c680be48 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680beb07fb7c680beb0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680bf187fb7c680bf18 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680bf807fb7c680bf80 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680bfe87fb7c680bfe8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c0507fb7c680c050 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c0b87fb7c680c0b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c1207fb7c680c120 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c1887fb7c680c188 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c1f07fb7c680c1f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c2587fb7c680c258 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c2c07fb7c680c2c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c3287fb7c680c328 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c3907fb7c680c390 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c3f87fb7c680c3f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c4607fb7c680c460 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c4c87fb7c680c4c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c5307fb7c680c530 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c5987fb7c680c598 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c6007fb7c680c600 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c6687fb7c680c668 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c6d07fb7c680c6d0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c7387fb7c680c738 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c7a07fb7c680c7a0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c8087fb7c680c808 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c8707fb7c680c870 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c8d87fb7c680c8d8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c9407fb7c680c940 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680c9a87fb7c680c9a8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680ca107fb7c680ca10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680ca787fb7c680ca78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680cae07fb7c680cae0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680cb487fb7c680cb48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680cbb07fb7c680cbb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680cc187fb7c680cc18 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680cc807fb7c680cc80 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680cce87fb7c680cce8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680cd507fb7c680cd50 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680cdb87fb7c680cdb8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680ce207fb7c680ce20 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680ce887fb7c680ce88 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680cef07fb7c680cef0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680cf587fb7c680cf58 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680cfc07fb7c680cfc0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d0287fb7c680d028 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d0907fb7c680d090 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d0f87fb7c680d0f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d1607fb7c680d160 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d1c87fb7c680d1c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d2307fb7c680d230 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d2987fb7c680d298 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d3007fb7c680d300 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d3687fb7c680d368 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d3d07fb7c680d3d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d4387fb7c680d438 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d4a07fb7c680d4a0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d5087fb7c680d508 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d5707fb7c680d570 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d5d87fb7c680d5d8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d6407fb7c680d640 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d6a87fb7c680d6a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d7107fb7c680d710 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d7787fb7c680d778 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d7e07fb7c680d7e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d8487fb7c680d848 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d8b07fb7c680d8b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d9187fb7c680d918 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d9807fb7c680d980 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680d9e87fb7c680d9e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680da507fb7c680da50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680dab87fb7c680dab8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680db207fb7c680db20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680db887fb7c680db88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680dbf07fb7c680dbf0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680dc587fb7c680dc58 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680dcc07fb7c680dcc0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680dd287fb7c680dd28 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680dd907fb7c680dd90 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680ddf87fb7c680ddf8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680de607fb7c680de60 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680dec87fb7c680dec8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680df307fb7c680df30 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680df987fb7c680df98 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e0007fb7c680e000 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e0687fb7c680e068 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e0d07fb7c680e0d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e1387fb7c680e138 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e1a07fb7c680e1a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e2087fb7c680e208 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e2707fb7c680e270 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e2d87fb7c680e2d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e3407fb7c680e340 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e3a87fb7c680e3a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e4107fb7c680e410 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e4787fb7c680e478 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc680e4e07fb7c680e4e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680e5487fb7c680e548 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680e5b07fb7c680e5b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680e6187fb7c680e618 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680e6807fb7c680e680 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680e6e87fb7c680e6e8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680e7507fb7c680e750 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680e7b87fb7c680e7b8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680e8207fb7c680e820 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680e8887fb7c680e888 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680e8f07fb7c680e8f0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680e9587fb7c680e958 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680e9c07fb7c680e9c0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680ea287fb7c680ea28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680ea907fb7c680ea90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680eaf87fb7c680eaf8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680eb607fb7c680eb60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680ebc87fb7c680ebc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680ec307fb7c680ec30 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680ec987fb7c680ec98 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680ed007fb7c680ed00 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680ed687fb7c680ed68 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680edd07fb7c680edd0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680ee387fb7c680ee38 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680eea07fb7c680eea0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680ef087fb7c680ef08 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680ef707fb7c680ef70 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680efd87fb7c680efd8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f0407fb7c680f040 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f0a87fb7c680f0a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f1107fb7c680f110 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f1787fb7c680f178 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f1e07fb7c680f1e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f2487fb7c680f248 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f2b07fb7c680f2b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f3187fb7c680f318 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f3807fb7c680f380 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f3e87fb7c680f3e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f4507fb7c680f450 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f4b87fb7c680f4b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f5207fb7c680f520 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f5887fb7c680f588 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f5f07fb7c680f5f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f6587fb7c680f658 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f6c07fb7c680f6c0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f7287fb7c680f728 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f7907fb7c680f790 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f7f87fb7c680f7f8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f8607fb7c680f860 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f8c87fb7c680f8c8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f9307fb7c680f930 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680f9987fb7c680f998 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fa007fb7c680fa00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fa687fb7c680fa68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fad07fb7c680fad0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fb387fb7c680fb38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fba07fb7c680fba0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fc087fb7c680fc08 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fc707fb7c680fc70 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fcd87fb7c680fcd8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fd407fb7c680fd40 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fda87fb7c680fda8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fe107fb7c680fe10 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fe787fb7c680fe78 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680fee07fb7c680fee0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680ff487fb7c680ff48 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc680ffb07fb7c680ffb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68100187fb7c6810018 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68100807fb7c6810080 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68100e87fb7c68100e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68101507fb7c6810150 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68101b87fb7c68101b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68102207fb7c6810220 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68102887fb7c6810288 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68102f07fb7c68102f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68103587fb7c6810358 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68103c07fb7c68103c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68104287fb7c6810428 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68104907fb7c6810490 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68104f87fb7c68104f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68105607fb7c6810560 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68105c87fb7c68105c8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68106307fb7c6810630 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68106987fb7c6810698 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68107007fb7c6810700 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68107687fb7c6810768 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68107d07fb7c68107d0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68108387fb7c6810838 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68108a07fb7c68108a0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68109087fb7c6810908 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68109707fb7c6810970 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68109d87fb7c68109d8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810a407fb7c6810a40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810aa87fb7c6810aa8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810b107fb7c6810b10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810b787fb7c6810b78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810be07fb7c6810be0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810c487fb7c6810c48 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810cb07fb7c6810cb0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810d187fb7c6810d18 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810d807fb7c6810d80 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810de87fb7c6810de8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810e507fb7c6810e50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810eb87fb7c6810eb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810f207fb7c6810f20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810f887fb7c6810f88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6810ff07fb7c6810ff0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68110587fb7c6811058 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68110c07fb7c68110c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68111287fb7c6811128 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68111907fb7c6811190 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68111f87fb7c68111f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68112607fb7c6811260 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68112c87fb7c68112c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68113307fb7c6811330 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68113987fb7c6811398 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68114007fb7c6811400 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68114687fb7c6811468 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68114d07fb7c68114d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68115387fb7c6811538 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68115a07fb7c68115a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68116087fb7c6811608 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68116707fb7c6811670 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68116d87fb7c68116d8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68117407fb7c6811740 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68117a87fb7c68117a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc68118107fb7c6811810 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa8913407fbcfa891340 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfb00ec007fbcfb00ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00ec687fbcfb00ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00ecd07fbcfb00ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00ed387fbcfb00ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00eda07fbcfb00eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00ee087fbcfb00ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00ee707fbcfb00ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00eed87fbcfb00eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00ef407fbcfb00ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00efa87fbcfb00efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f0107fbcfb00f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f0787fbcfb00f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f0e07fbcfb00f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f1487fbcfb00f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f1b07fbcfb00f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f2187fbcfb00f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f2807fbcfb00f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f2e87fbcfb00f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f3507fbcfb00f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f3b87fbcfb00f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f4207fbcfb00f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f4887fbcfb00f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f4f07fbcfb00f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f5587fbcfb00f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f5c07fbcfb00f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f6287fbcfb00f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f6907fbcfb00f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f6f87fbcfb00f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f7607fbcfb00f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f7c87fbcfb00f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f8307fbcfb00f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f8987fbcfb00f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb00f9007fbcfb00f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18ee007fbcfa18ee00 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa18ee687fbcfa18ee68 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa18eed07fbcfa18eed0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa18ef387fbcfa18ef38 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa18efa07fbcfa18efa0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f0087fbcfa18f008 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f0707fbcfa18f070 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f0d87fbcfa18f0d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f1407fbcfa18f140 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f1a87fbcfa18f1a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f2107fbcfa18f210 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f2787fbcfa18f278 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f2e07fbcfa18f2e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f3487fbcfa18f348 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f3b07fbcfa18f3b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f4187fbcfa18f418 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f4807fbcfa18f480 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f4e87fbcfa18f4e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f5507fbcfa18f550 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f5b87fbcfa18f5b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f6207fbcfa18f620 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f6887fbcfa18f688 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f6f07fbcfa18f6f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f7587fbcfa18f758 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f7c07fbcfa18f7c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f8287fbcfa18f828 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f8907fbcfa18f890 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f8f87fbcfa18f8f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f9607fbcfa18f960 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18f9c87fbcfa18f9c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18fa307fbcfa18fa30 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18fa987fbcfa18fa98 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18fb007fbcfa18fb00 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18fb687fbcfa18fb68 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18fbd07fbcfa18fbd0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18fc387fbcfa18fc38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0010007fbcfb001000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0010687fbcfb001068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0010d07fbcfb0010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0011387fbcfb001138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0011a07fbcfb0011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0012087fbcfb001208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0012707fbcfb001270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0012d87fbcfb0012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0013407fbcfb001340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0013a87fbcfb0013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; + FFFDfb0014107fbcfb001410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0014787fbcfb001478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0014e07fbcfb0014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0015487fbcfb001548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0015b07fbcfb0015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0016187fbcfb001618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0016807fbcfb001680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0016e87fbcfb0016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0017507fbcfb001750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0017b87fbcfb0017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0018207fbcfb001820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0018887fbcfb001888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0018f07fbcfb0018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0019587fbcfb001958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0019c07fbcfb0019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001a287fbcfb001a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001a907fbcfb001a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001af87fbcfb001af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001b607fbcfb001b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001bc87fbcfb001bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001c307fbcfb001c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001c987fbcfb001c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001d007fbcfb001d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001d687fbcfb001d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001dd07fbcfb001dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001e387fbcfb001e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001ea07fbcfb001ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001f087fbcfb001f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001f707fbcfb001f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb001fd87fbcfb001fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0020407fbcfb002040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0020a87fbcfb0020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0021107fbcfb002110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0021787fbcfb002178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0021e07fbcfb0021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0022487fbcfb002248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0022b07fbcfb0022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0023187fbcfb002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0023807fbcfb002380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0023e87fbcfb0023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0024507fbcfb002450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0024b87fbcfb0024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0025207fbcfb002520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0025887fbcfb002588 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0025f07fbcfb0025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0026587fbcfb002658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0026c07fbcfb0026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0027287fbcfb002728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0027907fbcfb002790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0027f87fbcfb0027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0028607fbcfb002860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0028c87fbcfb0028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0029307fbcfb002930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0029987fbcfb002998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002a007fbcfb002a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002a687fbcfb002a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002ad07fbcfb002ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002b387fbcfb002b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002ba07fbcfb002ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002c087fbcfb002c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002c707fbcfb002c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002cd87fbcfb002cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002d407fbcfb002d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002da87fbcfb002da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002e107fbcfb002e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002e787fbcfb002e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002ee07fbcfb002ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002f487fbcfb002f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb002fb07fbcfb002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0030187fbcfb003018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0030807fbcfb003080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0030e87fbcfb0030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0031507fbcfb003150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0031b87fbcfb0031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0032207fbcfb003220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0032887fbcfb003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0032f07fbcfb0032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0033587fbcfb003358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0033c07fbcfb0033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0034287fbcfb003428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0034907fbcfb003490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0034f87fbcfb0034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0035607fbcfb003560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0035c87fbcfb0035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0036307fbcfb003630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0036987fbcfb003698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0037007fbcfb003700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0037687fbcfb003768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0037d07fbcfb0037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0038387fbcfb003838 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0038a07fbcfb0038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0039087fbcfb003908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0039707fbcfb003970 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0039d87fbcfb0039d8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003a407fbcfb003a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003aa87fbcfb003aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003b107fbcfb003b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003b787fbcfb003b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003be07fbcfb003be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003c487fbcfb003c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003cb07fbcfb003cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003d187fbcfb003d18 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003d807fbcfb003d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003de87fbcfb003de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003e507fbcfb003e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003eb87fbcfb003eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003f207fbcfb003f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003f887fbcfb003f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb003ff07fbcfb003ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0040587fbcfb004058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0040c07fbcfb0040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0041287fbcfb004128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0041907fbcfb004190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0041f87fbcfb0041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0042607fbcfb004260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0042c87fbcfb0042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0043307fbcfb004330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0043987fbcfb004398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0044007fbcfb004400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0044687fbcfb004468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0044d07fbcfb0044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0045387fbcfb004538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0045a07fbcfb0045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0046087fbcfb004608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0046707fbcfb004670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0046d87fbcfb0046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0047407fbcfb004740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0047a87fbcfb0047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0048107fbcfb004810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0048787fbcfb004878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb0048e07fbcfb0048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0049487fbcfb004948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0049b07fbcfb0049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004a187fbcfb004a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004a807fbcfb004a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004ae87fbcfb004ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004b507fbcfb004b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004bb87fbcfb004bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004c207fbcfb004c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004c887fbcfb004c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004cf07fbcfb004cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004d587fbcfb004d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004dc07fbcfb004dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004e287fbcfb004e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004e907fbcfb004e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004ef87fbcfb004ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004f607fbcfb004f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb004fc87fbcfb004fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0050307fbcfb005030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0050987fbcfb005098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0051007fbcfb005100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0051687fbcfb005168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0051d07fbcfb0051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0052387fbcfb005238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0052a07fbcfb0052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0053087fbcfb005308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0053707fbcfb005370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0053d87fbcfb0053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0054407fbcfb005440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0054a87fbcfb0054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0055107fbcfb005510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0055787fbcfb005578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0055e07fbcfb0055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0056487fbcfb005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0056b07fbcfb0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0057187fbcfb005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0057807fbcfb005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0057e87fbcfb0057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0058507fbcfb005850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0058b87fbcfb0058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0059207fbcfb005920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0059887fbcfb005988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0059f07fbcfb0059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005a587fbcfb005a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005ac07fbcfb005ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005b287fbcfb005b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005b907fbcfb005b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005bf87fbcfb005bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005c607fbcfb005c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005cc87fbcfb005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005d307fbcfb005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005d987fbcfb005d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005e007fbcfb005e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005e687fbcfb005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005ed07fbcfb005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005f387fbcfb005f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb005fa07fbcfb005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0060087fbcfb006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0060707fbcfb006070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0060d87fbcfb0060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0061407fbcfb006140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0061a87fbcfb0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0062107fbcfb006210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0062787fbcfb006278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0062e07fbcfb0062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0063487fbcfb006348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0063b07fbcfb0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0064187fbcfb006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0064807fbcfb006480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0064e87fbcfb0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0065507fbcfb006550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0065b87fbcfb0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0066207fbcfb006620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0066887fbcfb006688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0066f07fbcfb0066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0067587fbcfb006758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0067c07fbcfb0067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0068287fbcfb006828 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0068907fbcfb006890 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0068f87fbcfb0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0069607fbcfb006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0069c87fbcfb0069c8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006a307fbcfb006a30 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006a987fbcfb006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006b007fbcfb006b00 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006b687fbcfb006b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006bd07fbcfb006bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006c387fbcfb006c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006ca07fbcfb006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006d087fbcfb006d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006d707fbcfb006d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006dd87fbcfb006dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006e407fbcfb006e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006ea87fbcfb006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006f107fbcfb006f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006f787fbcfb006f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb006fe07fbcfb006fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0070487fbcfb007048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0070b07fbcfb0070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0071187fbcfb007118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0071807fbcfb007180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0071e87fbcfb0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0072507fbcfb007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0072b87fbcfb0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0073207fbcfb007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0073887fbcfb007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0073f07fbcfb0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0074587fbcfb007458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0074c07fbcfb0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0075287fbcfb007528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0075907fbcfb007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0075f87fbcfb0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0076607fbcfb007660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0076c87fbcfb0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0077307fbcfb007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0077987fbcfb007798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0078007fbcfb007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0078687fbcfb007868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0078d07fbcfb0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0079387fbcfb007938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb0079a07fbcfb0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb007a087fbcfb007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb007a707fbcfb007a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb007ad87fbcfb007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb007b407fbcfb007b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb007ba87fbcfb007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb007c107fbcfb007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c4b0e1607fb7c4b0e160 /* Resources */ = { + FFF2fa8913407fbcfa891340 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc680afa87fb7c680afa8, + FFFFfb0013a87fbcfb0013a8, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc4b0e1607fb7c4b0e160 /* Frameworks */ = { + FFFCfa8913407fbcfa891340 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1841,145 +1841,145 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c4b0e1607fb7c4b0e160 /* Sources */ = { + FFF8fa8913407fbcfa891340 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc3808e007fb7c3808e00, - FFFFc3808e687fb7c3808e68, - FFFFc3808ed07fb7c3808ed0, - FFFFc3808f387fb7c3808f38, - FFFFc3808fa07fb7c3808fa0, - FFFFc38090087fb7c3809008, - FFFFc38090707fb7c3809070, - FFFFc38090d87fb7c38090d8, - FFFFc680e4e07fb7c680e4e0, - FFFFc680e5487fb7c680e548, - FFFFc680e5b07fb7c680e5b0, - FFFFc680e6187fb7c680e618, - FFFFc680e6807fb7c680e680, - FFFFc680e6e87fb7c680e6e8, - FFFFc680e7507fb7c680e750, - FFFFc680e7b87fb7c680e7b8, - FFFFc680e8207fb7c680e820, - FFFFc680e8887fb7c680e888, - FFFFc680e8f07fb7c680e8f0, - FFFFc680e9587fb7c680e958, - FFFFc680e9c07fb7c680e9c0, - FFFFc680ea287fb7c680ea28, - FFFFc680ea907fb7c680ea90, - FFFFc680eaf87fb7c680eaf8, - FFFFc680eb607fb7c680eb60, - FFFFc680ebc87fb7c680ebc8, - FFFFc680ec307fb7c680ec30, - FFFFc680ec987fb7c680ec98, - FFFFc680ed007fb7c680ed00, - FFFFc680ed687fb7c680ed68, - FFFFc680edd07fb7c680edd0, - FFFFc680ee387fb7c680ee38, - FFFFc680eea07fb7c680eea0, - FFFFc680ef087fb7c680ef08, - FFFFc680ef707fb7c680ef70, - FFFFc680efd87fb7c680efd8, - FFFFc680f0407fb7c680f040, - FFFFc680f0a87fb7c680f0a8, - FFFFc680f1107fb7c680f110, - FFFFc680f1787fb7c680f178, - FFFFc680f1e07fb7c680f1e0, - FFFFc680f2487fb7c680f248, - FFFFc680f2b07fb7c680f2b0, - FFFFc680f3187fb7c680f318, - FFFFc680f3807fb7c680f380, - FFFFc680f3e87fb7c680f3e8, - FFFFc680f4507fb7c680f450, - FFFFc680f4b87fb7c680f4b8, - FFFFc680f5207fb7c680f520, - FFFFc680f5887fb7c680f588, - FFFFc680f5f07fb7c680f5f0, - FFFFc680f6587fb7c680f658, - FFFFc680f6c07fb7c680f6c0, - FFFFc680f7287fb7c680f728, - FFFFc680f7907fb7c680f790, - FFFFc680f7f87fb7c680f7f8, - FFFFc680f8607fb7c680f860, - FFFFc680f8c87fb7c680f8c8, - FFFFc680f9307fb7c680f930, - FFFFc680f9987fb7c680f998, - FFFFc680fa007fb7c680fa00, - FFFFc680fa687fb7c680fa68, - FFFFc680fad07fb7c680fad0, - FFFFc680fb387fb7c680fb38, - FFFFc680fba07fb7c680fba0, - FFFFc680fc087fb7c680fc08, - FFFFc680fc707fb7c680fc70, - FFFFc680fcd87fb7c680fcd8, - FFFFc680fd407fb7c680fd40, - FFFFc680fda87fb7c680fda8, - FFFFc680fe107fb7c680fe10, - FFFFc680fe787fb7c680fe78, - FFFFc680fee07fb7c680fee0, - FFFFc680ff487fb7c680ff48, - FFFFc680ffb07fb7c680ffb0, - FFFFc68100187fb7c6810018, - FFFFc68100807fb7c6810080, - FFFFc68100e87fb7c68100e8, - FFFFc68101507fb7c6810150, - FFFFc68101b87fb7c68101b8, - FFFFc68102207fb7c6810220, - FFFFc68102887fb7c6810288, - FFFFc68102f07fb7c68102f0, - FFFFc68103587fb7c6810358, - FFFFc68103c07fb7c68103c0, - FFFFc68104287fb7c6810428, - FFFFc68104907fb7c6810490, - FFFFc68104f87fb7c68104f8, - FFFFc68105607fb7c6810560, - FFFFc68105c87fb7c68105c8, - FFFFc68106307fb7c6810630, - FFFFc68106987fb7c6810698, - FFFFc68107007fb7c6810700, - FFFFc68107687fb7c6810768, - FFFFc68107d07fb7c68107d0, - FFFFc68108387fb7c6810838, - FFFFc68108a07fb7c68108a0, - FFFFc68109087fb7c6810908, - FFFFc68109707fb7c6810970, - FFFFc68109d87fb7c68109d8, - FFFFc6810a407fb7c6810a40, - FFFFc6810aa87fb7c6810aa8, - FFFFc6810b107fb7c6810b10, - FFFFc6810b787fb7c6810b78, - FFFFc6810be07fb7c6810be0, - FFFFc6810c487fb7c6810c48, - FFFFc6810cb07fb7c6810cb0, - FFFFc6810d187fb7c6810d18, - FFFFc6810d807fb7c6810d80, - FFFFc6810de87fb7c6810de8, - FFFFc6810e507fb7c6810e50, - FFFFc6810eb87fb7c6810eb8, - FFFFc6810f207fb7c6810f20, - FFFFc6810f887fb7c6810f88, - FFFFc6810ff07fb7c6810ff0, - FFFFc68110587fb7c6811058, - FFFFc68110c07fb7c68110c0, - FFFFc68111287fb7c6811128, - FFFFc68111907fb7c6811190, - FFFFc68111f87fb7c68111f8, - FFFFc68112607fb7c6811260, - FFFFc68112c87fb7c68112c8, - FFFFc68113307fb7c6811330, - FFFFc68113987fb7c6811398, - FFFFc68114007fb7c6811400, - FFFFc68114687fb7c6811468, - FFFFc68114d07fb7c68114d0, - FFFFc68115387fb7c6811538, - FFFFc68115a07fb7c68115a0, - FFFFc68116087fb7c6811608, - FFFFc68116707fb7c6811670, - FFFFc68116d87fb7c68116d8, - FFFFc68117407fb7c6811740, - FFFFc68117a87fb7c68117a8, - FFFFc68118107fb7c6811810, + FFFFfa18ee007fbcfa18ee00, + FFFFfa18ee687fbcfa18ee68, + FFFFfa18eed07fbcfa18eed0, + FFFFfa18ef387fbcfa18ef38, + FFFFfa18efa07fbcfa18efa0, + FFFFfa18f0087fbcfa18f008, + FFFFfa18f0707fbcfa18f070, + FFFFfa18f0d87fbcfa18f0d8, + FFFFfb0048e07fbcfb0048e0, + FFFFfb0049487fbcfb004948, + FFFFfb0049b07fbcfb0049b0, + FFFFfb004a187fbcfb004a18, + FFFFfb004a807fbcfb004a80, + FFFFfb004ae87fbcfb004ae8, + FFFFfb004b507fbcfb004b50, + FFFFfb004bb87fbcfb004bb8, + FFFFfb004c207fbcfb004c20, + FFFFfb004c887fbcfb004c88, + FFFFfb004cf07fbcfb004cf0, + FFFFfb004d587fbcfb004d58, + FFFFfb004dc07fbcfb004dc0, + FFFFfb004e287fbcfb004e28, + FFFFfb004e907fbcfb004e90, + FFFFfb004ef87fbcfb004ef8, + FFFFfb004f607fbcfb004f60, + FFFFfb004fc87fbcfb004fc8, + FFFFfb0050307fbcfb005030, + FFFFfb0050987fbcfb005098, + FFFFfb0051007fbcfb005100, + FFFFfb0051687fbcfb005168, + FFFFfb0051d07fbcfb0051d0, + FFFFfb0052387fbcfb005238, + FFFFfb0052a07fbcfb0052a0, + FFFFfb0053087fbcfb005308, + FFFFfb0053707fbcfb005370, + FFFFfb0053d87fbcfb0053d8, + FFFFfb0054407fbcfb005440, + FFFFfb0054a87fbcfb0054a8, + FFFFfb0055107fbcfb005510, + FFFFfb0055787fbcfb005578, + FFFFfb0055e07fbcfb0055e0, + FFFFfb0056487fbcfb005648, + FFFFfb0056b07fbcfb0056b0, + FFFFfb0057187fbcfb005718, + FFFFfb0057807fbcfb005780, + FFFFfb0057e87fbcfb0057e8, + FFFFfb0058507fbcfb005850, + FFFFfb0058b87fbcfb0058b8, + FFFFfb0059207fbcfb005920, + FFFFfb0059887fbcfb005988, + FFFFfb0059f07fbcfb0059f0, + FFFFfb005a587fbcfb005a58, + FFFFfb005ac07fbcfb005ac0, + FFFFfb005b287fbcfb005b28, + FFFFfb005b907fbcfb005b90, + FFFFfb005bf87fbcfb005bf8, + FFFFfb005c607fbcfb005c60, + FFFFfb005cc87fbcfb005cc8, + FFFFfb005d307fbcfb005d30, + FFFFfb005d987fbcfb005d98, + FFFFfb005e007fbcfb005e00, + FFFFfb005e687fbcfb005e68, + FFFFfb005ed07fbcfb005ed0, + FFFFfb005f387fbcfb005f38, + FFFFfb005fa07fbcfb005fa0, + FFFFfb0060087fbcfb006008, + FFFFfb0060707fbcfb006070, + FFFFfb0060d87fbcfb0060d8, + FFFFfb0061407fbcfb006140, + FFFFfb0061a87fbcfb0061a8, + FFFFfb0062107fbcfb006210, + FFFFfb0062787fbcfb006278, + FFFFfb0062e07fbcfb0062e0, + FFFFfb0063487fbcfb006348, + FFFFfb0063b07fbcfb0063b0, + FFFFfb0064187fbcfb006418, + FFFFfb0064807fbcfb006480, + FFFFfb0064e87fbcfb0064e8, + FFFFfb0065507fbcfb006550, + FFFFfb0065b87fbcfb0065b8, + FFFFfb0066207fbcfb006620, + FFFFfb0066887fbcfb006688, + FFFFfb0066f07fbcfb0066f0, + FFFFfb0067587fbcfb006758, + FFFFfb0067c07fbcfb0067c0, + FFFFfb0068287fbcfb006828, + FFFFfb0068907fbcfb006890, + FFFFfb0068f87fbcfb0068f8, + FFFFfb0069607fbcfb006960, + FFFFfb0069c87fbcfb0069c8, + FFFFfb006a307fbcfb006a30, + FFFFfb006a987fbcfb006a98, + FFFFfb006b007fbcfb006b00, + FFFFfb006b687fbcfb006b68, + FFFFfb006bd07fbcfb006bd0, + FFFFfb006c387fbcfb006c38, + FFFFfb006ca07fbcfb006ca0, + FFFFfb006d087fbcfb006d08, + FFFFfb006d707fbcfb006d70, + FFFFfb006dd87fbcfb006dd8, + FFFFfb006e407fbcfb006e40, + FFFFfb006ea87fbcfb006ea8, + FFFFfb006f107fbcfb006f10, + FFFFfb006f787fbcfb006f78, + FFFFfb006fe07fbcfb006fe0, + FFFFfb0070487fbcfb007048, + FFFFfb0070b07fbcfb0070b0, + FFFFfb0071187fbcfb007118, + FFFFfb0071807fbcfb007180, + FFFFfb0071e87fbcfb0071e8, + FFFFfb0072507fbcfb007250, + FFFFfb0072b87fbcfb0072b8, + FFFFfb0073207fbcfb007320, + FFFFfb0073887fbcfb007388, + FFFFfb0073f07fbcfb0073f0, + FFFFfb0074587fbcfb007458, + FFFFfb0074c07fbcfb0074c0, + FFFFfb0075287fbcfb007528, + FFFFfb0075907fbcfb007590, + FFFFfb0075f87fbcfb0075f8, + FFFFfb0076607fbcfb007660, + FFFFfb0076c87fbcfb0076c8, + FFFFfb0077307fbcfb007730, + FFFFfb0077987fbcfb007798, + FFFFfb0078007fbcfb007800, + FFFFfb0078687fbcfb007868, + FFFFfb0078d07fbcfb0078d0, + FFFFfb0079387fbcfb007938, + FFFFfb0079a07fbcfb0079a0, + FFFFfb007a087fbcfb007a08, + FFFFfb007a707fbcfb007a70, + FFFFfb007ad87fbcfb007ad8, + FFFFfb007b407fbcfb007b40, + FFFFfb007ba87fbcfb007ba8, + FFFFfb007c107fbcfb007c10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1988,132 +1988,132 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4c4b116b07fb7c4b116b0 /* PBXTargetDependency */ = { + FFF4faaf34f07fbcfaaf34f0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc37144b07fb7c37144b0 /* PxFoundation */; - targetProxy = FFF5c37144b07fb7c37144b0 /* PBXContainerItemProxy */; + target = FFFAfa87f5207fbcfa87f520 /* PxFoundation */; + targetProxy = FFF5fa87f5207fbcfa87f520 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxFoundation */ - FFFFc78033187fb7c7803318 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78033187fb7c7803318 /* src/PsAllocator.cpp */; }; - FFFFc78033807fb7c7803380 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78033807fb7c7803380 /* src/PsAssert.cpp */; }; - FFFFc78033e87fb7c78033e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78033e87fb7c78033e8 /* src/PsFoundation.cpp */; }; - FFFFc78034507fb7c7803450 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78034507fb7c7803450 /* src/PsMathUtils.cpp */; }; - FFFFc78034b87fb7c78034b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78034b87fb7c78034b8 /* src/PsString.cpp */; }; - FFFFc78035207fb7c7803520 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78035207fb7c7803520 /* src/PsTempAllocator.cpp */; }; - FFFFc78035887fb7c7803588 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78035887fb7c7803588 /* src/PsUtilities.cpp */; }; - FFFFc78035f07fb7c78035f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78035f07fb7c78035f0 /* src/unix/PsUnixAtomic.cpp */; }; - FFFFc78036587fb7c7803658 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78036587fb7c7803658 /* src/unix/PsUnixCpu.cpp */; }; - FFFFc78036c07fb7c78036c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78036c07fb7c78036c0 /* src/unix/PsUnixFPU.cpp */; }; - FFFFc78037287fb7c7803728 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78037287fb7c7803728 /* src/unix/PsUnixMutex.cpp */; }; - FFFFc78037907fb7c7803790 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78037907fb7c7803790 /* src/unix/PsUnixPrintString.cpp */; }; - FFFFc78037f87fb7c78037f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78037f87fb7c78037f8 /* src/unix/PsUnixSList.cpp */; }; - FFFFc78038607fb7c7803860 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78038607fb7c7803860 /* src/unix/PsUnixSocket.cpp */; }; - FFFFc78038c87fb7c78038c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78038c87fb7c78038c8 /* src/unix/PsUnixSync.cpp */; }; - FFFFc78039307fb7c7803930 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78039307fb7c7803930 /* src/unix/PsUnixThread.cpp */; }; - FFFFc78039987fb7c7803998 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc78039987fb7c7803998 /* src/unix/PsUnixTime.cpp */; }; + FFFFfa1819187fbcfa181918 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1819187fbcfa181918 /* src/PsAllocator.cpp */; }; + FFFFfa1819807fbcfa181980 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1819807fbcfa181980 /* src/PsAssert.cpp */; }; + FFFFfa1819e87fbcfa1819e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1819e87fbcfa1819e8 /* src/PsFoundation.cpp */; }; + FFFFfa181a507fbcfa181a50 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181a507fbcfa181a50 /* src/PsMathUtils.cpp */; }; + FFFFfa181ab87fbcfa181ab8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181ab87fbcfa181ab8 /* src/PsString.cpp */; }; + FFFFfa181b207fbcfa181b20 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181b207fbcfa181b20 /* src/PsTempAllocator.cpp */; }; + FFFFfa181b887fbcfa181b88 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181b887fbcfa181b88 /* src/PsUtilities.cpp */; }; + FFFFfa181bf07fbcfa181bf0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181bf07fbcfa181bf0 /* src/unix/PsUnixAtomic.cpp */; }; + FFFFfa181c587fbcfa181c58 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181c587fbcfa181c58 /* src/unix/PsUnixCpu.cpp */; }; + FFFFfa181cc07fbcfa181cc0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181cc07fbcfa181cc0 /* src/unix/PsUnixFPU.cpp */; }; + FFFFfa181d287fbcfa181d28 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181d287fbcfa181d28 /* src/unix/PsUnixMutex.cpp */; }; + FFFFfa181d907fbcfa181d90 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181d907fbcfa181d90 /* src/unix/PsUnixPrintString.cpp */; }; + FFFFfa181df87fbcfa181df8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181df87fbcfa181df8 /* src/unix/PsUnixSList.cpp */; }; + FFFFfa181e607fbcfa181e60 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181e607fbcfa181e60 /* src/unix/PsUnixSocket.cpp */; }; + FFFFfa181ec87fbcfa181ec8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181ec87fbcfa181ec8 /* src/unix/PsUnixSync.cpp */; }; + FFFFfa181f307fbcfa181f30 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181f307fbcfa181f30 /* src/unix/PsUnixThread.cpp */; }; + FFFFfa181f987fbcfa181f98 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181f987fbcfa181f98 /* src/unix/PsUnixTime.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc37144b07fb7c37144b0 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc5039c007fb7c5039c00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5039c687fb7c5039c68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5039cd07fb7c5039cd0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5039d387fb7c5039d38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5039da07fb7c5039da0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5039e087fb7c5039e08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5039e707fb7c5039e70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5039ed87fb7c5039ed8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5039f407fb7c5039f40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5039fa87fb7c5039fa8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a0107fb7c503a010 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a0787fb7c503a078 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a0e07fb7c503a0e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a1487fb7c503a148 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a1b07fb7c503a1b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a2187fb7c503a218 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a2807fb7c503a280 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a2e87fb7c503a2e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a3507fb7c503a350 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a3b87fb7c503a3b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a4207fb7c503a420 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a4887fb7c503a488 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a4f07fb7c503a4f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a5587fb7c503a558 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a5c07fb7c503a5c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a6287fb7c503a628 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a6907fb7c503a690 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a6f87fb7c503a6f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc503a7607fb7c503a760 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78020007fb7c7802000 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78020687fb7c7802068 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78020d07fb7c78020d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78021387fb7c7802138 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78021a07fb7c78021a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78022087fb7c7802208 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78022707fb7c7802270 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78022d87fb7c78022d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78023407fb7c7802340 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78023a87fb7c78023a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78024107fb7c7802410 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78024787fb7c7802478 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78024e07fb7c78024e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78025487fb7c7802548 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78025b07fb7c78025b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78026187fb7c7802618 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78026807fb7c7802680 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78026e87fb7c78026e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78027507fb7c7802750 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78027b87fb7c78027b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78028207fb7c7802820 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78028887fb7c7802888 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78028f07fb7c78028f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78029587fb7c7802958 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78029c07fb7c78029c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802a287fb7c7802a28 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802a907fb7c7802a90 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802af87fb7c7802af8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802b607fb7c7802b60 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802bc87fb7c7802bc8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802c307fb7c7802c30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802c987fb7c7802c98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802d007fb7c7802d00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802d687fb7c7802d68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802dd07fb7c7802dd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802e387fb7c7802e38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802ea07fb7c7802ea0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802f087fb7c7802f08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802f707fb7c7802f70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; - FFFDc7802fd87fb7c7802fd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78030407fb7c7803040 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78030a87fb7c78030a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78031107fb7c7803110 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78031787fb7c7803178 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78031e07fb7c78031e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78032487fb7c7803248 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78032b07fb7c78032b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDc78033187fb7c7803318 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78033807fb7c7803380 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78033e87fb7c78033e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78034507fb7c7803450 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78034b87fb7c78034b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78035207fb7c7803520 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78035887fb7c7803588 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78035f07fb7c78035f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78036587fb7c7803658 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78036c07fb7c78036c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78037287fb7c7803728 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78037907fb7c7803790 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78037f87fb7c78037f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78038607fb7c7803860 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78038c87fb7c78038c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78039307fb7c7803930 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc78039987fb7c7803998 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa87f5207fbcfa87f520 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfa18b6007fbcfa18b600 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18b6687fbcfa18b668 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18b6d07fbcfa18b6d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18b7387fbcfa18b738 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18b7a07fbcfa18b7a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18b8087fbcfa18b808 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18b8707fbcfa18b870 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18b8d87fbcfa18b8d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18b9407fbcfa18b940 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18b9a87fbcfa18b9a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18ba107fbcfa18ba10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18ba787fbcfa18ba78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18bae07fbcfa18bae0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18bb487fbcfa18bb48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18bbb07fbcfa18bbb0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18bc187fbcfa18bc18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18bc807fbcfa18bc80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18bce87fbcfa18bce8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18bd507fbcfa18bd50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18bdb87fbcfa18bdb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18be207fbcfa18be20 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18be887fbcfa18be88 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18bef07fbcfa18bef0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18bf587fbcfa18bf58 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18bfc07fbcfa18bfc0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18c0287fbcfa18c028 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18c0907fbcfa18c090 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18c0f87fbcfa18c0f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa18c1607fbcfa18c160 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1806007fbcfa180600 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1806687fbcfa180668 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1806d07fbcfa1806d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1807387fbcfa180738 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1807a07fbcfa1807a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1808087fbcfa180808 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1808707fbcfa180870 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1808d87fbcfa1808d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1809407fbcfa180940 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1809a87fbcfa1809a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180a107fbcfa180a10 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180a787fbcfa180a78 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180ae07fbcfa180ae0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180b487fbcfa180b48 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180bb07fbcfa180bb0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180c187fbcfa180c18 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180c807fbcfa180c80 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180ce87fbcfa180ce8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180d507fbcfa180d50 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180db87fbcfa180db8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180e207fbcfa180e20 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180e887fbcfa180e88 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180ef07fbcfa180ef0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180f587fbcfa180f58 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa180fc07fbcfa180fc0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1810287fbcfa181028 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1810907fbcfa181090 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1810f87fbcfa1810f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1811607fbcfa181160 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1811c87fbcfa1811c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1812307fbcfa181230 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1812987fbcfa181298 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1813007fbcfa181300 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1813687fbcfa181368 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1813d07fbcfa1813d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1814387fbcfa181438 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1814a07fbcfa1814a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1815087fbcfa181508 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1815707fbcfa181570 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1815d87fbcfa1815d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1816407fbcfa181640 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1816a87fbcfa1816a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1817107fbcfa181710 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1817787fbcfa181778 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1817e07fbcfa1817e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1818487fbcfa181848 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1818b07fbcfa1818b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1819187fbcfa181918 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1819807fbcfa181980 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1819e87fbcfa1819e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181a507fbcfa181a50 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181ab87fbcfa181ab8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181b207fbcfa181b20 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181b887fbcfa181b88 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181bf07fbcfa181bf0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181c587fbcfa181c58 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181cc07fbcfa181cc0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181d287fbcfa181d28 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181d907fbcfa181d90 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181df87fbcfa181df8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181e607fbcfa181e60 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181ec87fbcfa181ec8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181f307fbcfa181f30 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa181f987fbcfa181f98 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c37144b07fb7c37144b0 /* Resources */ = { + FFF2fa87f5207fbcfa87f520 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2123,7 +2123,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc37144b07fb7c37144b0 /* Frameworks */ = { + FFFCfa87f5207fbcfa87f520 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2133,27 +2133,27 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c37144b07fb7c37144b0 /* Sources */ = { + FFF8fa87f5207fbcfa87f520 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc78033187fb7c7803318, - FFFFc78033807fb7c7803380, - FFFFc78033e87fb7c78033e8, - FFFFc78034507fb7c7803450, - FFFFc78034b87fb7c78034b8, - FFFFc78035207fb7c7803520, - FFFFc78035887fb7c7803588, - FFFFc78035f07fb7c78035f0, - FFFFc78036587fb7c7803658, - FFFFc78036c07fb7c78036c0, - FFFFc78037287fb7c7803728, - FFFFc78037907fb7c7803790, - FFFFc78037f87fb7c78037f8, - FFFFc78038607fb7c7803860, - FFFFc78038c87fb7c78038c8, - FFFFc78039307fb7c7803930, - FFFFc78039987fb7c7803998, + FFFFfa1819187fbcfa181918, + FFFFfa1819807fbcfa181980, + FFFFfa1819e87fbcfa1819e8, + FFFFfa181a507fbcfa181a50, + FFFFfa181ab87fbcfa181ab8, + FFFFfa181b207fbcfa181b20, + FFFFfa181b887fbcfa181b88, + FFFFfa181bf07fbcfa181bf0, + FFFFfa181c587fbcfa181c58, + FFFFfa181cc07fbcfa181cc0, + FFFFfa181d287fbcfa181d28, + FFFFfa181d907fbcfa181d90, + FFFFfa181df87fbcfa181df8, + FFFFfa181e607fbcfa181e60, + FFFFfa181ec87fbcfa181ec8, + FFFFfa181f307fbcfa181f30, + FFFFfa181f987fbcfa181f98, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2165,103 +2165,103 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxPvdSDK */ - FFFFc589e5a87fb7c589e5a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc589e5a87fb7c589e5a8 /* src/PxProfileEventImpl.cpp */; }; - FFFFc589e6107fb7c589e610 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc589e6107fb7c589e610 /* src/PxPvd.cpp */; }; - FFFFc589e6787fb7c589e678 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc589e6787fb7c589e678 /* src/PxPvdDataStream.cpp */; }; - FFFFc589e6e07fb7c589e6e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc589e6e07fb7c589e6e0 /* src/PxPvdDefaultFileTransport.cpp */; }; - FFFFc589e7487fb7c589e748 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc589e7487fb7c589e748 /* src/PxPvdDefaultSocketTransport.cpp */; }; - FFFFc589e7b07fb7c589e7b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc589e7b07fb7c589e7b0 /* src/PxPvdImpl.cpp */; }; - FFFFc589e8187fb7c589e818 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc589e8187fb7c589e818 /* src/PxPvdMemClient.cpp */; }; - FFFFc589e8807fb7c589e880 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc589e8807fb7c589e880 /* src/PxPvdObjectModelMetaData.cpp */; }; - FFFFc589e8e87fb7c589e8e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc589e8e87fb7c589e8e8 /* src/PxPvdObjectRegistrar.cpp */; }; - FFFFc589e9507fb7c589e950 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc589e9507fb7c589e950 /* src/PxPvdProfileZoneClient.cpp */; }; - FFFFc589e9b87fb7c589e9b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc589e9b87fb7c589e9b8 /* src/PxPvdUserRenderer.cpp */; }; + FFFFfa1b3fa87fbcfa1b3fa8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b3fa87fbcfa1b3fa8 /* src/PxProfileEventImpl.cpp */; }; + FFFFfa1b40107fbcfa1b4010 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b40107fbcfa1b4010 /* src/PxPvd.cpp */; }; + FFFFfa1b40787fbcfa1b4078 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b40787fbcfa1b4078 /* src/PxPvdDataStream.cpp */; }; + FFFFfa1b40e07fbcfa1b40e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b40e07fbcfa1b40e0 /* src/PxPvdDefaultFileTransport.cpp */; }; + FFFFfa1b41487fbcfa1b4148 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b41487fbcfa1b4148 /* src/PxPvdDefaultSocketTransport.cpp */; }; + FFFFfa1b41b07fbcfa1b41b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b41b07fbcfa1b41b0 /* src/PxPvdImpl.cpp */; }; + FFFFfa1b42187fbcfa1b4218 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b42187fbcfa1b4218 /* src/PxPvdMemClient.cpp */; }; + FFFFfa1b42807fbcfa1b4280 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b42807fbcfa1b4280 /* src/PxPvdObjectModelMetaData.cpp */; }; + FFFFfa1b42e87fbcfa1b42e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b42e87fbcfa1b42e8 /* src/PxPvdObjectRegistrar.cpp */; }; + FFFFfa1b43507fbcfa1b4350 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b43507fbcfa1b4350 /* src/PxPvdProfileZoneClient.cpp */; }; + FFFFfa1b43b87fbcfa1b43b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b43b87fbcfa1b43b8 /* src/PxPvdUserRenderer.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc4a2a3107fb7c4a2a310 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc35e40807fb7c35e4080 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDc35e40e87fb7c35e40e8 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589e2007fb7c589e200 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589e2687fb7c589e268 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589e2d07fb7c589e2d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589e3387fb7c589e338 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589e3a07fb7c589e3a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589e4087fb7c589e408 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589e4707fb7c589e470 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589e4d87fb7c589e4d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589e5407fb7c589e540 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589e5a87fb7c589e5a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc589e6107fb7c589e610 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc589e6787fb7c589e678 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc589e6e07fb7c589e6e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc589e7487fb7c589e748 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc589e7b07fb7c589e7b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc589e8187fb7c589e818 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc589e8807fb7c589e880 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc589e8e87fb7c589e8e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc589e9507fb7c589e950 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc589e9b87fb7c589e9b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc589ea207fb7c589ea20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589ea887fb7c589ea88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589eaf07fb7c589eaf0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589eb587fb7c589eb58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589ebc07fb7c589ebc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589ec287fb7c589ec28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589ec907fb7c589ec90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589ecf87fb7c589ecf8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589ed607fb7c589ed60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589edc87fb7c589edc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589ee307fb7c589ee30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589ee987fb7c589ee98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589ef007fb7c589ef00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589ef687fb7c589ef68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589efd07fb7c589efd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f0387fb7c589f038 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f0a07fb7c589f0a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f1087fb7c589f108 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f1707fb7c589f170 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f1d87fb7c589f1d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f2407fb7c589f240 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f2a87fb7c589f2a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f3107fb7c589f310 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f3787fb7c589f378 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f3e07fb7c589f3e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f4487fb7c589f448 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f4b07fb7c589f4b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f5187fb7c589f518 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f5807fb7c589f580 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f5e87fb7c589f5e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f6507fb7c589f650 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f6b87fb7c589f6b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f7207fb7c589f720 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f7887fb7c589f788 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f7f07fb7c589f7f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f8587fb7c589f858 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f8c07fb7c589f8c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f9287fb7c589f928 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f9907fb7c589f990 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589f9f87fb7c589f9f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589fa607fb7c589fa60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589fac87fb7c589fac8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589fb307fb7c589fb30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589fb987fb7c589fb98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589fc007fb7c589fc00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589fc687fb7c589fc68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589fcd07fb7c589fcd0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589fd387fb7c589fd38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589fda07fb7c589fda0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589fe087fb7c589fe08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589fe707fb7c589fe70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589fed87fb7c589fed8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589ff407fb7c589ff40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; - FFFDc589ffa87fb7c589ffa8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc58a00107fb7c58a0010 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc58a00787fb7c58a0078 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab095c07fbcfab095c0 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfab09df07fbcfab09df0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab09e587fbcfab09e58 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b3c007fbcfa1b3c00 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b3c687fbcfa1b3c68 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b3cd07fbcfa1b3cd0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b3d387fbcfa1b3d38 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b3da07fbcfa1b3da0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b3e087fbcfa1b3e08 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b3e707fbcfa1b3e70 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b3ed87fbcfa1b3ed8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b3f407fbcfa1b3f40 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b3fa87fbcfa1b3fa8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b40107fbcfa1b4010 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b40787fbcfa1b4078 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b40e07fbcfa1b40e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b41487fbcfa1b4148 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b41b07fbcfa1b41b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b42187fbcfa1b4218 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b42807fbcfa1b4280 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b42e87fbcfa1b42e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b43507fbcfa1b4350 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b43b87fbcfa1b43b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b44207fbcfa1b4420 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b44887fbcfa1b4488 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b44f07fbcfa1b44f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b45587fbcfa1b4558 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b45c07fbcfa1b45c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b46287fbcfa1b4628 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b46907fbcfa1b4690 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b46f87fbcfa1b46f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b47607fbcfa1b4760 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b47c87fbcfa1b47c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b48307fbcfa1b4830 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b48987fbcfa1b4898 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b49007fbcfa1b4900 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b49687fbcfa1b4968 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b49d07fbcfa1b49d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4a387fbcfa1b4a38 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4aa07fbcfa1b4aa0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4b087fbcfa1b4b08 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4b707fbcfa1b4b70 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4bd87fbcfa1b4bd8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4c407fbcfa1b4c40 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4ca87fbcfa1b4ca8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4d107fbcfa1b4d10 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4d787fbcfa1b4d78 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4de07fbcfa1b4de0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4e487fbcfa1b4e48 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4eb07fbcfa1b4eb0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4f187fbcfa1b4f18 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4f807fbcfa1b4f80 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b4fe87fbcfa1b4fe8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b50507fbcfa1b5050 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b50b87fbcfa1b50b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b51207fbcfa1b5120 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b51887fbcfa1b5188 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b51f07fbcfa1b51f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b52587fbcfa1b5258 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b52c07fbcfa1b52c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b53287fbcfa1b5328 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b53907fbcfa1b5390 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b53f87fbcfa1b53f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b54607fbcfa1b5460 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b54c87fbcfa1b54c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b55307fbcfa1b5530 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b55987fbcfa1b5598 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b56007fbcfa1b5600 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b56687fbcfa1b5668 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b56d07fbcfa1b56d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b57387fbcfa1b5738 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b57a07fbcfa1b57a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b58087fbcfa1b5808 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b58707fbcfa1b5870 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b58d87fbcfa1b58d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b59407fbcfa1b5940 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b59a87fbcfa1b59a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b5a107fbcfa1b5a10 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1b5a787fbcfa1b5a78 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c4a2a3107fb7c4a2a310 /* Resources */ = { + FFF2fab095c07fbcfab095c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2271,7 +2271,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc4a2a3107fb7c4a2a310 /* Frameworks */ = { + FFFCfab095c07fbcfab095c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2281,21 +2281,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c4a2a3107fb7c4a2a310 /* Sources */ = { + FFF8fab095c07fbcfab095c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc589e5a87fb7c589e5a8, - FFFFc589e6107fb7c589e610, - FFFFc589e6787fb7c589e678, - FFFFc589e6e07fb7c589e6e0, - FFFFc589e7487fb7c589e748, - FFFFc589e7b07fb7c589e7b0, - FFFFc589e8187fb7c589e818, - FFFFc589e8807fb7c589e880, - FFFFc589e8e87fb7c589e8e8, - FFFFc589e9507fb7c589e950, - FFFFc589e9b87fb7c589e9b8, + FFFFfa1b3fa87fbcfa1b3fa8, + FFFFfa1b40107fbcfa1b4010, + FFFFfa1b40787fbcfa1b4078, + FFFFfa1b40e07fbcfa1b40e0, + FFFFfa1b41487fbcfa1b4148, + FFFFfa1b41b07fbcfa1b41b0, + FFFFfa1b42187fbcfa1b4218, + FFFFfa1b42807fbcfa1b4280, + FFFFfa1b42e87fbcfa1b42e8, + FFFFfa1b43507fbcfa1b4350, + FFFFfa1b43b87fbcfa1b43b8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2304,108 +2304,108 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4c4f507e07fb7c4f507e0 /* PBXTargetDependency */ = { + FFF4fa88f5e07fbcfa88f5e0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc37144b07fb7c37144b0 /* PxFoundation */; - targetProxy = FFF5c37144b07fb7c37144b0 /* PBXContainerItemProxy */; + target = FFFAfa87f5207fbcfa87f520 /* PxFoundation */; + targetProxy = FFF5fa87f5207fbcfa87f520 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevel */ - FFFFc81180107fb7c8118010 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDc81180107fb7c8118010 /* px_globals.cpp */; }; - FFFFc81188707fb7c8118870 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc81188707fb7c8118870 /* PxsCCD.cpp */; }; - FFFFc81188d87fb7c81188d8 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc81188d87fb7c81188d8 /* PxsContactManager.cpp */; }; - FFFFc81189407fb7c8118940 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc81189407fb7c8118940 /* PxsContext.cpp */; }; - FFFFc81189a87fb7c81189a8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc81189a87fb7c81189a8 /* PxsDefaultMemoryManager.cpp */; }; - FFFFc8118a107fb7c8118a10 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc8118a107fb7c8118a10 /* PxsIslandSim.cpp */; }; - FFFFc8118a787fb7c8118a78 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc8118a787fb7c8118a78 /* PxsMaterialCombiner.cpp */; }; - FFFFc8118ae07fb7c8118ae0 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc8118ae07fb7c8118ae0 /* PxsNphaseImplementationContext.cpp */; }; - FFFFc8118b487fb7c8118b48 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc8118b487fb7c8118b48 /* PxsSimpleIslandManager.cpp */; }; - FFFFc40262007fb7c4026200 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc40262007fb7c4026200 /* collision/PxcContact.cpp */; }; - FFFFc40262687fb7c4026268 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc40262687fb7c4026268 /* pipeline/PxcContactCache.cpp */; }; - FFFFc40262d07fb7c40262d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc40262d07fb7c40262d0 /* pipeline/PxcContactMethodImpl.cpp */; }; - FFFFc40263387fb7c4026338 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc40263387fb7c4026338 /* pipeline/PxcMaterialHeightField.cpp */; }; - FFFFc40263a07fb7c40263a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc40263a07fb7c40263a0 /* pipeline/PxcMaterialMesh.cpp */; }; - FFFFc40264087fb7c4026408 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc40264087fb7c4026408 /* pipeline/PxcMaterialMethodImpl.cpp */; }; - FFFFc40264707fb7c4026470 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc40264707fb7c4026470 /* pipeline/PxcMaterialShape.cpp */; }; - FFFFc40264d87fb7c40264d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc40264d87fb7c40264d8 /* pipeline/PxcNpBatch.cpp */; }; - FFFFc40265407fb7c4026540 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc40265407fb7c4026540 /* pipeline/PxcNpCacheStreamPair.cpp */; }; - FFFFc40265a87fb7c40265a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc40265a87fb7c40265a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; - FFFFc40266107fb7c4026610 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc40266107fb7c4026610 /* pipeline/PxcNpMemBlockPool.cpp */; }; - FFFFc40266787fb7c4026678 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc40266787fb7c4026678 /* pipeline/PxcNpThreadContext.cpp */; }; + FFFFfab2a4b07fbcfab2a4b0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDfab2a4b07fbcfab2a4b0 /* px_globals.cpp */; }; + FFFFfab328007fbcfab32800 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab328007fbcfab32800 /* PxsCCD.cpp */; }; + FFFFfab328687fbcfab32868 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab328687fbcfab32868 /* PxsContactManager.cpp */; }; + FFFFfab328d07fbcfab328d0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab328d07fbcfab328d0 /* PxsContext.cpp */; }; + FFFFfab329387fbcfab32938 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab329387fbcfab32938 /* PxsDefaultMemoryManager.cpp */; }; + FFFFfab329a07fbcfab329a0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab329a07fbcfab329a0 /* PxsIslandSim.cpp */; }; + FFFFfab32a087fbcfab32a08 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab32a087fbcfab32a08 /* PxsMaterialCombiner.cpp */; }; + FFFFfab32a707fbcfab32a70 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab32a707fbcfab32a70 /* PxsNphaseImplementationContext.cpp */; }; + FFFFfab32ad87fbcfab32ad8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab32ad87fbcfab32ad8 /* PxsSimpleIslandManager.cpp */; }; + FFFFfa1bc0007fbcfa1bc000 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc0007fbcfa1bc000 /* collision/PxcContact.cpp */; }; + FFFFfa1bc0687fbcfa1bc068 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc0687fbcfa1bc068 /* pipeline/PxcContactCache.cpp */; }; + FFFFfa1bc0d07fbcfa1bc0d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc0d07fbcfa1bc0d0 /* pipeline/PxcContactMethodImpl.cpp */; }; + FFFFfa1bc1387fbcfa1bc138 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc1387fbcfa1bc138 /* pipeline/PxcMaterialHeightField.cpp */; }; + FFFFfa1bc1a07fbcfa1bc1a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc1a07fbcfa1bc1a0 /* pipeline/PxcMaterialMesh.cpp */; }; + FFFFfa1bc2087fbcfa1bc208 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc2087fbcfa1bc208 /* pipeline/PxcMaterialMethodImpl.cpp */; }; + FFFFfa1bc2707fbcfa1bc270 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc2707fbcfa1bc270 /* pipeline/PxcMaterialShape.cpp */; }; + FFFFfa1bc2d87fbcfa1bc2d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc2d87fbcfa1bc2d8 /* pipeline/PxcNpBatch.cpp */; }; + FFFFfa1bc3407fbcfa1bc340 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc3407fbcfa1bc340 /* pipeline/PxcNpCacheStreamPair.cpp */; }; + FFFFfa1bc3a87fbcfa1bc3a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc3a87fbcfa1bc3a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; + FFFFfa1bc4107fbcfa1bc410 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc4107fbcfa1bc410 /* pipeline/PxcNpMemBlockPool.cpp */; }; + FFFFfa1bc4787fbcfa1bc478 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc4787fbcfa1bc478 /* pipeline/PxcNpThreadContext.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc81162307fb7c8116230 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc81180107fb7c8118010 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc81183107fb7c8118310 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc81183787fb7c8118378 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc81183e07fb7c81183e0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDc81184487fb7c8118448 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc81184b07fb7c81184b0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc81185187fb7c8118518 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc81185807fb7c8118580 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; - FFFDc81185e87fb7c81185e8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc81186507fb7c8118650 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFDc81188707fb7c8118870 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc81188d87fb7c81188d8 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc81189407fb7c8118940 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc81189a87fb7c81189a8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc8118a107fb7c8118a10 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc8118a787fb7c8118a78 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc8118ae07fb7c8118ae0 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc8118b487fb7c8118b48 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40258007fb7c4025800 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40258687fb7c4025868 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40258d07fb7c40258d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40259387fb7c4025938 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40259a07fb7c40259a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025a087fb7c4025a08 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025a707fb7c4025a70 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025ad87fb7c4025ad8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025b407fb7c4025b40 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025ba87fb7c4025ba8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025c107fb7c4025c10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025c787fb7c4025c78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025ce07fb7c4025ce0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025d487fb7c4025d48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025db07fb7c4025db0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025e187fb7c4025e18 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025e807fb7c4025e80 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025ee87fb7c4025ee8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025f507fb7c4025f50 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4025fb87fb7c4025fb8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40262007fb7c4026200 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40262687fb7c4026268 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40262d07fb7c40262d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40263387fb7c4026338 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40263a07fb7c40263a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40264087fb7c4026408 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40264707fb7c4026470 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40264d87fb7c40264d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40265407fb7c4026540 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40265a87fb7c40265a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40266107fb7c4026610 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40266787fb7c4026678 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4026a007fb7c4026a00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026a687fb7c4026a68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026ad07fb7c4026ad0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026b387fb7c4026b38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026ba07fb7c4026ba0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026c087fb7c4026c08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026c707fb7c4026c70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026cd87fb7c4026cd8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026d407fb7c4026d40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026da87fb7c4026da8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026e107fb7c4026e10 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026e787fb7c4026e78 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026ee07fb7c4026ee0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026f487fb7c4026f48 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4026fb07fb7c4026fb0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab277107fbcfab27710 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfab2a4b07fbcfab2a4b0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfab316007fbcfab31600 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab316687fbcfab31668 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab316d07fbcfab316d0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab317387fbcfab31738 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab317a07fbcfab317a0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab318087fbcfab31808 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab318707fbcfab31870 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab318d87fbcfab318d8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab319407fbcfab31940 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab328007fbcfab32800 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfab328687fbcfab32868 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfab328d07fbcfab328d0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfab329387fbcfab32938 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfab329a07fbcfab329a0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfab32a087fbcfab32a08 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfab32a707fbcfab32a70 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfab32ad87fbcfab32ad8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bd6007fbcfa1bd600 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bd6687fbcfa1bd668 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bd6d07fbcfa1bd6d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bd7387fbcfa1bd738 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bd7a07fbcfa1bd7a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bd8087fbcfa1bd808 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bd8707fbcfa1bd870 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bd8d87fbcfa1bd8d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bd9407fbcfa1bd940 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bd9a87fbcfa1bd9a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bda107fbcfa1bda10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bda787fbcfa1bda78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bdae07fbcfa1bdae0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bdb487fbcfa1bdb48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bdbb07fbcfa1bdbb0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bdc187fbcfa1bdc18 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bdc807fbcfa1bdc80 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bdce87fbcfa1bdce8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bdd507fbcfa1bdd50 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bddb87fbcfa1bddb8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc0007fbcfa1bc000 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc0687fbcfa1bc068 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc0d07fbcfa1bc0d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc1387fbcfa1bc138 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc1a07fbcfa1bc1a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc2087fbcfa1bc208 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc2707fbcfa1bc270 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc2d87fbcfa1bc2d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc3407fbcfa1bc340 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc3a87fbcfa1bc3a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc4107fbcfa1bc410 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc4787fbcfa1bc478 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc8007fbcfa1bc800 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc8687fbcfa1bc868 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc8d07fbcfa1bc8d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc9387fbcfa1bc938 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bc9a07fbcfa1bc9a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bca087fbcfa1bca08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bca707fbcfa1bca70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bcad87fbcfa1bcad8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bcb407fbcfa1bcb40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bcba87fbcfa1bcba8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bcc107fbcfa1bcc10 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bcc787fbcfa1bcc78 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bcce07fbcfa1bcce0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bcd487fbcfa1bcd48 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1bcdb07fbcfa1bcdb0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c81162307fb7c8116230 /* Resources */ = { + FFF2fab277107fbcfab27710 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2415,7 +2415,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc81162307fb7c8116230 /* Frameworks */ = { + FFFCfab277107fbcfab27710 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2425,31 +2425,31 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c81162307fb7c8116230 /* Sources */ = { + FFF8fab277107fbcfab27710 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc81180107fb7c8118010, - FFFFc81188707fb7c8118870, - FFFFc81188d87fb7c81188d8, - FFFFc81189407fb7c8118940, - FFFFc81189a87fb7c81189a8, - FFFFc8118a107fb7c8118a10, - FFFFc8118a787fb7c8118a78, - FFFFc8118ae07fb7c8118ae0, - FFFFc8118b487fb7c8118b48, - FFFFc40262007fb7c4026200, - FFFFc40262687fb7c4026268, - FFFFc40262d07fb7c40262d0, - FFFFc40263387fb7c4026338, - FFFFc40263a07fb7c40263a0, - FFFFc40264087fb7c4026408, - FFFFc40264707fb7c4026470, - FFFFc40264d87fb7c40264d8, - FFFFc40265407fb7c4026540, - FFFFc40265a87fb7c40265a8, - FFFFc40266107fb7c4026610, - FFFFc40266787fb7c4026678, + FFFFfab2a4b07fbcfab2a4b0, + FFFFfab328007fbcfab32800, + FFFFfab328687fbcfab32868, + FFFFfab328d07fbcfab328d0, + FFFFfab329387fbcfab32938, + FFFFfab329a07fbcfab329a0, + FFFFfab32a087fbcfab32a08, + FFFFfab32a707fbcfab32a70, + FFFFfab32ad87fbcfab32ad8, + FFFFfa1bc0007fbcfa1bc000, + FFFFfa1bc0687fbcfa1bc068, + FFFFfa1bc0d07fbcfa1bc0d0, + FFFFfa1bc1387fbcfa1bc138, + FFFFfa1bc1a07fbcfa1bc1a0, + FFFFfa1bc2087fbcfa1bc208, + FFFFfa1bc2707fbcfa1bc270, + FFFFfa1bc2d87fbcfa1bc2d8, + FFFFfa1bc3407fbcfa1bc340, + FFFFfa1bc3a87fbcfa1bc3a8, + FFFFfa1bc4107fbcfa1bc410, + FFFFfa1bc4787fbcfa1bc478, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2461,38 +2461,38 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelAABB */ - FFFFc402a4707fb7c402a470 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc402a4707fb7c402a470 /* BpBroadPhase.cpp */; }; - FFFFc402a4d87fb7c402a4d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc402a4d87fb7c402a4d8 /* BpBroadPhaseMBP.cpp */; }; - FFFFc402a5407fb7c402a540 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc402a5407fb7c402a540 /* BpBroadPhaseSap.cpp */; }; - FFFFc402a5a87fb7c402a5a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc402a5a87fb7c402a5a8 /* BpBroadPhaseSapAux.cpp */; }; - FFFFc402a6107fb7c402a610 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc402a6107fb7c402a610 /* BpMBPTasks.cpp */; }; - FFFFc402a6787fb7c402a678 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc402a6787fb7c402a678 /* BpSAPTasks.cpp */; }; - FFFFc402a6e07fb7c402a6e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc402a6e07fb7c402a6e0 /* BpSimpleAABBManager.cpp */; }; + FFFFfa1c66707fbcfa1c6670 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c66707fbcfa1c6670 /* BpBroadPhase.cpp */; }; + FFFFfa1c66d87fbcfa1c66d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c66d87fbcfa1c66d8 /* BpBroadPhaseMBP.cpp */; }; + FFFFfa1c67407fbcfa1c6740 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c67407fbcfa1c6740 /* BpBroadPhaseSap.cpp */; }; + FFFFfa1c67a87fbcfa1c67a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c67a87fbcfa1c67a8 /* BpBroadPhaseSapAux.cpp */; }; + FFFFfa1c68107fbcfa1c6810 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c68107fbcfa1c6810 /* BpMBPTasks.cpp */; }; + FFFFfa1c68787fbcfa1c6878 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c68787fbcfa1c6878 /* BpSAPTasks.cpp */; }; + FFFFfa1c68e07fbcfa1c68e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c68e07fbcfa1c68e0 /* BpSimpleAABBManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc811f6607fb7c811f660 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc8121ce07fb7c8121ce0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDc8121d487fb7c8121d48 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc8121db07fb7c8121db0 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc8121e187fb7c8121e18 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402a2007fb7c402a200 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402a2687fb7c402a268 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402a2d07fb7c402a2d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402a3387fb7c402a338 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402a3a07fb7c402a3a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402a4087fb7c402a408 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDc402a4707fb7c402a470 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc402a4d87fb7c402a4d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc402a5407fb7c402a540 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc402a5a87fb7c402a5a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc402a6107fb7c402a610 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc402a6787fb7c402a678 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc402a6e07fb7c402a6e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfab514407fbcfab51440 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfab4c6b07fbcfab4c6b0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab4c7187fbcfab4c718 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab4c7807fbcfab4c780 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab4c7e87fbcfab4c7e8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c64007fbcfa1c6400 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c64687fbcfa1c6468 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c64d07fbcfa1c64d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c65387fbcfa1c6538 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c65a07fbcfa1c65a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c66087fbcfa1c6608 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c66707fbcfa1c6670 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c66d87fbcfa1c66d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c67407fbcfa1c6740 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c67a87fbcfa1c67a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c68107fbcfa1c6810 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c68787fbcfa1c6878 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1c68e07fbcfa1c68e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c811f6607fb7c811f660 /* Resources */ = { + FFF2fab514407fbcfab51440 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,7 +2502,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc811f6607fb7c811f660 /* Frameworks */ = { + FFFCfab514407fbcfab51440 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2512,17 +2512,17 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c811f6607fb7c811f660 /* Sources */ = { + FFF8fab514407fbcfab51440 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc402a4707fb7c402a470, - FFFFc402a4d87fb7c402a4d8, - FFFFc402a5407fb7c402a540, - FFFFc402a5a87fb7c402a5a8, - FFFFc402a6107fb7c402a610, - FFFFc402a6787fb7c402a678, - FFFFc402a6e07fb7c402a6e0, + FFFFfa1c66707fbcfa1c6670, + FFFFfa1c66d87fbcfa1c66d8, + FFFFfa1c67407fbcfa1c6740, + FFFFfa1c67a87fbcfa1c67a8, + FFFFfa1c68107fbcfa1c6810, + FFFFfa1c68787fbcfa1c6878, + FFFFfa1c68e07fbcfa1c68e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2534,106 +2534,106 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelDynamics */ - FFFFc38106007fb7c3810600 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc38106007fb7c3810600 /* DyArticulation.cpp */; }; - FFFFc38106687fb7c3810668 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc38106687fb7c3810668 /* DyArticulationContactPrep.cpp */; }; - FFFFc38106d07fb7c38106d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc38106d07fb7c38106d0 /* DyArticulationContactPrepPF.cpp */; }; - FFFFc38107387fb7c3810738 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc38107387fb7c3810738 /* DyArticulationHelper.cpp */; }; - FFFFc38107a07fb7c38107a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc38107a07fb7c38107a0 /* DyArticulationSIMD.cpp */; }; - FFFFc38108087fb7c3810808 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc38108087fb7c3810808 /* DyArticulationScalar.cpp */; }; - FFFFc38108707fb7c3810870 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc38108707fb7c3810870 /* DyConstraintPartition.cpp */; }; - FFFFc38108d87fb7c38108d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc38108d87fb7c38108d8 /* DyConstraintSetup.cpp */; }; - FFFFc38109407fb7c3810940 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc38109407fb7c3810940 /* DyConstraintSetupBlock.cpp */; }; - FFFFc38109a87fb7c38109a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc38109a87fb7c38109a8 /* DyContactPrep.cpp */; }; - FFFFc3810a107fb7c3810a10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810a107fb7c3810a10 /* DyContactPrep4.cpp */; }; - FFFFc3810a787fb7c3810a78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810a787fb7c3810a78 /* DyContactPrep4PF.cpp */; }; - FFFFc3810ae07fb7c3810ae0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810ae07fb7c3810ae0 /* DyContactPrepPF.cpp */; }; - FFFFc3810b487fb7c3810b48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810b487fb7c3810b48 /* DyDynamics.cpp */; }; - FFFFc3810bb07fb7c3810bb0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810bb07fb7c3810bb0 /* DyFrictionCorrelation.cpp */; }; - FFFFc3810c187fb7c3810c18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810c187fb7c3810c18 /* DyRigidBodyToSolverBody.cpp */; }; - FFFFc3810c807fb7c3810c80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810c807fb7c3810c80 /* DySolverConstraints.cpp */; }; - FFFFc3810ce87fb7c3810ce8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810ce87fb7c3810ce8 /* DySolverConstraintsBlock.cpp */; }; - FFFFc3810d507fb7c3810d50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810d507fb7c3810d50 /* DySolverControl.cpp */; }; - FFFFc3810db87fb7c3810db8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810db87fb7c3810db8 /* DySolverControlPF.cpp */; }; - FFFFc3810e207fb7c3810e20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810e207fb7c3810e20 /* DySolverPFConstraints.cpp */; }; - FFFFc3810e887fb7c3810e88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810e887fb7c3810e88 /* DySolverPFConstraintsBlock.cpp */; }; - FFFFc3810ef07fb7c3810ef0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810ef07fb7c3810ef0 /* DyThreadContext.cpp */; }; - FFFFc3810f587fb7c3810f58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc3810f587fb7c3810f58 /* DyThresholdTable.cpp */; }; + FFFFfb820e007fbcfb820e00 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb820e007fbcfb820e00 /* DyArticulation.cpp */; }; + FFFFfb820e687fbcfb820e68 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb820e687fbcfb820e68 /* DyArticulationContactPrep.cpp */; }; + FFFFfb820ed07fbcfb820ed0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb820ed07fbcfb820ed0 /* DyArticulationContactPrepPF.cpp */; }; + FFFFfb820f387fbcfb820f38 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb820f387fbcfb820f38 /* DyArticulationHelper.cpp */; }; + FFFFfb820fa07fbcfb820fa0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb820fa07fbcfb820fa0 /* DyArticulationSIMD.cpp */; }; + FFFFfb8210087fbcfb821008 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8210087fbcfb821008 /* DyArticulationScalar.cpp */; }; + FFFFfb8210707fbcfb821070 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8210707fbcfb821070 /* DyConstraintPartition.cpp */; }; + FFFFfb8210d87fbcfb8210d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8210d87fbcfb8210d8 /* DyConstraintSetup.cpp */; }; + FFFFfb8211407fbcfb821140 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8211407fbcfb821140 /* DyConstraintSetupBlock.cpp */; }; + FFFFfb8211a87fbcfb8211a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8211a87fbcfb8211a8 /* DyContactPrep.cpp */; }; + FFFFfb8212107fbcfb821210 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8212107fbcfb821210 /* DyContactPrep4.cpp */; }; + FFFFfb8212787fbcfb821278 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8212787fbcfb821278 /* DyContactPrep4PF.cpp */; }; + FFFFfb8212e07fbcfb8212e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8212e07fbcfb8212e0 /* DyContactPrepPF.cpp */; }; + FFFFfb8213487fbcfb821348 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8213487fbcfb821348 /* DyDynamics.cpp */; }; + FFFFfb8213b07fbcfb8213b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8213b07fbcfb8213b0 /* DyFrictionCorrelation.cpp */; }; + FFFFfb8214187fbcfb821418 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8214187fbcfb821418 /* DyRigidBodyToSolverBody.cpp */; }; + FFFFfb8214807fbcfb821480 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8214807fbcfb821480 /* DySolverConstraints.cpp */; }; + FFFFfb8214e87fbcfb8214e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8214e87fbcfb8214e8 /* DySolverConstraintsBlock.cpp */; }; + FFFFfb8215507fbcfb821550 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8215507fbcfb821550 /* DySolverControl.cpp */; }; + FFFFfb8215b87fbcfb8215b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8215b87fbcfb8215b8 /* DySolverControlPF.cpp */; }; + FFFFfb8216207fbcfb821620 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8216207fbcfb821620 /* DySolverPFConstraints.cpp */; }; + FFFFfb8216887fbcfb821688 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8216887fbcfb821688 /* DySolverPFConstraintsBlock.cpp */; }; + FFFFfb8216f07fbcfb8216f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8216f07fbcfb8216f0 /* DyThreadContext.cpp */; }; + FFFFfb8217587fbcfb821758 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8217587fbcfb821758 /* DyThresholdTable.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc4a1ce107fb7c4a1ce10 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc38106007fb7c3810600 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38106687fb7c3810668 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38106d07fb7c38106d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38107387fb7c3810738 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38107a07fb7c38107a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38108087fb7c3810808 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38108707fb7c3810870 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38108d87fb7c38108d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38109407fb7c3810940 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc38109a87fb7c38109a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810a107fb7c3810a10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810a787fb7c3810a78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810ae07fb7c3810ae0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810b487fb7c3810b48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810bb07fb7c3810bb0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810c187fb7c3810c18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810c807fb7c3810c80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810ce87fb7c3810ce8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810d507fb7c3810d50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810db87fb7c3810db8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810e207fb7c3810e20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810e887fb7c3810e88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810ef07fb7c3810ef0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3810f587fb7c3810f58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc344e8d07fb7c344e8d0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc344e9387fb7c344e938 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc344e9a07fb7c344e9a0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; - FFFDc344ea087fb7c344ea08 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc344ea707fb7c344ea70 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDc344ead87fb7c344ead8 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc344eb407fb7c344eb40 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38126007fb7c3812600 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38126687fb7c3812668 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38126d07fb7c38126d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38127387fb7c3812738 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38127a07fb7c38127a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38128087fb7c3812808 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38128707fb7c3812870 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38128d87fb7c38128d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38129407fb7c3812940 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38129a87fb7c38129a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812a107fb7c3812a10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812a787fb7c3812a78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812ae07fb7c3812ae0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812b487fb7c3812b48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812bb07fb7c3812bb0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812c187fb7c3812c18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812c807fb7c3812c80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812ce87fb7c3812ce8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812d507fb7c3812d50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812db87fb7c3812db8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812e207fb7c3812e20 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812e887fb7c3812e88 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812ef07fb7c3812ef0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812f587fb7c3812f58 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3812fc07fb7c3812fc0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38130287fb7c3813028 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38130907fb7c3813090 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38130f87fb7c38130f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38131607fb7c3813160 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38131c87fb7c38131c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38132307fb7c3813230 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38132987fb7c3813298 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38133007fb7c3813300 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38133687fb7c3813368 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38133d07fb7c38133d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38134387fb7c3813438 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; - FFFDc38134a07fb7c38134a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDfaef20807fbcfaef2080 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfb820e007fbcfb820e00 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb820e687fbcfb820e68 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb820ed07fbcfb820ed0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb820f387fbcfb820f38 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb820fa07fbcfb820fa0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8210087fbcfb821008 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8210707fbcfb821070 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8210d87fbcfb8210d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8211407fbcfb821140 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8211a87fbcfb8211a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8212107fbcfb821210 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8212787fbcfb821278 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8212e07fbcfb8212e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8213487fbcfb821348 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8213b07fbcfb8213b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8214187fbcfb821418 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8214807fbcfb821480 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8214e87fbcfb8214e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8215507fbcfb821550 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8215b87fbcfb8215b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8216207fbcfb821620 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8216887fbcfb821688 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8216f07fbcfb8216f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfb8217587fbcfb821758 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfaf0b7b07fbcfaf0b7b0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDfaf0b8187fbcfaf0b818 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDfaf0b8807fbcfaf0b880 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; + FFFDfaf0b8e87fbcfaf0b8e8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDfaf0b9507fbcfaf0b950 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDfaf0b9b87fbcfaf0b9b8 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDfaf0ba207fbcfaf0ba20 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8220007fbcfb822000 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8220687fbcfb822068 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8220d07fbcfb8220d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8221387fbcfb822138 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8221a07fbcfb8221a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8222087fbcfb822208 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8222707fbcfb822270 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8222d87fbcfb8222d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8223407fbcfb822340 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8223a87fbcfb8223a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8224107fbcfb822410 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8224787fbcfb822478 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8224e07fbcfb8224e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8225487fbcfb822548 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8225b07fbcfb8225b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8226187fbcfb822618 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8226807fbcfb822680 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8226e87fbcfb8226e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8227507fbcfb822750 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8227b87fbcfb8227b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8228207fbcfb822820 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8228887fbcfb822888 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8228f07fbcfb8228f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8229587fbcfb822958 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb8229c07fbcfb8229c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb822a287fbcfb822a28 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb822a907fbcfb822a90 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb822af87fbcfb822af8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb822b607fbcfb822b60 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb822bc87fbcfb822bc8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb822c307fbcfb822c30 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb822c987fbcfb822c98 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb822d007fbcfb822d00 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb822d687fbcfb822d68 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb822dd07fbcfb822dd0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb822e387fbcfb822e38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; + FFFDfb822ea07fbcfb822ea0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c4a1ce107fb7c4a1ce10 /* Resources */ = { + FFF2faef20807fbcfaef2080 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2643,7 +2643,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc4a1ce107fb7c4a1ce10 /* Frameworks */ = { + FFFCfaef20807fbcfaef2080 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2653,34 +2653,34 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c4a1ce107fb7c4a1ce10 /* Sources */ = { + FFF8faef20807fbcfaef2080 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc38106007fb7c3810600, - FFFFc38106687fb7c3810668, - FFFFc38106d07fb7c38106d0, - FFFFc38107387fb7c3810738, - FFFFc38107a07fb7c38107a0, - FFFFc38108087fb7c3810808, - FFFFc38108707fb7c3810870, - FFFFc38108d87fb7c38108d8, - FFFFc38109407fb7c3810940, - FFFFc38109a87fb7c38109a8, - FFFFc3810a107fb7c3810a10, - FFFFc3810a787fb7c3810a78, - FFFFc3810ae07fb7c3810ae0, - FFFFc3810b487fb7c3810b48, - FFFFc3810bb07fb7c3810bb0, - FFFFc3810c187fb7c3810c18, - FFFFc3810c807fb7c3810c80, - FFFFc3810ce87fb7c3810ce8, - FFFFc3810d507fb7c3810d50, - FFFFc3810db87fb7c3810db8, - FFFFc3810e207fb7c3810e20, - FFFFc3810e887fb7c3810e88, - FFFFc3810ef07fb7c3810ef0, - FFFFc3810f587fb7c3810f58, + FFFFfb820e007fbcfb820e00, + FFFFfb820e687fbcfb820e68, + FFFFfb820ed07fbcfb820ed0, + FFFFfb820f387fbcfb820f38, + FFFFfb820fa07fbcfb820fa0, + FFFFfb8210087fbcfb821008, + FFFFfb8210707fbcfb821070, + FFFFfb8210d87fbcfb8210d8, + FFFFfb8211407fbcfb821140, + FFFFfb8211a87fbcfb8211a8, + FFFFfb8212107fbcfb821210, + FFFFfb8212787fbcfb821278, + FFFFfb8212e07fbcfb8212e0, + FFFFfb8213487fbcfb821348, + FFFFfb8213b07fbcfb8213b0, + FFFFfb8214187fbcfb821418, + FFFFfb8214807fbcfb821480, + FFFFfb8214e87fbcfb8214e8, + FFFFfb8215507fbcfb821550, + FFFFfb8215b87fbcfb8215b8, + FFFFfb8216207fbcfb821620, + FFFFfb8216887fbcfb821688, + FFFFfb8216f07fbcfb8216f0, + FFFFfb8217587fbcfb821758, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2692,70 +2692,70 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelCloth */ - FFFFc60087587fb7c6008758 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc60087587fb7c6008758 /* Allocator.cpp */; }; - FFFFc60087c07fb7c60087c0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc60087c07fb7c60087c0 /* Factory.cpp */; }; - FFFFc60088287fb7c6008828 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc60088287fb7c6008828 /* PhaseConfig.cpp */; }; - FFFFc60088907fb7c6008890 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc60088907fb7c6008890 /* SwCloth.cpp */; }; - FFFFc60088f87fb7c60088f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc60088f87fb7c60088f8 /* SwClothData.cpp */; }; - FFFFc60089607fb7c6008960 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc60089607fb7c6008960 /* SwCollision.cpp */; }; - FFFFc60089c87fb7c60089c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc60089c87fb7c60089c8 /* SwFabric.cpp */; }; - FFFFc6008a307fb7c6008a30 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6008a307fb7c6008a30 /* SwFactory.cpp */; }; - FFFFc6008a987fb7c6008a98 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6008a987fb7c6008a98 /* SwInterCollision.cpp */; }; - FFFFc6008b007fb7c6008b00 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6008b007fb7c6008b00 /* SwSelfCollision.cpp */; }; - FFFFc6008b687fb7c6008b68 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6008b687fb7c6008b68 /* SwSolver.cpp */; }; - FFFFc6008bd07fb7c6008bd0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6008bd07fb7c6008bd0 /* SwSolverKernel.cpp */; }; - FFFFc6008c387fb7c6008c38 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc6008c387fb7c6008c38 /* TripletScheduler.cpp */; }; + FFFFfa1d0b587fbcfa1d0b58 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0b587fbcfa1d0b58 /* Allocator.cpp */; }; + FFFFfa1d0bc07fbcfa1d0bc0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0bc07fbcfa1d0bc0 /* Factory.cpp */; }; + FFFFfa1d0c287fbcfa1d0c28 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0c287fbcfa1d0c28 /* PhaseConfig.cpp */; }; + FFFFfa1d0c907fbcfa1d0c90 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0c907fbcfa1d0c90 /* SwCloth.cpp */; }; + FFFFfa1d0cf87fbcfa1d0cf8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0cf87fbcfa1d0cf8 /* SwClothData.cpp */; }; + FFFFfa1d0d607fbcfa1d0d60 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0d607fbcfa1d0d60 /* SwCollision.cpp */; }; + FFFFfa1d0dc87fbcfa1d0dc8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0dc87fbcfa1d0dc8 /* SwFabric.cpp */; }; + FFFFfa1d0e307fbcfa1d0e30 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0e307fbcfa1d0e30 /* SwFactory.cpp */; }; + FFFFfa1d0e987fbcfa1d0e98 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0e987fbcfa1d0e98 /* SwInterCollision.cpp */; }; + FFFFfa1d0f007fbcfa1d0f00 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0f007fbcfa1d0f00 /* SwSelfCollision.cpp */; }; + FFFFfa1d0f687fbcfa1d0f68 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0f687fbcfa1d0f68 /* SwSolver.cpp */; }; + FFFFfa1d0fd07fbcfa1d0fd0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0fd07fbcfa1d0fd0 /* SwSolverKernel.cpp */; }; + FFFFfa1d10387fbcfa1d1038 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d10387fbcfa1d1038 /* TripletScheduler.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc812c3507fb7c812c350 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc36545b07fb7c36545b0 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDc36546187fb7c3654618 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDc36546807fb7c3654680 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc36546e87fb7c36546e8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDc36547507fb7c3654750 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; - FFFDc36547b87fb7c36547b8 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; - FFFDc36548207fb7c3654820 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6007e007fb7c6007e00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6007e687fb7c6007e68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6007ed07fb7c6007ed0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6007f387fb7c6007f38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc6007fa07fb7c6007fa0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60080087fb7c6008008 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60080707fb7c6008070 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60080d87fb7c60080d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60081407fb7c6008140 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60081a87fb7c60081a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60082107fb7c6008210 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60082787fb7c6008278 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60082e07fb7c60082e0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60083487fb7c6008348 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60083b07fb7c60083b0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60084187fb7c6008418 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60084807fb7c6008480 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60084e87fb7c60084e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60085507fb7c6008550 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60085b87fb7c60085b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60086207fb7c6008620 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60086887fb7c6008688 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60086f07fb7c60086f0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; - FFFDc60087587fb7c6008758 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc60087c07fb7c60087c0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc60088287fb7c6008828 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc60088907fb7c6008890 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc60088f87fb7c60088f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc60089607fb7c6008960 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc60089c87fb7c60089c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6008a307fb7c6008a30 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6008a987fb7c6008a98 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6008b007fb7c6008b00 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6008b687fb7c6008b68 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6008bd07fb7c6008bd0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc6008c387fb7c6008c38 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfab48c407fbcfab48c40 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfab60ea07fbcfab60ea0 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab60f087fbcfab60f08 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab60f707fbcfab60f70 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab60fd87fbcfab60fd8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab610407fbcfab61040 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab610a87fbcfab610a8 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; + FFFDfab611107fbcfab61110 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d02007fbcfa1d0200 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d02687fbcfa1d0268 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d02d07fbcfa1d02d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d03387fbcfa1d0338 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d03a07fbcfa1d03a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d04087fbcfa1d0408 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d04707fbcfa1d0470 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d04d87fbcfa1d04d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d05407fbcfa1d0540 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d05a87fbcfa1d05a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d06107fbcfa1d0610 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d06787fbcfa1d0678 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d06e07fbcfa1d06e0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d07487fbcfa1d0748 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d07b07fbcfa1d07b0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d08187fbcfa1d0818 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d08807fbcfa1d0880 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d08e87fbcfa1d08e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d09507fbcfa1d0950 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d09b87fbcfa1d09b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0a207fbcfa1d0a20 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0a887fbcfa1d0a88 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0af07fbcfa1d0af0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0b587fbcfa1d0b58 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0bc07fbcfa1d0bc0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0c287fbcfa1d0c28 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0c907fbcfa1d0c90 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0cf87fbcfa1d0cf8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0d607fbcfa1d0d60 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0dc87fbcfa1d0dc8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0e307fbcfa1d0e30 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0e987fbcfa1d0e98 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0f007fbcfa1d0f00 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0f687fbcfa1d0f68 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d0fd07fbcfa1d0fd0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfa1d10387fbcfa1d1038 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c812c3507fb7c812c350 /* Resources */ = { + FFF2fab48c407fbcfab48c40 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2765,7 +2765,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc812c3507fb7c812c350 /* Frameworks */ = { + FFFCfab48c407fbcfab48c40 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2775,23 +2775,23 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c812c3507fb7c812c350 /* Sources */ = { + FFF8fab48c407fbcfab48c40 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc60087587fb7c6008758, - FFFFc60087c07fb7c60087c0, - FFFFc60088287fb7c6008828, - FFFFc60088907fb7c6008890, - FFFFc60088f87fb7c60088f8, - FFFFc60089607fb7c6008960, - FFFFc60089c87fb7c60089c8, - FFFFc6008a307fb7c6008a30, - FFFFc6008a987fb7c6008a98, - FFFFc6008b007fb7c6008b00, - FFFFc6008b687fb7c6008b68, - FFFFc6008bd07fb7c6008bd0, - FFFFc6008c387fb7c6008c38, + FFFFfa1d0b587fbcfa1d0b58, + FFFFfa1d0bc07fbcfa1d0bc0, + FFFFfa1d0c287fbcfa1d0c28, + FFFFfa1d0c907fbcfa1d0c90, + FFFFfa1d0cf87fbcfa1d0cf8, + FFFFfa1d0d607fbcfa1d0d60, + FFFFfa1d0dc87fbcfa1d0dc8, + FFFFfa1d0e307fbcfa1d0e30, + FFFFfa1d0e987fbcfa1d0e98, + FFFFfa1d0f007fbcfa1d0f00, + FFFFfa1d0f687fbcfa1d0f68, + FFFFfa1d0fd07fbcfa1d0fd0, + FFFFfa1d10387fbcfa1d1038, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2803,79 +2803,79 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelParticles */ - FFFFc600bf587fb7c600bf58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600bf587fb7c600bf58 /* PtBatcher.cpp */; }; - FFFFc600bfc07fb7c600bfc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600bfc07fb7c600bfc0 /* PtBodyTransformVault.cpp */; }; - FFFFc600c0287fb7c600c028 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c0287fb7c600c028 /* PtCollision.cpp */; }; - FFFFc600c0907fb7c600c090 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c0907fb7c600c090 /* PtCollisionBox.cpp */; }; - FFFFc600c0f87fb7c600c0f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c0f87fb7c600c0f8 /* PtCollisionCapsule.cpp */; }; - FFFFc600c1607fb7c600c160 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c1607fb7c600c160 /* PtCollisionConvex.cpp */; }; - FFFFc600c1c87fb7c600c1c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c1c87fb7c600c1c8 /* PtCollisionMesh.cpp */; }; - FFFFc600c2307fb7c600c230 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c2307fb7c600c230 /* PtCollisionPlane.cpp */; }; - FFFFc600c2987fb7c600c298 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c2987fb7c600c298 /* PtCollisionSphere.cpp */; }; - FFFFc600c3007fb7c600c300 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c3007fb7c600c300 /* PtContextCpu.cpp */; }; - FFFFc600c3687fb7c600c368 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c3687fb7c600c368 /* PtDynamics.cpp */; }; - FFFFc600c3d07fb7c600c3d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c3d07fb7c600c3d0 /* PtParticleData.cpp */; }; - FFFFc600c4387fb7c600c438 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c4387fb7c600c438 /* PtParticleShapeCpu.cpp */; }; - FFFFc600c4a07fb7c600c4a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c4a07fb7c600c4a0 /* PtParticleSystemSimCpu.cpp */; }; - FFFFc600c5087fb7c600c508 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c5087fb7c600c508 /* PtSpatialHash.cpp */; }; - FFFFc600c5707fb7c600c570 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc600c5707fb7c600c570 /* PtSpatialLocalHash.cpp */; }; + FFFFfc8097587fbcfc809758 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8097587fbcfc809758 /* PtBatcher.cpp */; }; + FFFFfc8097c07fbcfc8097c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8097c07fbcfc8097c0 /* PtBodyTransformVault.cpp */; }; + FFFFfc8098287fbcfc809828 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8098287fbcfc809828 /* PtCollision.cpp */; }; + FFFFfc8098907fbcfc809890 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8098907fbcfc809890 /* PtCollisionBox.cpp */; }; + FFFFfc8098f87fbcfc8098f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8098f87fbcfc8098f8 /* PtCollisionCapsule.cpp */; }; + FFFFfc8099607fbcfc809960 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8099607fbcfc809960 /* PtCollisionConvex.cpp */; }; + FFFFfc8099c87fbcfc8099c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8099c87fbcfc8099c8 /* PtCollisionMesh.cpp */; }; + FFFFfc809a307fbcfc809a30 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809a307fbcfc809a30 /* PtCollisionPlane.cpp */; }; + FFFFfc809a987fbcfc809a98 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809a987fbcfc809a98 /* PtCollisionSphere.cpp */; }; + FFFFfc809b007fbcfc809b00 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809b007fbcfc809b00 /* PtContextCpu.cpp */; }; + FFFFfc809b687fbcfc809b68 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809b687fbcfc809b68 /* PtDynamics.cpp */; }; + FFFFfc809bd07fbcfc809bd0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809bd07fbcfc809bd0 /* PtParticleData.cpp */; }; + FFFFfc809c387fbcfc809c38 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809c387fbcfc809c38 /* PtParticleShapeCpu.cpp */; }; + FFFFfc809ca07fbcfc809ca0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809ca07fbcfc809ca0 /* PtParticleSystemSimCpu.cpp */; }; + FFFFfc809d087fbcfc809d08 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809d087fbcfc809d08 /* PtSpatialHash.cpp */; }; + FFFFfc809d707fbcfc809d70 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809d707fbcfc809d70 /* PtSpatialLocalHash.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc80807f07fb7c80807f0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc5893e007fb7c5893e00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5893e687fb7c5893e68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5893ed07fb7c5893ed0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5893f387fb7c5893f38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc5893fa07fb7c5893fa0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDc58940087fb7c5894008 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc58940707fb7c5894070 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDc58940d87fb7c58940d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc58941407fb7c5894140 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDc58941a87fb7c58941a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600b6007fb7c600b600 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600b6687fb7c600b668 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600b6d07fb7c600b6d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600b7387fb7c600b738 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600b7a07fb7c600b7a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600b8087fb7c600b808 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600b8707fb7c600b870 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600b8d87fb7c600b8d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600b9407fb7c600b940 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600b9a87fb7c600b9a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600ba107fb7c600ba10 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600ba787fb7c600ba78 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600bae07fb7c600bae0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600bb487fb7c600bb48 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600bbb07fb7c600bbb0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600bc187fb7c600bc18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600bc807fb7c600bc80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600bce87fb7c600bce8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600bd507fb7c600bd50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600bdb87fb7c600bdb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600be207fb7c600be20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600be887fb7c600be88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600bef07fb7c600bef0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc600bf587fb7c600bf58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600bfc07fb7c600bfc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c0287fb7c600c028 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c0907fb7c600c090 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c0f87fb7c600c0f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c1607fb7c600c160 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c1c87fb7c600c1c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c2307fb7c600c230 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c2987fb7c600c298 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c3007fb7c600c300 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c3687fb7c600c368 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c3d07fb7c600c3d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c4387fb7c600c438 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c4a07fb7c600c4a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c5087fb7c600c508 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc600c5707fb7c600c570 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc003cb07fbcfc003cb0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfc802e007fbcfc802e00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc802e687fbcfc802e68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc802ed07fbcfc802ed0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc802f387fbcfc802f38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc802fa07fbcfc802fa0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8030087fbcfc803008 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8030707fbcfc803070 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8030d87fbcfc8030d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8031407fbcfc803140 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8031a87fbcfc8031a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc808e007fbcfc808e00 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc808e687fbcfc808e68 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc808ed07fbcfc808ed0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc808f387fbcfc808f38 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc808fa07fbcfc808fa0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8090087fbcfc809008 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8090707fbcfc809070 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8090d87fbcfc8090d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8091407fbcfc809140 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8091a87fbcfc8091a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8092107fbcfc809210 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8092787fbcfc809278 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8092e07fbcfc8092e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8093487fbcfc809348 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8093b07fbcfc8093b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8094187fbcfc809418 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8094807fbcfc809480 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8094e87fbcfc8094e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8095507fbcfc809550 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8095b87fbcfc8095b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8096207fbcfc809620 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8096887fbcfc809688 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8096f07fbcfc8096f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc8097587fbcfc809758 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8097c07fbcfc8097c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8098287fbcfc809828 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8098907fbcfc809890 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8098f87fbcfc8098f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8099607fbcfc809960 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc8099c87fbcfc8099c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc809a307fbcfc809a30 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc809a987fbcfc809a98 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc809b007fbcfc809b00 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc809b687fbcfc809b68 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc809bd07fbcfc809bd0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc809c387fbcfc809c38 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc809ca07fbcfc809ca0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc809d087fbcfc809d08 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc809d707fbcfc809d70 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c80807f07fb7c80807f0 /* Resources */ = { + FFF2fc003cb07fbcfc003cb0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2885,7 +2885,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc80807f07fb7c80807f0 /* Frameworks */ = { + FFFCfc003cb07fbcfc003cb0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2895,26 +2895,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c80807f07fb7c80807f0 /* Sources */ = { + FFF8fc003cb07fbcfc003cb0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc600bf587fb7c600bf58, - FFFFc600bfc07fb7c600bfc0, - FFFFc600c0287fb7c600c028, - FFFFc600c0907fb7c600c090, - FFFFc600c0f87fb7c600c0f8, - FFFFc600c1607fb7c600c160, - FFFFc600c1c87fb7c600c1c8, - FFFFc600c2307fb7c600c230, - FFFFc600c2987fb7c600c298, - FFFFc600c3007fb7c600c300, - FFFFc600c3687fb7c600c368, - FFFFc600c3d07fb7c600c3d0, - FFFFc600c4387fb7c600c438, - FFFFc600c4a07fb7c600c4a0, - FFFFc600c5087fb7c600c508, - FFFFc600c5707fb7c600c570, + FFFFfc8097587fbcfc809758, + FFFFfc8097c07fbcfc8097c0, + FFFFfc8098287fbcfc809828, + FFFFfc8098907fbcfc809890, + FFFFfc8098f87fbcfc8098f8, + FFFFfc8099607fbcfc809960, + FFFFfc8099c87fbcfc8099c8, + FFFFfc809a307fbcfc809a30, + FFFFfc809a987fbcfc809a98, + FFFFfc809b007fbcfc809b00, + FFFFfc809b687fbcfc809b68, + FFFFfc809bd07fbcfc809bd0, + FFFFfc809c387fbcfc809c38, + FFFFfc809ca07fbcfc809ca0, + FFFFfc809d087fbcfc809d08, + FFFFfc809d707fbcfc809d70, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2926,22 +2926,22 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxTask */ - FFFFc367e0207fb7c367e020 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc367e0207fb7c367e020 /* src/TaskManager.cpp */; }; + FFFFfc2128307fbcfc212830 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc2128307fbcfc212830 /* src/TaskManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc3662bc07fb7c3662bc0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc367e7607fb7c367e760 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDc367e7c87fb7c367e7c8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDc367e8307fb7c367e830 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDc367e8987fb7c367e898 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDc367e9007fb7c367e900 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; - FFFDc367e9687fb7c367e968 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc367e0207fb7c367e020 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc2149407fbcfc214940 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfc212e807fbcfc212e80 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc212ee87fbcfc212ee8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc212f507fbcfc212f50 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc212fb87fbcfc212fb8 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc2130207fbcfc213020 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc2130887fbcfc213088 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc2128307fbcfc212830 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c3662bc07fb7c3662bc0 /* Resources */ = { + FFF2fc2149407fbcfc214940 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2951,7 +2951,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc3662bc07fb7c3662bc0 /* Frameworks */ = { + FFFCfc2149407fbcfc214940 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2961,11 +2961,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c3662bc07fb7c3662bc0 /* Sources */ = { + FFF8fc2149407fbcfc214940 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc367e0207fb7c367e020, + FFFFfc2128307fbcfc212830, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2977,17 +2977,17 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PsFastXml */ - FFFFc4b81a807fb7c4b81a80 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4b81a807fb7c4b81a80 /* PsFastXml.cpp */; }; + FFFFfc065fa07fbcfc065fa0 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc065fa07fbcfc065fa0 /* PsFastXml.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc4b829a07fb7c4b829a0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc4b819807fb7c4b81980 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4b81a807fb7c4b81a80 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDfc0657b07fbcfc0657b0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDfc065ea07fbcfc065ea0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; + FFFDfc065fa07fbcfc065fa0 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c4b829a07fb7c4b829a0 /* Resources */ = { + FFF2fc0657b07fbcfc0657b0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2997,7 +2997,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc4b829a07fb7c4b829a0 /* Frameworks */ = { + FFFCfc0657b07fbcfc0657b0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3007,11 +3007,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c4b829a07fb7c4b829a0 /* Sources */ = { + FFF8fc0657b07fbcfc0657b0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc4b81a807fb7c4b81a80, + FFFFfc065fa07fbcfc065fa0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3023,1967 +3023,1967 @@ /* End PBXTargetDependency section */ /* Begin PBXContainerItemProxy section */ - FFF5c4e60af07fb7c4e60af0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fc0690807fbcfc069080 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc4e60af07fb7c4e60af0 /* PhysX */; + remoteGlobalIDString = FFFAfc0690807fbcfc069080 /* PhysX */; remoteInfo = "PhysX"; }; - FFF5c342d6907fb7c342d690 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fc0717b07fbcfc0717b0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc342d6907fb7c342d690 /* PhysXCharacterKinematic */; + remoteGlobalIDString = FFFAfc0717b07fbcfc0717b0 /* PhysXCharacterKinematic */; remoteInfo = "PhysXCharacterKinematic"; }; - FFF5c36831307fb7c3683130 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fc0771907fbcfc077190 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc36831307fb7c3683130 /* PhysXVehicle */; + remoteGlobalIDString = FFFAfc0771907fbcfc077190 /* PhysXVehicle */; remoteInfo = "PhysXVehicle"; }; - FFF5c80a0d007fb7c80a0d00 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fc0c74907fbcfc0c7490 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc80a0d007fb7c80a0d00 /* PhysXExtensions */; + remoteGlobalIDString = FFFAfc0c74907fbcfc0c7490 /* PhysXExtensions */; remoteInfo = "PhysXExtensions"; }; - FFF5c4e529207fb7c4e52920 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fc0985207fbcfc098520 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc4e529207fb7c4e52920 /* SceneQuery */; + remoteGlobalIDString = FFFAfc0985207fbcfc098520 /* SceneQuery */; remoteInfo = "SceneQuery"; }; - FFF5c4e56c807fb7c4e56c80 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fc08d4e07fbcfc08d4e0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc4e56c807fb7c4e56c80 /* SimulationController */; + remoteGlobalIDString = FFFAfc08d4e07fbcfc08d4e0 /* SimulationController */; remoteInfo = "SimulationController"; }; - FFF5c342e0007fb7c342e000 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fc07fd407fbcfc07fd40 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc342e0007fb7c342e000 /* PhysXCooking */; + remoteGlobalIDString = FFFAfc07fd407fbcfc07fd40 /* PhysXCooking */; remoteInfo = "PhysXCooking"; }; - FFF5c4b0e1607fb7c4b0e160 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fa8913407fbcfa891340 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc4b0e1607fb7c4b0e160 /* PhysXCommon */; + remoteGlobalIDString = FFFAfa8913407fbcfa891340 /* PhysXCommon */; remoteInfo = "PhysXCommon"; }; - FFF5c37144b07fb7c37144b0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fa87f5207fbcfa87f520 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc37144b07fb7c37144b0 /* PxFoundation */; + remoteGlobalIDString = FFFAfa87f5207fbcfa87f520 /* PxFoundation */; remoteInfo = "PxFoundation"; }; - FFF5c4a2a3107fb7c4a2a310 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fab095c07fbcfab095c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc4a2a3107fb7c4a2a310 /* PxPvdSDK */; + remoteGlobalIDString = FFFAfab095c07fbcfab095c0 /* PxPvdSDK */; remoteInfo = "PxPvdSDK"; }; - FFF5c81162307fb7c8116230 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fab277107fbcfab27710 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc81162307fb7c8116230 /* LowLevel */; + remoteGlobalIDString = FFFAfab277107fbcfab27710 /* LowLevel */; remoteInfo = "LowLevel"; }; - FFF5c811f6607fb7c811f660 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fab514407fbcfab51440 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc811f6607fb7c811f660 /* LowLevelAABB */; + remoteGlobalIDString = FFFAfab514407fbcfab51440 /* LowLevelAABB */; remoteInfo = "LowLevelAABB"; }; - FFF5c4a1ce107fb7c4a1ce10 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5faef20807fbcfaef2080 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc4a1ce107fb7c4a1ce10 /* LowLevelDynamics */; + remoteGlobalIDString = FFFAfaef20807fbcfaef2080 /* LowLevelDynamics */; remoteInfo = "LowLevelDynamics"; }; - FFF5c812c3507fb7c812c350 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fab48c407fbcfab48c40 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc812c3507fb7c812c350 /* LowLevelCloth */; + remoteGlobalIDString = FFFAfab48c407fbcfab48c40 /* LowLevelCloth */; remoteInfo = "LowLevelCloth"; }; - FFF5c80807f07fb7c80807f0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fc003cb07fbcfc003cb0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc80807f07fb7c80807f0 /* LowLevelParticles */; + remoteGlobalIDString = FFFAfc003cb07fbcfc003cb0 /* LowLevelParticles */; remoteInfo = "LowLevelParticles"; }; - FFF5c3662bc07fb7c3662bc0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fc2149407fbcfc214940 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc3662bc07fb7c3662bc0 /* PxTask */; + remoteGlobalIDString = FFFAfc2149407fbcfc214940 /* PxTask */; remoteInfo = "PxTask"; }; - FFF5c4b829a07fb7c4b829a0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9c341f7207fb7c341f720 /* Project object */; + FFF5fc0657b07fbcfc0657b0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc4b829a07fb7c4b829a0 /* PsFastXml */; + remoteGlobalIDString = FFFAfc0657b07fbcfc0657b0 /* PsFastXml */; remoteInfo = "PsFastXml"; }; /* End PBXContainerItemProxy section */ /* Begin PBXGroup section */ - FFFBc341f7887fb7c341f788 /* PhysX */ = { + FFFBf9c822e87fbcf9c822e8 /* PhysX */ = { isa = PBXGroup; children = ( - FFF0c341f7207fb7c341f720 /* Source */, - FFEEc341f7207fb7c341f720 /* Products */, + FFF0f9c822807fbcf9c82280 /* Source */, + FFEEf9c822807fbcf9c82280 /* Products */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFF0c341f7207fb7c341f720 /* Source */ = { + FFF0f9c822807fbcf9c82280 /* Source */ = { isa = PBXGroup; children = ( - FFFBc4e60af07fb7c4e60af0, - FFFBc342d6907fb7c342d690, - FFFBc36831307fb7c3683130, - FFFBc80a0d007fb7c80a0d00, - FFFBc4e529207fb7c4e52920, - FFFBc4e56c807fb7c4e56c80, - FFFBc342e0007fb7c342e000, - FFFBc4b0e1607fb7c4b0e160, - FFFBc37144b07fb7c37144b0, - FFFBc4a2a3107fb7c4a2a310, - FFFBc81162307fb7c8116230, - FFFBc811f6607fb7c811f660, - FFFBc4a1ce107fb7c4a1ce10, - FFFBc812c3507fb7c812c350, - FFFBc80807f07fb7c80807f0, - FFFBc3662bc07fb7c3662bc0, - FFFBc4b829a07fb7c4b829a0, + FFFBfc0690807fbcfc069080, + FFFBfc0717b07fbcfc0717b0, + FFFBfc0771907fbcfc077190, + FFFBfc0c74907fbcfc0c7490, + FFFBfc0985207fbcfc098520, + FFFBfc08d4e07fbcfc08d4e0, + FFFBfc07fd407fbcfc07fd40, + FFFBfa8913407fbcfa891340, + FFFBfa87f5207fbcfa87f520, + FFFBfab095c07fbcfab095c0, + FFFBfab277107fbcfab27710, + FFFBfab514407fbcfab51440, + FFFBfaef20807fbcfaef2080, + FFFBfab48c407fbcfab48c40, + FFFBfc003cb07fbcfc003cb0, + FFFBfc2149407fbcfc214940, + FFFBfc0657b07fbcfc0657b0, ); name = Source; sourceTree = "<group>"; }; - FFEEc341f7207fb7c341f720 /* Products */ = { + FFEEf9c822807fbcf9c82280 /* Products */ = { isa = PBXGroup; children = ( - FFFDc4e60af07fb7c4e60af0, - FFFDc342d6907fb7c342d690, - FFFDc36831307fb7c3683130, - FFFDc80a0d007fb7c80a0d00, - FFFDc4e529207fb7c4e52920, - FFFDc4e56c807fb7c4e56c80, - FFFDc342e0007fb7c342e000, - FFFDc4b0e1607fb7c4b0e160, - FFFDc37144b07fb7c37144b0, - FFFDc4a2a3107fb7c4a2a310, - FFFDc81162307fb7c8116230, - FFFDc811f6607fb7c811f660, - FFFDc4a1ce107fb7c4a1ce10, - FFFDc812c3507fb7c812c350, - FFFDc80807f07fb7c80807f0, - FFFDc3662bc07fb7c3662bc0, - FFFDc4b829a07fb7c4b829a0, + FFFDfc0690807fbcfc069080, + FFFDfc0717b07fbcfc0717b0, + FFFDfc0771907fbcfc077190, + FFFDfc0c74907fbcfc0c7490, + FFFDfc0985207fbcfc098520, + FFFDfc08d4e07fbcfc08d4e0, + FFFDfc07fd407fbcfc07fd40, + FFFDfa8913407fbcfa891340, + FFFDfa87f5207fbcfa87f520, + FFFDfab095c07fbcfab095c0, + FFFDfab277107fbcfab27710, + FFFDfab514407fbcfab51440, + FFFDfaef20807fbcfaef2080, + FFFDfab48c407fbcfab48c40, + FFFDfc003cb07fbcfc003cb0, + FFFDfc2149407fbcfc214940, + FFFDfc0657b07fbcfc0657b0, ); name = Products; sourceTree = "<group>"; }; - FFFBc4e60af07fb7c4e60af0 /* PhysX */ = { + FFFBfc0690807fbcfc069080 /* PhysX */ = { isa = PBXGroup; children = ( - FFFBc34349c07fb7c34349c0 /* src */, - FFFBc34349e87fb7c34349e8 /* include */, - FFFBc3434a107fb7c3434a10 /* metadata */, + FFFBfc071c907fbcfc071c90 /* src */, + FFFBfc071cb87fbcfc071cb8 /* include */, + FFFBfc071ce07fbcfc071ce0 /* metadata */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFFBc34349c07fb7c34349c0 /* src */ = { + FFFBfc071c907fbcfc071c90 /* src */ = { isa = PBXGroup; children = ( - FFFDc3816c007fb7c3816c00 /* NpActor.h */, - FFFDc3816c687fb7c3816c68 /* NpActorTemplate.h */, - FFFDc3816cd07fb7c3816cd0 /* NpAggregate.h */, - FFFDc3816d387fb7c3816d38 /* NpArticulation.h */, - FFFDc3816da07fb7c3816da0 /* NpArticulationJoint.h */, - FFFDc3816e087fb7c3816e08 /* NpArticulationLink.h */, - FFFDc3816e707fb7c3816e70 /* NpBatchQuery.h */, - FFFDc3816ed87fb7c3816ed8 /* NpCast.h */, - FFFDc3816f407fb7c3816f40 /* NpConnector.h */, - FFFDc3816fa87fb7c3816fa8 /* NpConstraint.h */, - FFFDc38170107fb7c3817010 /* NpFactory.h */, - FFFDc38170787fb7c3817078 /* NpMaterial.h */, - FFFDc38170e07fb7c38170e0 /* NpMaterialManager.h */, - FFFDc38171487fb7c3817148 /* NpPhysics.h */, - FFFDc38171b07fb7c38171b0 /* NpPhysicsInsertionCallback.h */, - FFFDc38172187fb7c3817218 /* NpPtrTableStorageManager.h */, - FFFDc38172807fb7c3817280 /* NpPvdSceneQueryCollector.h */, - FFFDc38172e87fb7c38172e8 /* NpQueryShared.h */, - FFFDc38173507fb7c3817350 /* NpReadCheck.h */, - FFFDc38173b87fb7c38173b8 /* NpRigidActorTemplate.h */, - FFFDc38174207fb7c3817420 /* NpRigidActorTemplateInternal.h */, - FFFDc38174887fb7c3817488 /* NpRigidBodyTemplate.h */, - FFFDc38174f07fb7c38174f0 /* NpRigidDynamic.h */, - FFFDc38175587fb7c3817558 /* NpRigidStatic.h */, - FFFDc38175c07fb7c38175c0 /* NpScene.h */, - FFFDc38176287fb7c3817628 /* NpSceneQueries.h */, - FFFDc38176907fb7c3817690 /* NpShape.h */, - FFFDc38176f87fb7c38176f8 /* NpShapeManager.h */, - FFFDc38177607fb7c3817760 /* NpSpatialIndex.h */, - FFFDc38177c87fb7c38177c8 /* NpVolumeCache.h */, - FFFDc38178307fb7c3817830 /* NpWriteCheck.h */, - FFFDc38178987fb7c3817898 /* PvdMetaDataBindingData.h */, - FFFDc38179007fb7c3817900 /* PvdMetaDataPvdBinding.h */, - FFFDc38179687fb7c3817968 /* PvdPhysicsClient.h */, - FFFDc38179d07fb7c38179d0 /* PvdTypeNames.h */, - FFFDc3817a387fb7c3817a38 /* NpActor.cpp */, - FFFDc3817aa07fb7c3817aa0 /* NpAggregate.cpp */, - FFFDc3817b087fb7c3817b08 /* NpArticulation.cpp */, - FFFDc3817b707fb7c3817b70 /* NpArticulationJoint.cpp */, - FFFDc3817bd87fb7c3817bd8 /* NpArticulationLink.cpp */, - FFFDc3817c407fb7c3817c40 /* NpBatchQuery.cpp */, - FFFDc3817ca87fb7c3817ca8 /* NpConstraint.cpp */, - FFFDc3817d107fb7c3817d10 /* NpFactory.cpp */, - FFFDc3817d787fb7c3817d78 /* NpMaterial.cpp */, - FFFDc3817de07fb7c3817de0 /* NpMetaData.cpp */, - FFFDc3817e487fb7c3817e48 /* NpPhysics.cpp */, - FFFDc3817eb07fb7c3817eb0 /* NpPvdSceneQueryCollector.cpp */, - FFFDc3817f187fb7c3817f18 /* NpReadCheck.cpp */, - FFFDc3817f807fb7c3817f80 /* NpRigidDynamic.cpp */, - FFFDc3817fe87fb7c3817fe8 /* NpRigidStatic.cpp */, - FFFDc38180507fb7c3818050 /* NpScene.cpp */, - FFFDc38180b87fb7c38180b8 /* NpSceneQueries.cpp */, - FFFDc38181207fb7c3818120 /* NpSerializerAdapter.cpp */, - FFFDc38181887fb7c3818188 /* NpShape.cpp */, - FFFDc38181f07fb7c38181f0 /* NpShapeManager.cpp */, - FFFDc38182587fb7c3818258 /* NpSpatialIndex.cpp */, - FFFDc38182c07fb7c38182c0 /* NpVolumeCache.cpp */, - FFFDc38183287fb7c3818328 /* NpWriteCheck.cpp */, - FFFDc38183907fb7c3818390 /* PvdMetaDataPvdBinding.cpp */, - FFFDc38183f87fb7c38183f8 /* PvdPhysicsClient.cpp */, - FFFDc38184607fb7c3818460 /* particles/NpParticleBaseTemplate.h */, - FFFDc38184c87fb7c38184c8 /* particles/NpParticleFluid.h */, - FFFDc38185307fb7c3818530 /* particles/NpParticleFluidReadData.h */, - FFFDc38185987fb7c3818598 /* particles/NpParticleSystem.h */, - FFFDc38186007fb7c3818600 /* particles/NpParticleFluid.cpp */, - FFFDc38186687fb7c3818668 /* particles/NpParticleSystem.cpp */, - FFFDc38186d07fb7c38186d0 /* buffering/ScbActor.h */, - FFFDc38187387fb7c3818738 /* buffering/ScbAggregate.h */, - FFFDc38187a07fb7c38187a0 /* buffering/ScbArticulation.h */, - FFFDc38188087fb7c3818808 /* buffering/ScbArticulationJoint.h */, - FFFDc38188707fb7c3818870 /* buffering/ScbBase.h */, - FFFDc38188d87fb7c38188d8 /* buffering/ScbBody.h */, - FFFDc38189407fb7c3818940 /* buffering/ScbCloth.h */, - FFFDc38189a87fb7c38189a8 /* buffering/ScbConstraint.h */, - FFFDc3818a107fb7c3818a10 /* buffering/ScbDefs.h */, - FFFDc3818a787fb7c3818a78 /* buffering/ScbNpDeps.h */, - FFFDc3818ae07fb7c3818ae0 /* buffering/ScbParticleSystem.h */, - FFFDc3818b487fb7c3818b48 /* buffering/ScbRigidObject.h */, - FFFDc3818bb07fb7c3818bb0 /* buffering/ScbRigidStatic.h */, - FFFDc3818c187fb7c3818c18 /* buffering/ScbScene.h */, - FFFDc3818c807fb7c3818c80 /* buffering/ScbSceneBuffer.h */, - FFFDc3818ce87fb7c3818ce8 /* buffering/ScbScenePvdClient.h */, - FFFDc3818d507fb7c3818d50 /* buffering/ScbShape.h */, - FFFDc3818db87fb7c3818db8 /* buffering/ScbType.h */, - FFFDc3818e207fb7c3818e20 /* buffering/ScbActor.cpp */, - FFFDc3818e887fb7c3818e88 /* buffering/ScbAggregate.cpp */, - FFFDc3818ef07fb7c3818ef0 /* buffering/ScbBase.cpp */, - FFFDc3818f587fb7c3818f58 /* buffering/ScbCloth.cpp */, - FFFDc3818fc07fb7c3818fc0 /* buffering/ScbMetaData.cpp */, - FFFDc38190287fb7c3819028 /* buffering/ScbParticleSystem.cpp */, - FFFDc38190907fb7c3819090 /* buffering/ScbScene.cpp */, - FFFDc38190f87fb7c38190f8 /* buffering/ScbScenePvdClient.cpp */, - FFFDc38191607fb7c3819160 /* buffering/ScbShape.cpp */, - FFFDc38191c87fb7c38191c8 /* cloth/NpCloth.h */, - FFFDc38192307fb7c3819230 /* cloth/NpClothFabric.h */, - FFFDc38192987fb7c3819298 /* cloth/NpClothParticleData.h */, - FFFDc38193007fb7c3819300 /* cloth/NpCloth.cpp */, - FFFDc38193687fb7c3819368 /* cloth/NpClothFabric.cpp */, - FFFDc38193d07fb7c38193d0 /* cloth/NpClothParticleData.cpp */, - FFFDc38194387fb7c3819438 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, + FFFDfc8318007fbcfc831800 /* NpActor.h */, + FFFDfc8318687fbcfc831868 /* NpActorTemplate.h */, + FFFDfc8318d07fbcfc8318d0 /* NpAggregate.h */, + FFFDfc8319387fbcfc831938 /* NpArticulation.h */, + FFFDfc8319a07fbcfc8319a0 /* NpArticulationJoint.h */, + FFFDfc831a087fbcfc831a08 /* NpArticulationLink.h */, + FFFDfc831a707fbcfc831a70 /* NpBatchQuery.h */, + FFFDfc831ad87fbcfc831ad8 /* NpCast.h */, + FFFDfc831b407fbcfc831b40 /* NpConnector.h */, + FFFDfc831ba87fbcfc831ba8 /* NpConstraint.h */, + FFFDfc831c107fbcfc831c10 /* NpFactory.h */, + FFFDfc831c787fbcfc831c78 /* NpMaterial.h */, + FFFDfc831ce07fbcfc831ce0 /* NpMaterialManager.h */, + FFFDfc831d487fbcfc831d48 /* NpPhysics.h */, + FFFDfc831db07fbcfc831db0 /* NpPhysicsInsertionCallback.h */, + FFFDfc831e187fbcfc831e18 /* NpPtrTableStorageManager.h */, + FFFDfc831e807fbcfc831e80 /* NpPvdSceneQueryCollector.h */, + FFFDfc831ee87fbcfc831ee8 /* NpQueryShared.h */, + FFFDfc831f507fbcfc831f50 /* NpReadCheck.h */, + FFFDfc831fb87fbcfc831fb8 /* NpRigidActorTemplate.h */, + FFFDfc8320207fbcfc832020 /* NpRigidActorTemplateInternal.h */, + FFFDfc8320887fbcfc832088 /* NpRigidBodyTemplate.h */, + FFFDfc8320f07fbcfc8320f0 /* NpRigidDynamic.h */, + FFFDfc8321587fbcfc832158 /* NpRigidStatic.h */, + FFFDfc8321c07fbcfc8321c0 /* NpScene.h */, + FFFDfc8322287fbcfc832228 /* NpSceneQueries.h */, + FFFDfc8322907fbcfc832290 /* NpShape.h */, + FFFDfc8322f87fbcfc8322f8 /* NpShapeManager.h */, + FFFDfc8323607fbcfc832360 /* NpSpatialIndex.h */, + FFFDfc8323c87fbcfc8323c8 /* NpVolumeCache.h */, + FFFDfc8324307fbcfc832430 /* NpWriteCheck.h */, + FFFDfc8324987fbcfc832498 /* PvdMetaDataBindingData.h */, + FFFDfc8325007fbcfc832500 /* PvdMetaDataPvdBinding.h */, + FFFDfc8325687fbcfc832568 /* PvdPhysicsClient.h */, + FFFDfc8325d07fbcfc8325d0 /* PvdTypeNames.h */, + FFFDfc8326387fbcfc832638 /* NpActor.cpp */, + FFFDfc8326a07fbcfc8326a0 /* NpAggregate.cpp */, + FFFDfc8327087fbcfc832708 /* NpArticulation.cpp */, + FFFDfc8327707fbcfc832770 /* NpArticulationJoint.cpp */, + FFFDfc8327d87fbcfc8327d8 /* NpArticulationLink.cpp */, + FFFDfc8328407fbcfc832840 /* NpBatchQuery.cpp */, + FFFDfc8328a87fbcfc8328a8 /* NpConstraint.cpp */, + FFFDfc8329107fbcfc832910 /* NpFactory.cpp */, + FFFDfc8329787fbcfc832978 /* NpMaterial.cpp */, + FFFDfc8329e07fbcfc8329e0 /* NpMetaData.cpp */, + FFFDfc832a487fbcfc832a48 /* NpPhysics.cpp */, + FFFDfc832ab07fbcfc832ab0 /* NpPvdSceneQueryCollector.cpp */, + FFFDfc832b187fbcfc832b18 /* NpReadCheck.cpp */, + FFFDfc832b807fbcfc832b80 /* NpRigidDynamic.cpp */, + FFFDfc832be87fbcfc832be8 /* NpRigidStatic.cpp */, + FFFDfc832c507fbcfc832c50 /* NpScene.cpp */, + FFFDfc832cb87fbcfc832cb8 /* NpSceneQueries.cpp */, + FFFDfc832d207fbcfc832d20 /* NpSerializerAdapter.cpp */, + FFFDfc832d887fbcfc832d88 /* NpShape.cpp */, + FFFDfc832df07fbcfc832df0 /* NpShapeManager.cpp */, + FFFDfc832e587fbcfc832e58 /* NpSpatialIndex.cpp */, + FFFDfc832ec07fbcfc832ec0 /* NpVolumeCache.cpp */, + FFFDfc832f287fbcfc832f28 /* NpWriteCheck.cpp */, + FFFDfc832f907fbcfc832f90 /* PvdMetaDataPvdBinding.cpp */, + FFFDfc832ff87fbcfc832ff8 /* PvdPhysicsClient.cpp */, + FFFDfc8330607fbcfc833060 /* particles/NpParticleBaseTemplate.h */, + FFFDfc8330c87fbcfc8330c8 /* particles/NpParticleFluid.h */, + FFFDfc8331307fbcfc833130 /* particles/NpParticleFluidReadData.h */, + FFFDfc8331987fbcfc833198 /* particles/NpParticleSystem.h */, + FFFDfc8332007fbcfc833200 /* particles/NpParticleFluid.cpp */, + FFFDfc8332687fbcfc833268 /* particles/NpParticleSystem.cpp */, + FFFDfc8332d07fbcfc8332d0 /* buffering/ScbActor.h */, + FFFDfc8333387fbcfc833338 /* buffering/ScbAggregate.h */, + FFFDfc8333a07fbcfc8333a0 /* buffering/ScbArticulation.h */, + FFFDfc8334087fbcfc833408 /* buffering/ScbArticulationJoint.h */, + FFFDfc8334707fbcfc833470 /* buffering/ScbBase.h */, + FFFDfc8334d87fbcfc8334d8 /* buffering/ScbBody.h */, + FFFDfc8335407fbcfc833540 /* buffering/ScbCloth.h */, + FFFDfc8335a87fbcfc8335a8 /* buffering/ScbConstraint.h */, + FFFDfc8336107fbcfc833610 /* buffering/ScbDefs.h */, + FFFDfc8336787fbcfc833678 /* buffering/ScbNpDeps.h */, + FFFDfc8336e07fbcfc8336e0 /* buffering/ScbParticleSystem.h */, + FFFDfc8337487fbcfc833748 /* buffering/ScbRigidObject.h */, + FFFDfc8337b07fbcfc8337b0 /* buffering/ScbRigidStatic.h */, + FFFDfc8338187fbcfc833818 /* buffering/ScbScene.h */, + FFFDfc8338807fbcfc833880 /* buffering/ScbSceneBuffer.h */, + FFFDfc8338e87fbcfc8338e8 /* buffering/ScbScenePvdClient.h */, + FFFDfc8339507fbcfc833950 /* buffering/ScbShape.h */, + FFFDfc8339b87fbcfc8339b8 /* buffering/ScbType.h */, + FFFDfc833a207fbcfc833a20 /* buffering/ScbActor.cpp */, + FFFDfc833a887fbcfc833a88 /* buffering/ScbAggregate.cpp */, + FFFDfc833af07fbcfc833af0 /* buffering/ScbBase.cpp */, + FFFDfc833b587fbcfc833b58 /* buffering/ScbCloth.cpp */, + FFFDfc833bc07fbcfc833bc0 /* buffering/ScbMetaData.cpp */, + FFFDfc833c287fbcfc833c28 /* buffering/ScbParticleSystem.cpp */, + FFFDfc833c907fbcfc833c90 /* buffering/ScbScene.cpp */, + FFFDfc833cf87fbcfc833cf8 /* buffering/ScbScenePvdClient.cpp */, + FFFDfc833d607fbcfc833d60 /* buffering/ScbShape.cpp */, + FFFDfc833dc87fbcfc833dc8 /* cloth/NpCloth.h */, + FFFDfc833e307fbcfc833e30 /* cloth/NpClothFabric.h */, + FFFDfc833e987fbcfc833e98 /* cloth/NpClothParticleData.h */, + FFFDfc833f007fbcfc833f00 /* cloth/NpCloth.cpp */, + FFFDfc833f687fbcfc833f68 /* cloth/NpClothFabric.cpp */, + FFFDfc833fd07fbcfc833fd0 /* cloth/NpClothParticleData.cpp */, + FFFDfc8340387fbcfc834038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc34349e87fb7c34349e8 /* include */ = { + FFFBfc071cb87fbcfc071cb8 /* include */ = { isa = PBXGroup; children = ( - FFFDc38196007fb7c3819600 /* PxActor.h */, - FFFDc38196687fb7c3819668 /* PxAggregate.h */, - FFFDc38196d07fb7c38196d0 /* PxArticulation.h */, - FFFDc38197387fb7c3819738 /* PxArticulationJoint.h */, - FFFDc38197a07fb7c38197a0 /* PxArticulationLink.h */, - FFFDc38198087fb7c3819808 /* PxBatchQuery.h */, - FFFDc38198707fb7c3819870 /* PxBatchQueryDesc.h */, - FFFDc38198d87fb7c38198d8 /* PxBroadPhase.h */, - FFFDc38199407fb7c3819940 /* PxClient.h */, - FFFDc38199a87fb7c38199a8 /* PxConstraint.h */, - FFFDc3819a107fb7c3819a10 /* PxConstraintDesc.h */, - FFFDc3819a787fb7c3819a78 /* PxContact.h */, - FFFDc3819ae07fb7c3819ae0 /* PxContactModifyCallback.h */, - FFFDc3819b487fb7c3819b48 /* PxDeletionListener.h */, - FFFDc3819bb07fb7c3819bb0 /* PxFiltering.h */, - FFFDc3819c187fb7c3819c18 /* PxForceMode.h */, - FFFDc3819c807fb7c3819c80 /* PxImmediateMode.h */, - FFFDc3819ce87fb7c3819ce8 /* PxLockedData.h */, - FFFDc3819d507fb7c3819d50 /* PxMaterial.h */, - FFFDc3819db87fb7c3819db8 /* PxPhysXConfig.h */, - FFFDc3819e207fb7c3819e20 /* PxPhysics.h */, - FFFDc3819e887fb7c3819e88 /* PxPhysicsAPI.h */, - FFFDc3819ef07fb7c3819ef0 /* PxPhysicsSerialization.h */, - FFFDc3819f587fb7c3819f58 /* PxPhysicsVersion.h */, - FFFDc3819fc07fb7c3819fc0 /* PxPruningStructure.h */, - FFFDc381a0287fb7c381a028 /* PxQueryFiltering.h */, - FFFDc381a0907fb7c381a090 /* PxQueryReport.h */, - FFFDc381a0f87fb7c381a0f8 /* PxRigidActor.h */, - FFFDc381a1607fb7c381a160 /* PxRigidBody.h */, - FFFDc381a1c87fb7c381a1c8 /* PxRigidDynamic.h */, - FFFDc381a2307fb7c381a230 /* PxRigidStatic.h */, - FFFDc381a2987fb7c381a298 /* PxScene.h */, - FFFDc381a3007fb7c381a300 /* PxSceneDesc.h */, - FFFDc381a3687fb7c381a368 /* PxSceneLock.h */, - FFFDc381a3d07fb7c381a3d0 /* PxShape.h */, - FFFDc381a4387fb7c381a438 /* PxSimulationEventCallback.h */, - FFFDc381a4a07fb7c381a4a0 /* PxSimulationStatistics.h */, - FFFDc381a5087fb7c381a508 /* PxSpatialIndex.h */, - FFFDc381a5707fb7c381a570 /* PxVisualizationParameter.h */, - FFFDc381a5d87fb7c381a5d8 /* PxVolumeCache.h */, - FFFDc381a6407fb7c381a640 /* particles/PxParticleBase.h */, - FFFDc381a6a87fb7c381a6a8 /* particles/PxParticleBaseFlag.h */, - FFFDc381a7107fb7c381a710 /* particles/PxParticleCreationData.h */, - FFFDc381a7787fb7c381a778 /* particles/PxParticleFlag.h */, - FFFDc381a7e07fb7c381a7e0 /* particles/PxParticleFluid.h */, - FFFDc381a8487fb7c381a848 /* particles/PxParticleFluidReadData.h */, - FFFDc381a8b07fb7c381a8b0 /* particles/PxParticleReadData.h */, - FFFDc381a9187fb7c381a918 /* particles/PxParticleSystem.h */, - FFFDc381a9807fb7c381a980 /* pvd/PxPvdSceneClient.h */, - FFFDc381a9e87fb7c381a9e8 /* cloth/PxCloth.h */, - FFFDc381aa507fb7c381aa50 /* cloth/PxClothCollisionData.h */, - FFFDc381aab87fb7c381aab8 /* cloth/PxClothFabric.h */, - FFFDc381ab207fb7c381ab20 /* cloth/PxClothParticleData.h */, - FFFDc381ab887fb7c381ab88 /* cloth/PxClothTypes.h */, + FFFDfc82f2007fbcfc82f200 /* PxActor.h */, + FFFDfc82f2687fbcfc82f268 /* PxAggregate.h */, + FFFDfc82f2d07fbcfc82f2d0 /* PxArticulation.h */, + FFFDfc82f3387fbcfc82f338 /* PxArticulationJoint.h */, + FFFDfc82f3a07fbcfc82f3a0 /* PxArticulationLink.h */, + FFFDfc82f4087fbcfc82f408 /* PxBatchQuery.h */, + FFFDfc82f4707fbcfc82f470 /* PxBatchQueryDesc.h */, + FFFDfc82f4d87fbcfc82f4d8 /* PxBroadPhase.h */, + FFFDfc82f5407fbcfc82f540 /* PxClient.h */, + FFFDfc82f5a87fbcfc82f5a8 /* PxConstraint.h */, + FFFDfc82f6107fbcfc82f610 /* PxConstraintDesc.h */, + FFFDfc82f6787fbcfc82f678 /* PxContact.h */, + FFFDfc82f6e07fbcfc82f6e0 /* PxContactModifyCallback.h */, + FFFDfc82f7487fbcfc82f748 /* PxDeletionListener.h */, + FFFDfc82f7b07fbcfc82f7b0 /* PxFiltering.h */, + FFFDfc82f8187fbcfc82f818 /* PxForceMode.h */, + FFFDfc82f8807fbcfc82f880 /* PxImmediateMode.h */, + FFFDfc82f8e87fbcfc82f8e8 /* PxLockedData.h */, + FFFDfc82f9507fbcfc82f950 /* PxMaterial.h */, + FFFDfc82f9b87fbcfc82f9b8 /* PxPhysXConfig.h */, + FFFDfc82fa207fbcfc82fa20 /* PxPhysics.h */, + FFFDfc82fa887fbcfc82fa88 /* PxPhysicsAPI.h */, + FFFDfc82faf07fbcfc82faf0 /* PxPhysicsSerialization.h */, + FFFDfc82fb587fbcfc82fb58 /* PxPhysicsVersion.h */, + FFFDfc82fbc07fbcfc82fbc0 /* PxPruningStructure.h */, + FFFDfc82fc287fbcfc82fc28 /* PxQueryFiltering.h */, + FFFDfc82fc907fbcfc82fc90 /* PxQueryReport.h */, + FFFDfc82fcf87fbcfc82fcf8 /* PxRigidActor.h */, + FFFDfc82fd607fbcfc82fd60 /* PxRigidBody.h */, + FFFDfc82fdc87fbcfc82fdc8 /* PxRigidDynamic.h */, + FFFDfc82fe307fbcfc82fe30 /* PxRigidStatic.h */, + FFFDfc82fe987fbcfc82fe98 /* PxScene.h */, + FFFDfc82ff007fbcfc82ff00 /* PxSceneDesc.h */, + FFFDfc82ff687fbcfc82ff68 /* PxSceneLock.h */, + FFFDfc82ffd07fbcfc82ffd0 /* PxShape.h */, + FFFDfc8300387fbcfc830038 /* PxSimulationEventCallback.h */, + FFFDfc8300a07fbcfc8300a0 /* PxSimulationStatistics.h */, + FFFDfc8301087fbcfc830108 /* PxSpatialIndex.h */, + FFFDfc8301707fbcfc830170 /* PxVisualizationParameter.h */, + FFFDfc8301d87fbcfc8301d8 /* PxVolumeCache.h */, + FFFDfc8302407fbcfc830240 /* particles/PxParticleBase.h */, + FFFDfc8302a87fbcfc8302a8 /* particles/PxParticleBaseFlag.h */, + FFFDfc8303107fbcfc830310 /* particles/PxParticleCreationData.h */, + FFFDfc8303787fbcfc830378 /* particles/PxParticleFlag.h */, + FFFDfc8303e07fbcfc8303e0 /* particles/PxParticleFluid.h */, + FFFDfc8304487fbcfc830448 /* particles/PxParticleFluidReadData.h */, + FFFDfc8304b07fbcfc8304b0 /* particles/PxParticleReadData.h */, + FFFDfc8305187fbcfc830518 /* particles/PxParticleSystem.h */, + FFFDfc8305807fbcfc830580 /* pvd/PxPvdSceneClient.h */, + FFFDfc8305e87fbcfc8305e8 /* cloth/PxCloth.h */, + FFFDfc8306507fbcfc830650 /* cloth/PxClothCollisionData.h */, + FFFDfc8306b87fbcfc8306b8 /* cloth/PxClothFabric.h */, + FFFDfc8307207fbcfc830720 /* cloth/PxClothParticleData.h */, + FFFDfc8307887fbcfc830788 /* cloth/PxClothTypes.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc3434a107fb7c3434a10 /* metadata */ = { + FFFBfc071ce07fbcfc071ce0 /* metadata */ = { isa = PBXGroup; children = ( - FFFDc380f0007fb7c380f000 /* core/include/PvdMetaDataDefineProperties.h */, - FFFDc380f0687fb7c380f068 /* core/include/PvdMetaDataExtensions.h */, - FFFDc380f0d07fb7c380f0d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFDc380f1387fb7c380f138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFDc380f1a07fb7c380f1a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFDc380f2087fb7c380f208 /* core/include/PxMetaDataCompare.h */, - FFFDc380f2707fb7c380f270 /* core/include/PxMetaDataCppPrefix.h */, - FFFDc380f2d87fb7c380f2d8 /* core/include/PxMetaDataObjects.h */, - FFFDc380f3407fb7c380f340 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFDc380f3a87fb7c380f3a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, - FFFDc380f4107fb7c380f410 /* core/src/PxMetaDataObjects.cpp */, + FFFDfc8308007fbcfc830800 /* core/include/PvdMetaDataDefineProperties.h */, + FFFDfc8308687fbcfc830868 /* core/include/PvdMetaDataExtensions.h */, + FFFDfc8308d07fbcfc8308d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFDfc8309387fbcfc830938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFDfc8309a07fbcfc8309a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFDfc830a087fbcfc830a08 /* core/include/PxMetaDataCompare.h */, + FFFDfc830a707fbcfc830a70 /* core/include/PxMetaDataCppPrefix.h */, + FFFDfc830ad87fbcfc830ad8 /* core/include/PxMetaDataObjects.h */, + FFFDfc830b407fbcfc830b40 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFDfc830ba87fbcfc830ba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, + FFFDfc830c107fbcfc830c10 /* core/src/PxMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBc342d6907fb7c342d690 /* PhysXCharacterKinematic */ = { + FFFBfc0717b07fbcfc0717b0 /* PhysXCharacterKinematic */ = { isa = PBXGroup; children = ( - FFFBc36805b07fb7c36805b0 /* include */, - FFFBc36805d87fb7c36805d8 /* src */, + FFFBfc0760507fbcfc076050 /* include */, + FFFBfc0760787fbcfc076078 /* src */, ); name = "PhysXCharacterKinematic"; sourceTree = "<group>"; }; - FFFBc36805b07fb7c36805b0 /* include */ = { + FFFBfc0760507fbcfc076050 /* include */ = { isa = PBXGroup; children = ( - FFFDc3681f207fb7c3681f20 /* PxBoxController.h */, - FFFDc3681f887fb7c3681f88 /* PxCapsuleController.h */, - FFFDc3681ff07fb7c3681ff0 /* PxCharacter.h */, - FFFDc36820587fb7c3682058 /* PxController.h */, - FFFDc36820c07fb7c36820c0 /* PxControllerBehavior.h */, - FFFDc36821287fb7c3682128 /* PxControllerManager.h */, - FFFDc36821907fb7c3682190 /* PxControllerObstacles.h */, - FFFDc36821f87fb7c36821f8 /* PxExtended.h */, + FFFDfc0760a07fbcfc0760a0 /* PxBoxController.h */, + FFFDfc0761087fbcfc076108 /* PxCapsuleController.h */, + FFFDfc0761707fbcfc076170 /* PxCharacter.h */, + FFFDfc0761d87fbcfc0761d8 /* PxController.h */, + FFFDfc0762407fbcfc076240 /* PxControllerBehavior.h */, + FFFDfc0762a87fbcfc0762a8 /* PxControllerManager.h */, + FFFDfc0763107fbcfc076310 /* PxControllerObstacles.h */, + FFFDfc0763787fbcfc076378 /* PxExtended.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc36805d87fb7c36805d8 /* src */ = { + FFFBfc0760787fbcfc076078 /* src */ = { isa = PBXGroup; children = ( - FFFDc60158007fb7c6015800 /* CctBoxController.h */, - FFFDc60158687fb7c6015868 /* CctCapsuleController.h */, - FFFDc60158d07fb7c60158d0 /* CctCharacterController.h */, - FFFDc60159387fb7c6015938 /* CctCharacterControllerManager.h */, - FFFDc60159a07fb7c60159a0 /* CctController.h */, - FFFDc6015a087fb7c6015a08 /* CctInternalStructs.h */, - FFFDc6015a707fb7c6015a70 /* CctObstacleContext.h */, - FFFDc6015ad87fb7c6015ad8 /* CctSweptBox.h */, - FFFDc6015b407fb7c6015b40 /* CctSweptCapsule.h */, - FFFDc6015ba87fb7c6015ba8 /* CctSweptVolume.h */, - FFFDc6015c107fb7c6015c10 /* CctUtils.h */, - FFFDc6015c787fb7c6015c78 /* CctBoxController.cpp */, - FFFDc6015ce07fb7c6015ce0 /* CctCapsuleController.cpp */, - FFFDc6015d487fb7c6015d48 /* CctCharacterController.cpp */, - FFFDc6015db07fb7c6015db0 /* CctCharacterControllerCallbacks.cpp */, - FFFDc6015e187fb7c6015e18 /* CctCharacterControllerManager.cpp */, - FFFDc6015e807fb7c6015e80 /* CctController.cpp */, - FFFDc6015ee87fb7c6015ee8 /* CctObstacleContext.cpp */, - FFFDc6015f507fb7c6015f50 /* CctSweptBox.cpp */, - FFFDc6015fb87fb7c6015fb8 /* CctSweptCapsule.cpp */, - FFFDc60160207fb7c6016020 /* CctSweptVolume.cpp */, + FFFDfc8384007fbcfc838400 /* CctBoxController.h */, + FFFDfc8384687fbcfc838468 /* CctCapsuleController.h */, + FFFDfc8384d07fbcfc8384d0 /* CctCharacterController.h */, + FFFDfc8385387fbcfc838538 /* CctCharacterControllerManager.h */, + FFFDfc8385a07fbcfc8385a0 /* CctController.h */, + FFFDfc8386087fbcfc838608 /* CctInternalStructs.h */, + FFFDfc8386707fbcfc838670 /* CctObstacleContext.h */, + FFFDfc8386d87fbcfc8386d8 /* CctSweptBox.h */, + FFFDfc8387407fbcfc838740 /* CctSweptCapsule.h */, + FFFDfc8387a87fbcfc8387a8 /* CctSweptVolume.h */, + FFFDfc8388107fbcfc838810 /* CctUtils.h */, + FFFDfc8388787fbcfc838878 /* CctBoxController.cpp */, + FFFDfc8388e07fbcfc8388e0 /* CctCapsuleController.cpp */, + FFFDfc8389487fbcfc838948 /* CctCharacterController.cpp */, + FFFDfc8389b07fbcfc8389b0 /* CctCharacterControllerCallbacks.cpp */, + FFFDfc838a187fbcfc838a18 /* CctCharacterControllerManager.cpp */, + FFFDfc838a807fbcfc838a80 /* CctController.cpp */, + FFFDfc838ae87fbcfc838ae8 /* CctObstacleContext.cpp */, + FFFDfc838b507fbcfc838b50 /* CctSweptBox.cpp */, + FFFDfc838bb87fbcfc838bb8 /* CctSweptCapsule.cpp */, + FFFDfc838c207fbcfc838c20 /* CctSweptVolume.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc36831307fb7c3683130 /* PhysXVehicle */ = { + FFFBfc0771907fbcfc077190 /* PhysXVehicle */ = { isa = PBXGroup; children = ( - FFFBc4cb0aa07fb7c4cb0aa0 /* include */, - FFFBc4cb0ac87fb7c4cb0ac8 /* src */, - FFFBc4cb0af07fb7c4cb0af0 /* metadata */, + FFFBfc0d10607fbcfc0d1060 /* include */, + FFFBfc0d10887fbcfc0d1088 /* src */, + FFFBfc0d10b07fbcfc0d10b0 /* metadata */, ); name = "PhysXVehicle"; sourceTree = "<group>"; }; - FFFBc4cb0aa07fb7c4cb0aa0 /* include */ = { + FFFBfc0d10607fbcfc0d1060 /* include */ = { isa = PBXGroup; children = ( - FFFDc5048c007fb7c5048c00 /* PxVehicleComponents.h */, - FFFDc5048c687fb7c5048c68 /* PxVehicleDrive.h */, - FFFDc5048cd07fb7c5048cd0 /* PxVehicleDrive4W.h */, - FFFDc5048d387fb7c5048d38 /* PxVehicleDriveNW.h */, - FFFDc5048da07fb7c5048da0 /* PxVehicleDriveTank.h */, - FFFDc5048e087fb7c5048e08 /* PxVehicleNoDrive.h */, - FFFDc5048e707fb7c5048e70 /* PxVehicleSDK.h */, - FFFDc5048ed87fb7c5048ed8 /* PxVehicleShaders.h */, - FFFDc5048f407fb7c5048f40 /* PxVehicleTireFriction.h */, - FFFDc5048fa87fb7c5048fa8 /* PxVehicleUpdate.h */, - FFFDc50490107fb7c5049010 /* PxVehicleUtil.h */, - FFFDc50490787fb7c5049078 /* PxVehicleUtilControl.h */, - FFFDc50490e07fb7c50490e0 /* PxVehicleUtilSetup.h */, - FFFDc50491487fb7c5049148 /* PxVehicleUtilTelemetry.h */, - FFFDc50491b07fb7c50491b0 /* PxVehicleWheels.h */, + FFFDfc83b2007fbcfc83b200 /* PxVehicleComponents.h */, + FFFDfc83b2687fbcfc83b268 /* PxVehicleDrive.h */, + FFFDfc83b2d07fbcfc83b2d0 /* PxVehicleDrive4W.h */, + FFFDfc83b3387fbcfc83b338 /* PxVehicleDriveNW.h */, + FFFDfc83b3a07fbcfc83b3a0 /* PxVehicleDriveTank.h */, + FFFDfc83b4087fbcfc83b408 /* PxVehicleNoDrive.h */, + FFFDfc83b4707fbcfc83b470 /* PxVehicleSDK.h */, + FFFDfc83b4d87fbcfc83b4d8 /* PxVehicleShaders.h */, + FFFDfc83b5407fbcfc83b540 /* PxVehicleTireFriction.h */, + FFFDfc83b5a87fbcfc83b5a8 /* PxVehicleUpdate.h */, + FFFDfc83b6107fbcfc83b610 /* PxVehicleUtil.h */, + FFFDfc83b6787fbcfc83b678 /* PxVehicleUtilControl.h */, + FFFDfc83b6e07fbcfc83b6e0 /* PxVehicleUtilSetup.h */, + FFFDfc83b7487fbcfc83b748 /* PxVehicleUtilTelemetry.h */, + FFFDfc83b7b07fbcfc83b7b0 /* PxVehicleWheels.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc4cb0ac87fb7c4cb0ac8 /* src */ = { + FFFBfc0d10887fbcfc0d1088 /* src */ = { isa = PBXGroup; children = ( - FFFDc5051a007fb7c5051a00 /* PxVehicleDefaults.h */, - FFFDc5051a687fb7c5051a68 /* PxVehicleLinearMath.h */, - FFFDc5051ad07fb7c5051ad0 /* PxVehicleSerialization.h */, - FFFDc5051b387fb7c5051b38 /* PxVehicleSuspLimitConstraintShader.h */, - FFFDc5051ba07fb7c5051ba0 /* PxVehicleSuspWheelTire4.h */, - FFFDc5051c087fb7c5051c08 /* PxVehicleComponents.cpp */, - FFFDc5051c707fb7c5051c70 /* PxVehicleDrive.cpp */, - FFFDc5051cd87fb7c5051cd8 /* PxVehicleDrive4W.cpp */, - FFFDc5051d407fb7c5051d40 /* PxVehicleDriveNW.cpp */, - FFFDc5051da87fb7c5051da8 /* PxVehicleDriveTank.cpp */, - FFFDc5051e107fb7c5051e10 /* PxVehicleMetaData.cpp */, - FFFDc5051e787fb7c5051e78 /* PxVehicleNoDrive.cpp */, - FFFDc5051ee07fb7c5051ee0 /* PxVehicleSDK.cpp */, - FFFDc5051f487fb7c5051f48 /* PxVehicleSerialization.cpp */, - FFFDc5051fb07fb7c5051fb0 /* PxVehicleSuspWheelTire4.cpp */, - FFFDc50520187fb7c5052018 /* PxVehicleTireFriction.cpp */, - FFFDc50520807fb7c5052080 /* PxVehicleUpdate.cpp */, - FFFDc50520e87fb7c50520e8 /* PxVehicleWheels.cpp */, - FFFDc50521507fb7c5052150 /* VehicleUtilControl.cpp */, - FFFDc50521b87fb7c50521b8 /* VehicleUtilSetup.cpp */, - FFFDc50522207fb7c5052220 /* VehicleUtilTelemetry.cpp */, + FFFDfc83d4007fbcfc83d400 /* PxVehicleDefaults.h */, + FFFDfc83d4687fbcfc83d468 /* PxVehicleLinearMath.h */, + FFFDfc83d4d07fbcfc83d4d0 /* PxVehicleSerialization.h */, + FFFDfc83d5387fbcfc83d538 /* PxVehicleSuspLimitConstraintShader.h */, + FFFDfc83d5a07fbcfc83d5a0 /* PxVehicleSuspWheelTire4.h */, + FFFDfc83d6087fbcfc83d608 /* PxVehicleComponents.cpp */, + FFFDfc83d6707fbcfc83d670 /* PxVehicleDrive.cpp */, + FFFDfc83d6d87fbcfc83d6d8 /* PxVehicleDrive4W.cpp */, + FFFDfc83d7407fbcfc83d740 /* PxVehicleDriveNW.cpp */, + FFFDfc83d7a87fbcfc83d7a8 /* PxVehicleDriveTank.cpp */, + FFFDfc83d8107fbcfc83d810 /* PxVehicleMetaData.cpp */, + FFFDfc83d8787fbcfc83d878 /* PxVehicleNoDrive.cpp */, + FFFDfc83d8e07fbcfc83d8e0 /* PxVehicleSDK.cpp */, + FFFDfc83d9487fbcfc83d948 /* PxVehicleSerialization.cpp */, + FFFDfc83d9b07fbcfc83d9b0 /* PxVehicleSuspWheelTire4.cpp */, + FFFDfc83da187fbcfc83da18 /* PxVehicleTireFriction.cpp */, + FFFDfc83da807fbcfc83da80 /* PxVehicleUpdate.cpp */, + FFFDfc83dae87fbcfc83dae8 /* PxVehicleWheels.cpp */, + FFFDfc83db507fbcfc83db50 /* VehicleUtilControl.cpp */, + FFFDfc83dbb87fbcfc83dbb8 /* VehicleUtilSetup.cpp */, + FFFDfc83dc207fbcfc83dc20 /* VehicleUtilTelemetry.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc4cb0af07fb7c4cb0af0 /* metadata */ = { + FFFBfc0d10b07fbcfc0d10b0 /* metadata */ = { isa = PBXGroup; children = ( - FFFDc80a06f07fb7c80a06f0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, - FFFDc80a07587fb7c80a0758 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, - FFFDc80a07c07fb7c80a07c0 /* include/PxVehicleMetaDataObjects.h */, - FFFDc80a08287fb7c80a0828 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, - FFFDc80a08907fb7c80a0890 /* src/PxVehicleMetaDataObjects.cpp */, + FFFDfc0c76907fbcfc0c7690 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, + FFFDfc0c76f87fbcfc0c76f8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, + FFFDfc0c77607fbcfc0c7760 /* include/PxVehicleMetaDataObjects.h */, + FFFDfc0c77c87fbcfc0c77c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, + FFFDfc0c78307fbcfc0c7830 /* src/PxVehicleMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBc80a0d007fb7c80a0d00 /* PhysXExtensions */ = { + FFFBfc0c74907fbcfc0c7490 /* PhysXExtensions */ = { isa = PBXGroup; children = ( - FFFBc4e621e07fb7c4e621e0 /* include */, - FFFBc4e622087fb7c4e62208 /* src */, - FFFBc4e622307fb7c4e62230 /* serialization */, - FFFBc4e622587fb7c4e62258 /* metadata */, + FFFBfc0c20d07fbcfc0c20d0 /* include */, + FFFBfc0c20f87fbcfc0c20f8 /* src */, + FFFBfc0c21207fbcfc0c2120 /* serialization */, + FFFBfc0c21487fbcfc0c2148 /* metadata */, ); name = "PhysXExtensions"; sourceTree = "<group>"; }; - FFFBc4e621e07fb7c4e621e0 /* include */ = { + FFFBfc0c20d07fbcfc0c20d0 /* include */ = { isa = PBXGroup; children = ( - FFFDc701aa007fb7c701aa00 /* PxBinaryConverter.h */, - FFFDc701aa687fb7c701aa68 /* PxBroadPhaseExt.h */, - FFFDc701aad07fb7c701aad0 /* PxClothFabricCooker.h */, - FFFDc701ab387fb7c701ab38 /* PxClothMeshDesc.h */, - FFFDc701aba07fb7c701aba0 /* PxClothMeshQuadifier.h */, - FFFDc701ac087fb7c701ac08 /* PxClothTetherCooker.h */, - FFFDc701ac707fb7c701ac70 /* PxCollectionExt.h */, - FFFDc701acd87fb7c701acd8 /* PxConstraintExt.h */, - FFFDc701ad407fb7c701ad40 /* PxConvexMeshExt.h */, - FFFDc701ada87fb7c701ada8 /* PxD6Joint.h */, - FFFDc701ae107fb7c701ae10 /* PxDefaultAllocator.h */, - FFFDc701ae787fb7c701ae78 /* PxDefaultCpuDispatcher.h */, - FFFDc701aee07fb7c701aee0 /* PxDefaultErrorCallback.h */, - FFFDc701af487fb7c701af48 /* PxDefaultSimulationFilterShader.h */, - FFFDc701afb07fb7c701afb0 /* PxDefaultStreams.h */, - FFFDc701b0187fb7c701b018 /* PxDistanceJoint.h */, - FFFDc701b0807fb7c701b080 /* PxExtensionsAPI.h */, - FFFDc701b0e87fb7c701b0e8 /* PxFixedJoint.h */, - FFFDc701b1507fb7c701b150 /* PxJoint.h */, - FFFDc701b1b87fb7c701b1b8 /* PxJointLimit.h */, - FFFDc701b2207fb7c701b220 /* PxJointRepXSerializer.h */, - FFFDc701b2887fb7c701b288 /* PxMassProperties.h */, - FFFDc701b2f07fb7c701b2f0 /* PxParticleExt.h */, - FFFDc701b3587fb7c701b358 /* PxPrismaticJoint.h */, - FFFDc701b3c07fb7c701b3c0 /* PxRaycastCCD.h */, - FFFDc701b4287fb7c701b428 /* PxRepXSerializer.h */, - FFFDc701b4907fb7c701b490 /* PxRepXSimpleType.h */, - FFFDc701b4f87fb7c701b4f8 /* PxRevoluteJoint.h */, - FFFDc701b5607fb7c701b560 /* PxRigidActorExt.h */, - FFFDc701b5c87fb7c701b5c8 /* PxRigidBodyExt.h */, - FFFDc701b6307fb7c701b630 /* PxSceneQueryExt.h */, - FFFDc701b6987fb7c701b698 /* PxSerialization.h */, - FFFDc701b7007fb7c701b700 /* PxShapeExt.h */, - FFFDc701b7687fb7c701b768 /* PxSimpleFactory.h */, - FFFDc701b7d07fb7c701b7d0 /* PxSmoothNormals.h */, - FFFDc701b8387fb7c701b838 /* PxSphericalJoint.h */, - FFFDc701b8a07fb7c701b8a0 /* PxStringTableExt.h */, - FFFDc701b9087fb7c701b908 /* PxTriangleMeshExt.h */, + FFFDfc8404007fbcfc840400 /* PxBinaryConverter.h */, + FFFDfc8404687fbcfc840468 /* PxBroadPhaseExt.h */, + FFFDfc8404d07fbcfc8404d0 /* PxClothFabricCooker.h */, + FFFDfc8405387fbcfc840538 /* PxClothMeshDesc.h */, + FFFDfc8405a07fbcfc8405a0 /* PxClothMeshQuadifier.h */, + FFFDfc8406087fbcfc840608 /* PxClothTetherCooker.h */, + FFFDfc8406707fbcfc840670 /* PxCollectionExt.h */, + FFFDfc8406d87fbcfc8406d8 /* PxConstraintExt.h */, + FFFDfc8407407fbcfc840740 /* PxConvexMeshExt.h */, + FFFDfc8407a87fbcfc8407a8 /* PxD6Joint.h */, + FFFDfc8408107fbcfc840810 /* PxDefaultAllocator.h */, + FFFDfc8408787fbcfc840878 /* PxDefaultCpuDispatcher.h */, + FFFDfc8408e07fbcfc8408e0 /* PxDefaultErrorCallback.h */, + FFFDfc8409487fbcfc840948 /* PxDefaultSimulationFilterShader.h */, + FFFDfc8409b07fbcfc8409b0 /* PxDefaultStreams.h */, + FFFDfc840a187fbcfc840a18 /* PxDistanceJoint.h */, + FFFDfc840a807fbcfc840a80 /* PxExtensionsAPI.h */, + FFFDfc840ae87fbcfc840ae8 /* PxFixedJoint.h */, + FFFDfc840b507fbcfc840b50 /* PxJoint.h */, + FFFDfc840bb87fbcfc840bb8 /* PxJointLimit.h */, + FFFDfc840c207fbcfc840c20 /* PxJointRepXSerializer.h */, + FFFDfc840c887fbcfc840c88 /* PxMassProperties.h */, + FFFDfc840cf07fbcfc840cf0 /* PxParticleExt.h */, + FFFDfc840d587fbcfc840d58 /* PxPrismaticJoint.h */, + FFFDfc840dc07fbcfc840dc0 /* PxRaycastCCD.h */, + FFFDfc840e287fbcfc840e28 /* PxRepXSerializer.h */, + FFFDfc840e907fbcfc840e90 /* PxRepXSimpleType.h */, + FFFDfc840ef87fbcfc840ef8 /* PxRevoluteJoint.h */, + FFFDfc840f607fbcfc840f60 /* PxRigidActorExt.h */, + FFFDfc840fc87fbcfc840fc8 /* PxRigidBodyExt.h */, + FFFDfc8410307fbcfc841030 /* PxSceneQueryExt.h */, + FFFDfc8410987fbcfc841098 /* PxSerialization.h */, + FFFDfc8411007fbcfc841100 /* PxShapeExt.h */, + FFFDfc8411687fbcfc841168 /* PxSimpleFactory.h */, + FFFDfc8411d07fbcfc8411d0 /* PxSmoothNormals.h */, + FFFDfc8412387fbcfc841238 /* PxSphericalJoint.h */, + FFFDfc8412a07fbcfc8412a0 /* PxStringTableExt.h */, + FFFDfc8413087fbcfc841308 /* PxTriangleMeshExt.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc4e622087fb7c4e62208 /* src */ = { + FFFBfc0c20f87fbcfc0c20f8 /* src */ = { isa = PBXGroup; children = ( - FFFDc70194007fb7c7019400 /* ExtConstraintHelper.h */, - FFFDc70194687fb7c7019468 /* ExtCpuWorkerThread.h */, - FFFDc70194d07fb7c70194d0 /* ExtD6Joint.h */, - FFFDc70195387fb7c7019538 /* ExtDefaultCpuDispatcher.h */, - FFFDc70195a07fb7c70195a0 /* ExtDistanceJoint.h */, - FFFDc70196087fb7c7019608 /* ExtFixedJoint.h */, - FFFDc70196707fb7c7019670 /* ExtInertiaTensor.h */, - FFFDc70196d87fb7c70196d8 /* ExtJoint.h */, - FFFDc70197407fb7c7019740 /* ExtJointMetaDataExtensions.h */, - FFFDc70197a87fb7c70197a8 /* ExtPlatform.h */, - FFFDc70198107fb7c7019810 /* ExtPrismaticJoint.h */, - FFFDc70198787fb7c7019878 /* ExtPvd.h */, - FFFDc70198e07fb7c70198e0 /* ExtRevoluteJoint.h */, - FFFDc70199487fb7c7019948 /* ExtSerialization.h */, - FFFDc70199b07fb7c70199b0 /* ExtSharedQueueEntryPool.h */, - FFFDc7019a187fb7c7019a18 /* ExtSphericalJoint.h */, - FFFDc7019a807fb7c7019a80 /* ExtTaskQueueHelper.h */, - FFFDc7019ae87fb7c7019ae8 /* ExtBroadPhase.cpp */, - FFFDc7019b507fb7c7019b50 /* ExtClothFabricCooker.cpp */, - FFFDc7019bb87fb7c7019bb8 /* ExtClothGeodesicTetherCooker.cpp */, - FFFDc7019c207fb7c7019c20 /* ExtClothMeshQuadifier.cpp */, - FFFDc7019c887fb7c7019c88 /* ExtClothSimpleTetherCooker.cpp */, - FFFDc7019cf07fb7c7019cf0 /* ExtCollection.cpp */, - FFFDc7019d587fb7c7019d58 /* ExtConvexMeshExt.cpp */, - FFFDc7019dc07fb7c7019dc0 /* ExtCpuWorkerThread.cpp */, - FFFDc7019e287fb7c7019e28 /* ExtD6Joint.cpp */, - FFFDc7019e907fb7c7019e90 /* ExtD6JointSolverPrep.cpp */, - FFFDc7019ef87fb7c7019ef8 /* ExtDefaultCpuDispatcher.cpp */, - FFFDc7019f607fb7c7019f60 /* ExtDefaultErrorCallback.cpp */, - FFFDc7019fc87fb7c7019fc8 /* ExtDefaultSimulationFilterShader.cpp */, - FFFDc701a0307fb7c701a030 /* ExtDefaultStreams.cpp */, - FFFDc701a0987fb7c701a098 /* ExtDistanceJoint.cpp */, - FFFDc701a1007fb7c701a100 /* ExtDistanceJointSolverPrep.cpp */, - FFFDc701a1687fb7c701a168 /* ExtExtensions.cpp */, - FFFDc701a1d07fb7c701a1d0 /* ExtFixedJoint.cpp */, - FFFDc701a2387fb7c701a238 /* ExtFixedJointSolverPrep.cpp */, - FFFDc701a2a07fb7c701a2a0 /* ExtJoint.cpp */, - FFFDc701a3087fb7c701a308 /* ExtMetaData.cpp */, - FFFDc701a3707fb7c701a370 /* ExtParticleExt.cpp */, - FFFDc701a3d87fb7c701a3d8 /* ExtPrismaticJoint.cpp */, - FFFDc701a4407fb7c701a440 /* ExtPrismaticJointSolverPrep.cpp */, - FFFDc701a4a87fb7c701a4a8 /* ExtPvd.cpp */, - FFFDc701a5107fb7c701a510 /* ExtPxStringTable.cpp */, - FFFDc701a5787fb7c701a578 /* ExtRaycastCCD.cpp */, - FFFDc701a5e07fb7c701a5e0 /* ExtRevoluteJoint.cpp */, - FFFDc701a6487fb7c701a648 /* ExtRevoluteJointSolverPrep.cpp */, - FFFDc701a6b07fb7c701a6b0 /* ExtRigidBodyExt.cpp */, - FFFDc701a7187fb7c701a718 /* ExtSceneQueryExt.cpp */, - FFFDc701a7807fb7c701a780 /* ExtSimpleFactory.cpp */, - FFFDc701a7e87fb7c701a7e8 /* ExtSmoothNormals.cpp */, - FFFDc701a8507fb7c701a850 /* ExtSphericalJoint.cpp */, - FFFDc701a8b87fb7c701a8b8 /* ExtSphericalJointSolverPrep.cpp */, - FFFDc701a9207fb7c701a920 /* ExtTriangleMeshExt.cpp */, + FFFDfc83ee007fbcfc83ee00 /* ExtConstraintHelper.h */, + FFFDfc83ee687fbcfc83ee68 /* ExtCpuWorkerThread.h */, + FFFDfc83eed07fbcfc83eed0 /* ExtD6Joint.h */, + FFFDfc83ef387fbcfc83ef38 /* ExtDefaultCpuDispatcher.h */, + FFFDfc83efa07fbcfc83efa0 /* ExtDistanceJoint.h */, + FFFDfc83f0087fbcfc83f008 /* ExtFixedJoint.h */, + FFFDfc83f0707fbcfc83f070 /* ExtInertiaTensor.h */, + FFFDfc83f0d87fbcfc83f0d8 /* ExtJoint.h */, + FFFDfc83f1407fbcfc83f140 /* ExtJointMetaDataExtensions.h */, + FFFDfc83f1a87fbcfc83f1a8 /* ExtPlatform.h */, + FFFDfc83f2107fbcfc83f210 /* ExtPrismaticJoint.h */, + FFFDfc83f2787fbcfc83f278 /* ExtPvd.h */, + FFFDfc83f2e07fbcfc83f2e0 /* ExtRevoluteJoint.h */, + FFFDfc83f3487fbcfc83f348 /* ExtSerialization.h */, + FFFDfc83f3b07fbcfc83f3b0 /* ExtSharedQueueEntryPool.h */, + FFFDfc83f4187fbcfc83f418 /* ExtSphericalJoint.h */, + FFFDfc83f4807fbcfc83f480 /* ExtTaskQueueHelper.h */, + FFFDfc83f4e87fbcfc83f4e8 /* ExtBroadPhase.cpp */, + FFFDfc83f5507fbcfc83f550 /* ExtClothFabricCooker.cpp */, + FFFDfc83f5b87fbcfc83f5b8 /* ExtClothGeodesicTetherCooker.cpp */, + FFFDfc83f6207fbcfc83f620 /* ExtClothMeshQuadifier.cpp */, + FFFDfc83f6887fbcfc83f688 /* ExtClothSimpleTetherCooker.cpp */, + FFFDfc83f6f07fbcfc83f6f0 /* ExtCollection.cpp */, + FFFDfc83f7587fbcfc83f758 /* ExtConvexMeshExt.cpp */, + FFFDfc83f7c07fbcfc83f7c0 /* ExtCpuWorkerThread.cpp */, + FFFDfc83f8287fbcfc83f828 /* ExtD6Joint.cpp */, + FFFDfc83f8907fbcfc83f890 /* ExtD6JointSolverPrep.cpp */, + FFFDfc83f8f87fbcfc83f8f8 /* ExtDefaultCpuDispatcher.cpp */, + FFFDfc83f9607fbcfc83f960 /* ExtDefaultErrorCallback.cpp */, + FFFDfc83f9c87fbcfc83f9c8 /* ExtDefaultSimulationFilterShader.cpp */, + FFFDfc83fa307fbcfc83fa30 /* ExtDefaultStreams.cpp */, + FFFDfc83fa987fbcfc83fa98 /* ExtDistanceJoint.cpp */, + FFFDfc83fb007fbcfc83fb00 /* ExtDistanceJointSolverPrep.cpp */, + FFFDfc83fb687fbcfc83fb68 /* ExtExtensions.cpp */, + FFFDfc83fbd07fbcfc83fbd0 /* ExtFixedJoint.cpp */, + FFFDfc83fc387fbcfc83fc38 /* ExtFixedJointSolverPrep.cpp */, + FFFDfc83fca07fbcfc83fca0 /* ExtJoint.cpp */, + FFFDfc83fd087fbcfc83fd08 /* ExtMetaData.cpp */, + FFFDfc83fd707fbcfc83fd70 /* ExtParticleExt.cpp */, + FFFDfc83fdd87fbcfc83fdd8 /* ExtPrismaticJoint.cpp */, + FFFDfc83fe407fbcfc83fe40 /* ExtPrismaticJointSolverPrep.cpp */, + FFFDfc83fea87fbcfc83fea8 /* ExtPvd.cpp */, + FFFDfc83ff107fbcfc83ff10 /* ExtPxStringTable.cpp */, + FFFDfc83ff787fbcfc83ff78 /* ExtRaycastCCD.cpp */, + FFFDfc83ffe07fbcfc83ffe0 /* ExtRevoluteJoint.cpp */, + FFFDfc8400487fbcfc840048 /* ExtRevoluteJointSolverPrep.cpp */, + FFFDfc8400b07fbcfc8400b0 /* ExtRigidBodyExt.cpp */, + FFFDfc8401187fbcfc840118 /* ExtSceneQueryExt.cpp */, + FFFDfc8401807fbcfc840180 /* ExtSimpleFactory.cpp */, + FFFDfc8401e87fbcfc8401e8 /* ExtSmoothNormals.cpp */, + FFFDfc8402507fbcfc840250 /* ExtSphericalJoint.cpp */, + FFFDfc8402b87fbcfc8402b8 /* ExtSphericalJointSolverPrep.cpp */, + FFFDfc8403207fbcfc840320 /* ExtTriangleMeshExt.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc4e622307fb7c4e62230 /* serialization */ = { + FFFBfc0c21207fbcfc0c2120 /* serialization */ = { isa = PBXGroup; children = ( - FFFDc701d0007fb7c701d000 /* SnSerialUtils.h */, - FFFDc701d0687fb7c701d068 /* SnSerializationRegistry.h */, - FFFDc701d0d07fb7c701d0d0 /* SnSerialUtils.cpp */, - FFFDc701d1387fb7c701d138 /* SnSerialization.cpp */, - FFFDc701d1a07fb7c701d1a0 /* SnSerializationRegistry.cpp */, - FFFDc701d2087fb7c701d208 /* Binary/SnConvX.h */, - FFFDc701d2707fb7c701d270 /* Binary/SnConvX_Align.h */, - FFFDc701d2d87fb7c701d2d8 /* Binary/SnConvX_Common.h */, - FFFDc701d3407fb7c701d340 /* Binary/SnConvX_MetaData.h */, - FFFDc701d3a87fb7c701d3a8 /* Binary/SnConvX_Output.h */, - FFFDc701d4107fb7c701d410 /* Binary/SnConvX_Union.h */, - FFFDc701d4787fb7c701d478 /* Binary/SnSerializationContext.h */, - FFFDc701d4e07fb7c701d4e0 /* Binary/SnBinaryDeserialization.cpp */, - FFFDc701d5487fb7c701d548 /* Binary/SnBinarySerialization.cpp */, - FFFDc701d5b07fb7c701d5b0 /* Binary/SnConvX.cpp */, - FFFDc701d6187fb7c701d618 /* Binary/SnConvX_Align.cpp */, - FFFDc701d6807fb7c701d680 /* Binary/SnConvX_Convert.cpp */, - FFFDc701d6e87fb7c701d6e8 /* Binary/SnConvX_Error.cpp */, - FFFDc701d7507fb7c701d750 /* Binary/SnConvX_MetaData.cpp */, - FFFDc701d7b87fb7c701d7b8 /* Binary/SnConvX_Output.cpp */, - FFFDc701d8207fb7c701d820 /* Binary/SnConvX_Union.cpp */, - FFFDc701d8887fb7c701d888 /* Binary/SnSerializationContext.cpp */, - FFFDc701d8f07fb7c701d8f0 /* Xml/SnPxStreamOperators.h */, - FFFDc701d9587fb7c701d958 /* Xml/SnRepX1_0Defaults.h */, - FFFDc701d9c07fb7c701d9c0 /* Xml/SnRepX3_1Defaults.h */, - FFFDc701da287fb7c701da28 /* Xml/SnRepX3_2Defaults.h */, - FFFDc701da907fb7c701da90 /* Xml/SnRepXCollection.h */, - FFFDc701daf87fb7c701daf8 /* Xml/SnRepXCoreSerializer.h */, - FFFDc701db607fb7c701db60 /* Xml/SnRepXSerializerImpl.h */, - FFFDc701dbc87fb7c701dbc8 /* Xml/SnRepXUpgrader.h */, - FFFDc701dc307fb7c701dc30 /* Xml/SnSimpleXmlWriter.h */, - FFFDc701dc987fb7c701dc98 /* Xml/SnXmlDeserializer.h */, - FFFDc701dd007fb7c701dd00 /* Xml/SnXmlImpl.h */, - FFFDc701dd687fb7c701dd68 /* Xml/SnXmlMemoryAllocator.h */, - FFFDc701ddd07fb7c701ddd0 /* Xml/SnXmlMemoryPool.h */, - FFFDc701de387fb7c701de38 /* Xml/SnXmlMemoryPoolStreams.h */, - FFFDc701dea07fb7c701dea0 /* Xml/SnXmlReader.h */, - FFFDc701df087fb7c701df08 /* Xml/SnXmlSerializer.h */, - FFFDc701df707fb7c701df70 /* Xml/SnXmlSimpleXmlWriter.h */, - FFFDc701dfd87fb7c701dfd8 /* Xml/SnXmlStringToType.h */, - FFFDc701e0407fb7c701e040 /* Xml/SnXmlVisitorReader.h */, - FFFDc701e0a87fb7c701e0a8 /* Xml/SnXmlVisitorWriter.h */, - FFFDc701e1107fb7c701e110 /* Xml/SnXmlWriter.h */, - FFFDc701e1787fb7c701e178 /* Xml/SnJointRepXSerializer.cpp */, - FFFDc701e1e07fb7c701e1e0 /* Xml/SnRepXCoreSerializer.cpp */, - FFFDc701e2487fb7c701e248 /* Xml/SnRepXUpgrader.cpp */, - FFFDc701e2b07fb7c701e2b0 /* Xml/SnXmlSerialization.cpp */, - FFFDc701e3187fb7c701e318 /* File/SnFile.h */, + FFFDfc8438007fbcfc843800 /* SnSerialUtils.h */, + FFFDfc8438687fbcfc843868 /* SnSerializationRegistry.h */, + FFFDfc8438d07fbcfc8438d0 /* SnSerialUtils.cpp */, + FFFDfc8439387fbcfc843938 /* SnSerialization.cpp */, + FFFDfc8439a07fbcfc8439a0 /* SnSerializationRegistry.cpp */, + FFFDfc843a087fbcfc843a08 /* Binary/SnConvX.h */, + FFFDfc843a707fbcfc843a70 /* Binary/SnConvX_Align.h */, + FFFDfc843ad87fbcfc843ad8 /* Binary/SnConvX_Common.h */, + FFFDfc843b407fbcfc843b40 /* Binary/SnConvX_MetaData.h */, + FFFDfc843ba87fbcfc843ba8 /* Binary/SnConvX_Output.h */, + FFFDfc843c107fbcfc843c10 /* Binary/SnConvX_Union.h */, + FFFDfc843c787fbcfc843c78 /* Binary/SnSerializationContext.h */, + FFFDfc843ce07fbcfc843ce0 /* Binary/SnBinaryDeserialization.cpp */, + FFFDfc843d487fbcfc843d48 /* Binary/SnBinarySerialization.cpp */, + FFFDfc843db07fbcfc843db0 /* Binary/SnConvX.cpp */, + FFFDfc843e187fbcfc843e18 /* Binary/SnConvX_Align.cpp */, + FFFDfc843e807fbcfc843e80 /* Binary/SnConvX_Convert.cpp */, + FFFDfc843ee87fbcfc843ee8 /* Binary/SnConvX_Error.cpp */, + FFFDfc843f507fbcfc843f50 /* Binary/SnConvX_MetaData.cpp */, + FFFDfc843fb87fbcfc843fb8 /* Binary/SnConvX_Output.cpp */, + FFFDfc8440207fbcfc844020 /* Binary/SnConvX_Union.cpp */, + FFFDfc8440887fbcfc844088 /* Binary/SnSerializationContext.cpp */, + FFFDfc8440f07fbcfc8440f0 /* Xml/SnPxStreamOperators.h */, + FFFDfc8441587fbcfc844158 /* Xml/SnRepX1_0Defaults.h */, + FFFDfc8441c07fbcfc8441c0 /* Xml/SnRepX3_1Defaults.h */, + FFFDfc8442287fbcfc844228 /* Xml/SnRepX3_2Defaults.h */, + FFFDfc8442907fbcfc844290 /* Xml/SnRepXCollection.h */, + FFFDfc8442f87fbcfc8442f8 /* Xml/SnRepXCoreSerializer.h */, + FFFDfc8443607fbcfc844360 /* Xml/SnRepXSerializerImpl.h */, + FFFDfc8443c87fbcfc8443c8 /* Xml/SnRepXUpgrader.h */, + FFFDfc8444307fbcfc844430 /* Xml/SnSimpleXmlWriter.h */, + FFFDfc8444987fbcfc844498 /* Xml/SnXmlDeserializer.h */, + FFFDfc8445007fbcfc844500 /* Xml/SnXmlImpl.h */, + FFFDfc8445687fbcfc844568 /* Xml/SnXmlMemoryAllocator.h */, + FFFDfc8445d07fbcfc8445d0 /* Xml/SnXmlMemoryPool.h */, + FFFDfc8446387fbcfc844638 /* Xml/SnXmlMemoryPoolStreams.h */, + FFFDfc8446a07fbcfc8446a0 /* Xml/SnXmlReader.h */, + FFFDfc8447087fbcfc844708 /* Xml/SnXmlSerializer.h */, + FFFDfc8447707fbcfc844770 /* Xml/SnXmlSimpleXmlWriter.h */, + FFFDfc8447d87fbcfc8447d8 /* Xml/SnXmlStringToType.h */, + FFFDfc8448407fbcfc844840 /* Xml/SnXmlVisitorReader.h */, + FFFDfc8448a87fbcfc8448a8 /* Xml/SnXmlVisitorWriter.h */, + FFFDfc8449107fbcfc844910 /* Xml/SnXmlWriter.h */, + FFFDfc8449787fbcfc844978 /* Xml/SnJointRepXSerializer.cpp */, + FFFDfc8449e07fbcfc8449e0 /* Xml/SnRepXCoreSerializer.cpp */, + FFFDfc844a487fbcfc844a48 /* Xml/SnRepXUpgrader.cpp */, + FFFDfc844ab07fbcfc844ab0 /* Xml/SnXmlSerialization.cpp */, + FFFDfc844b187fbcfc844b18 /* File/SnFile.h */, ); name = "serialization"; sourceTree = SOURCE_ROOT; }; - FFFBc4e622587fb7c4e62258 /* metadata */ = { + FFFBfc0c21487fbcfc0c2148 /* metadata */ = { isa = PBXGroup; children = ( - FFFDc701ba007fb7c701ba00 /* core/include/PvdMetaDataDefineProperties.h */, - FFFDc701ba687fb7c701ba68 /* core/include/PvdMetaDataExtensions.h */, - FFFDc701bad07fb7c701bad0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFDc701bb387fb7c701bb38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFDc701bba07fb7c701bba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFDc701bc087fb7c701bc08 /* core/include/PxMetaDataCompare.h */, - FFFDc701bc707fb7c701bc70 /* core/include/PxMetaDataCppPrefix.h */, - FFFDc701bcd87fb7c701bcd8 /* core/include/PxMetaDataObjects.h */, - FFFDc701bd407fb7c701bd40 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFDc701bda87fb7c701bda8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, - FFFDc701be107fb7c701be10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, - FFFDc701be787fb7c701be78 /* extensions/include/PxExtensionMetaDataObjects.h */, - FFFDc701bee07fb7c701bee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, + FFFDfc8414007fbcfc841400 /* core/include/PvdMetaDataDefineProperties.h */, + FFFDfc8414687fbcfc841468 /* core/include/PvdMetaDataExtensions.h */, + FFFDfc8414d07fbcfc8414d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFDfc8415387fbcfc841538 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFDfc8415a07fbcfc8415a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFDfc8416087fbcfc841608 /* core/include/PxMetaDataCompare.h */, + FFFDfc8416707fbcfc841670 /* core/include/PxMetaDataCppPrefix.h */, + FFFDfc8416d87fbcfc8416d8 /* core/include/PxMetaDataObjects.h */, + FFFDfc8417407fbcfc841740 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFDfc8417a87fbcfc8417a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, + FFFDfc8418107fbcfc841810 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, + FFFDfc8418787fbcfc841878 /* extensions/include/PxExtensionMetaDataObjects.h */, + FFFDfc8418e07fbcfc8418e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBc4e529207fb7c4e52920 /* SceneQuery */ = { + FFFBfc0985207fbcfc098520 /* SceneQuery */ = { isa = PBXGroup; children = ( - FFFBc4e546c07fb7c4e546c0 /* src */, - FFFBc4e546e87fb7c4e546e8 /* include */, + FFFBfc094d007fbcfc094d00 /* src */, + FFFBfc094d287fbcfc094d28 /* include */, ); name = "SceneQuery"; sourceTree = "<group>"; }; - FFFBc4e546c07fb7c4e546c0 /* src */ = { + FFFBfc094d007fbcfc094d00 /* src */ = { isa = PBXGroup; children = ( - FFFDc70220007fb7c7022000 /* SqAABBPruner.cpp */, - FFFDc70220687fb7c7022068 /* SqAABBTree.cpp */, - FFFDc70220d07fb7c70220d0 /* SqAABBTreeUpdateMap.cpp */, - FFFDc70221387fb7c7022138 /* SqBounds.cpp */, - FFFDc70221a07fb7c70221a0 /* SqBucketPruner.cpp */, - FFFDc70222087fb7c7022208 /* SqExtendedBucketPruner.cpp */, - FFFDc70222707fb7c7022270 /* SqMetaData.cpp */, - FFFDc70222d87fb7c70222d8 /* SqPruningPool.cpp */, - FFFDc70223407fb7c7022340 /* SqPruningStructure.cpp */, - FFFDc70223a87fb7c70223a8 /* SqSceneQueryManager.cpp */, - FFFDc70224107fb7c7022410 /* SqAABBPruner.h */, - FFFDc70224787fb7c7022478 /* SqAABBTree.h */, - FFFDc70224e07fb7c70224e0 /* SqAABBTreeQuery.h */, - FFFDc70225487fb7c7022548 /* SqAABBTreeUpdateMap.h */, - FFFDc70225b07fb7c70225b0 /* SqBounds.h */, - FFFDc70226187fb7c7022618 /* SqBucketPruner.h */, - FFFDc70226807fb7c7022680 /* SqExtendedBucketPruner.h */, - FFFDc70226e87fb7c70226e8 /* SqPrunerTestsSIMD.h */, - FFFDc70227507fb7c7022750 /* SqPruningPool.h */, - FFFDc70227b87fb7c70227b8 /* SqTypedef.h */, + FFFDfc8478007fbcfc847800 /* SqAABBPruner.cpp */, + FFFDfc8478687fbcfc847868 /* SqAABBTree.cpp */, + FFFDfc8478d07fbcfc8478d0 /* SqAABBTreeUpdateMap.cpp */, + FFFDfc8479387fbcfc847938 /* SqBounds.cpp */, + FFFDfc8479a07fbcfc8479a0 /* SqBucketPruner.cpp */, + FFFDfc847a087fbcfc847a08 /* SqExtendedBucketPruner.cpp */, + FFFDfc847a707fbcfc847a70 /* SqMetaData.cpp */, + FFFDfc847ad87fbcfc847ad8 /* SqPruningPool.cpp */, + FFFDfc847b407fbcfc847b40 /* SqPruningStructure.cpp */, + FFFDfc847ba87fbcfc847ba8 /* SqSceneQueryManager.cpp */, + FFFDfc847c107fbcfc847c10 /* SqAABBPruner.h */, + FFFDfc847c787fbcfc847c78 /* SqAABBTree.h */, + FFFDfc847ce07fbcfc847ce0 /* SqAABBTreeQuery.h */, + FFFDfc847d487fbcfc847d48 /* SqAABBTreeUpdateMap.h */, + FFFDfc847db07fbcfc847db0 /* SqBounds.h */, + FFFDfc847e187fbcfc847e18 /* SqBucketPruner.h */, + FFFDfc847e807fbcfc847e80 /* SqExtendedBucketPruner.h */, + FFFDfc847ee87fbcfc847ee8 /* SqPrunerTestsSIMD.h */, + FFFDfc847f507fbcfc847f50 /* SqPruningPool.h */, + FFFDfc847fb87fbcfc847fb8 /* SqTypedef.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc4e546e87fb7c4e546e8 /* include */ = { + FFFBfc094d287fbcfc094d28 /* include */ = { isa = PBXGroup; children = ( - FFFDc4e569c07fb7c4e569c0 /* SqPruner.h */, - FFFDc4e56a287fb7c4e56a28 /* SqPrunerMergeData.h */, - FFFDc4e56a907fb7c4e56a90 /* SqPruningStructure.h */, - FFFDc4e56af87fb7c4e56af8 /* SqSceneQueryManager.h */, + FFFDfc08d1907fbcfc08d190 /* SqPruner.h */, + FFFDfc08d1f87fbcfc08d1f8 /* SqPrunerMergeData.h */, + FFFDfc08d2607fbcfc08d260 /* SqPruningStructure.h */, + FFFDfc08d2c87fbcfc08d2c8 /* SqSceneQueryManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc4e56c807fb7c4e56c80 /* SimulationController */ = { + FFFBfc08d4e07fbcfc08d4e0 /* SimulationController */ = { isa = PBXGroup; children = ( - FFFBc81411307fb7c8141130 /* include */, - FFFBc81411587fb7c8141158 /* src */, + FFFBfc0878707fbcfc087870 /* include */, + FFFBfc0878987fbcfc087898 /* src */, ); name = "SimulationController"; sourceTree = "<group>"; }; - FFFBc81411307fb7c8141130 /* include */ = { + FFFBfc0878707fbcfc087870 /* include */ = { isa = PBXGroup; children = ( - FFFDc402ec007fb7c402ec00 /* ScActorCore.h */, - FFFDc402ec687fb7c402ec68 /* ScArticulationCore.h */, - FFFDc402ecd07fb7c402ecd0 /* ScArticulationJointCore.h */, - FFFDc402ed387fb7c402ed38 /* ScBodyCore.h */, - FFFDc402eda07fb7c402eda0 /* ScClothCore.h */, - FFFDc402ee087fb7c402ee08 /* ScClothFabricCore.h */, - FFFDc402ee707fb7c402ee70 /* ScConstraintCore.h */, - FFFDc402eed87fb7c402eed8 /* ScIterators.h */, - FFFDc402ef407fb7c402ef40 /* ScMaterialCore.h */, - FFFDc402efa87fb7c402efa8 /* ScParticleSystemCore.h */, - FFFDc402f0107fb7c402f010 /* ScPhysics.h */, - FFFDc402f0787fb7c402f078 /* ScRigidCore.h */, - FFFDc402f0e07fb7c402f0e0 /* ScScene.h */, - FFFDc402f1487fb7c402f148 /* ScShapeCore.h */, - FFFDc402f1b07fb7c402f1b0 /* ScStaticCore.h */, + FFFDfc84a2007fbcfc84a200 /* ScActorCore.h */, + FFFDfc84a2687fbcfc84a268 /* ScArticulationCore.h */, + FFFDfc84a2d07fbcfc84a2d0 /* ScArticulationJointCore.h */, + FFFDfc84a3387fbcfc84a338 /* ScBodyCore.h */, + FFFDfc84a3a07fbcfc84a3a0 /* ScClothCore.h */, + FFFDfc84a4087fbcfc84a408 /* ScClothFabricCore.h */, + FFFDfc84a4707fbcfc84a470 /* ScConstraintCore.h */, + FFFDfc84a4d87fbcfc84a4d8 /* ScIterators.h */, + FFFDfc84a5407fbcfc84a540 /* ScMaterialCore.h */, + FFFDfc84a5a87fbcfc84a5a8 /* ScParticleSystemCore.h */, + FFFDfc84a6107fbcfc84a610 /* ScPhysics.h */, + FFFDfc84a6787fbcfc84a678 /* ScRigidCore.h */, + FFFDfc84a6e07fbcfc84a6e0 /* ScScene.h */, + FFFDfc84a7487fbcfc84a748 /* ScShapeCore.h */, + FFFDfc84a7b07fbcfc84a7b0 /* ScStaticCore.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc81411587fb7c8141158 /* src */ = { + FFFBfc0878987fbcfc087898 /* src */ = { isa = PBXGroup; children = ( - FFFDc40316007fb7c4031600 /* ScActorElementPair.h */, - FFFDc40316687fb7c4031668 /* ScActorInteraction.h */, - FFFDc40316d07fb7c40316d0 /* ScActorPair.h */, - FFFDc40317387fb7c4031738 /* ScActorSim.h */, - FFFDc40317a07fb7c40317a0 /* ScArticulationJointSim.h */, - FFFDc40318087fb7c4031808 /* ScArticulationSim.h */, - FFFDc40318707fb7c4031870 /* ScBodySim.h */, - FFFDc40318d87fb7c40318d8 /* ScClient.h */, - FFFDc40319407fb7c4031940 /* ScConstraintGroupNode.h */, - FFFDc40319a87fb7c40319a8 /* ScConstraintInteraction.h */, - FFFDc4031a107fb7c4031a10 /* ScConstraintProjectionManager.h */, - FFFDc4031a787fb7c4031a78 /* ScConstraintProjectionTree.h */, - FFFDc4031ae07fb7c4031ae0 /* ScConstraintSim.h */, - FFFDc4031b487fb7c4031b48 /* ScContactReportBuffer.h */, - FFFDc4031bb07fb7c4031bb0 /* ScContactStream.h */, - FFFDc4031c187fb7c4031c18 /* ScElementInteractionMarker.h */, - FFFDc4031c807fb7c4031c80 /* ScElementSim.h */, - FFFDc4031ce87fb7c4031ce8 /* ScElementSimInteraction.h */, - FFFDc4031d507fb7c4031d50 /* ScInteraction.h */, - FFFDc4031db87fb7c4031db8 /* ScInteractionFlags.h */, - FFFDc4031e207fb7c4031e20 /* ScNPhaseCore.h */, - FFFDc4031e887fb7c4031e88 /* ScObjectIDTracker.h */, - FFFDc4031ef07fb7c4031ef0 /* ScRbElementInteraction.h */, - FFFDc4031f587fb7c4031f58 /* ScRigidSim.h */, - FFFDc4031fc07fb7c4031fc0 /* ScShapeInteraction.h */, - FFFDc40320287fb7c4032028 /* ScShapeIterator.h */, - FFFDc40320907fb7c4032090 /* ScShapeSim.h */, - FFFDc40320f87fb7c40320f8 /* ScSimStateData.h */, - FFFDc40321607fb7c4032160 /* ScSimStats.h */, - FFFDc40321c87fb7c40321c8 /* ScSimulationController.h */, - FFFDc40322307fb7c4032230 /* ScSqBoundsManager.h */, - FFFDc40322987fb7c4032298 /* ScStaticSim.h */, - FFFDc40323007fb7c4032300 /* ScTriggerInteraction.h */, - FFFDc40323687fb7c4032368 /* ScTriggerPairs.h */, - FFFDc40323d07fb7c40323d0 /* ScActorCore.cpp */, - FFFDc40324387fb7c4032438 /* ScActorSim.cpp */, - FFFDc40324a07fb7c40324a0 /* ScArticulationCore.cpp */, - FFFDc40325087fb7c4032508 /* ScArticulationJointCore.cpp */, - FFFDc40325707fb7c4032570 /* ScArticulationJointSim.cpp */, - FFFDc40325d87fb7c40325d8 /* ScArticulationSim.cpp */, - FFFDc40326407fb7c4032640 /* ScBodyCore.cpp */, - FFFDc40326a87fb7c40326a8 /* ScBodyCoreKinematic.cpp */, - FFFDc40327107fb7c4032710 /* ScBodySim.cpp */, - FFFDc40327787fb7c4032778 /* ScConstraintCore.cpp */, - FFFDc40327e07fb7c40327e0 /* ScConstraintGroupNode.cpp */, - FFFDc40328487fb7c4032848 /* ScConstraintInteraction.cpp */, - FFFDc40328b07fb7c40328b0 /* ScConstraintProjectionManager.cpp */, - FFFDc40329187fb7c4032918 /* ScConstraintProjectionTree.cpp */, - FFFDc40329807fb7c4032980 /* ScConstraintSim.cpp */, - FFFDc40329e87fb7c40329e8 /* ScElementInteractionMarker.cpp */, - FFFDc4032a507fb7c4032a50 /* ScElementSim.cpp */, - FFFDc4032ab87fb7c4032ab8 /* ScInteraction.cpp */, - FFFDc4032b207fb7c4032b20 /* ScIterators.cpp */, - FFFDc4032b887fb7c4032b88 /* ScMaterialCore.cpp */, - FFFDc4032bf07fb7c4032bf0 /* ScMetaData.cpp */, - FFFDc4032c587fb7c4032c58 /* ScNPhaseCore.cpp */, - FFFDc4032cc07fb7c4032cc0 /* ScPhysics.cpp */, - FFFDc4032d287fb7c4032d28 /* ScRigidCore.cpp */, - FFFDc4032d907fb7c4032d90 /* ScRigidSim.cpp */, - FFFDc4032df87fb7c4032df8 /* ScScene.cpp */, - FFFDc4032e607fb7c4032e60 /* ScShapeCore.cpp */, - FFFDc4032ec87fb7c4032ec8 /* ScShapeInteraction.cpp */, - FFFDc4032f307fb7c4032f30 /* ScShapeSim.cpp */, - FFFDc4032f987fb7c4032f98 /* ScSimStats.cpp */, - FFFDc40330007fb7c4033000 /* ScSimulationController.cpp */, - FFFDc40330687fb7c4033068 /* ScSqBoundsManager.cpp */, - FFFDc40330d07fb7c40330d0 /* ScStaticCore.cpp */, - FFFDc40331387fb7c4033138 /* ScStaticSim.cpp */, - FFFDc40331a07fb7c40331a0 /* ScTriggerInteraction.cpp */, - FFFDc40332087fb7c4033208 /* particles/ScParticleBodyInteraction.h */, - FFFDc40332707fb7c4033270 /* particles/ScParticlePacketShape.h */, - FFFDc40332d87fb7c40332d8 /* particles/ScParticleSystemSim.h */, - FFFDc40333407fb7c4033340 /* particles/ScParticleBodyInteraction.cpp */, - FFFDc40333a87fb7c40333a8 /* particles/ScParticlePacketShape.cpp */, - FFFDc40334107fb7c4033410 /* particles/ScParticleSystemCore.cpp */, - FFFDc40334787fb7c4033478 /* particles/ScParticleSystemSim.cpp */, - FFFDc40334e07fb7c40334e0 /* cloth/ScClothShape.h */, - FFFDc40335487fb7c4033548 /* cloth/ScClothSim.h */, - FFFDc40335b07fb7c40335b0 /* cloth/ScClothCore.cpp */, - FFFDc40336187fb7c4033618 /* cloth/ScClothFabricCore.cpp */, - FFFDc40336807fb7c4033680 /* cloth/ScClothShape.cpp */, - FFFDc40336e87fb7c40336e8 /* cloth/ScClothSim.cpp */, + FFFDfc84d4007fbcfc84d400 /* ScActorElementPair.h */, + FFFDfc84d4687fbcfc84d468 /* ScActorInteraction.h */, + FFFDfc84d4d07fbcfc84d4d0 /* ScActorPair.h */, + FFFDfc84d5387fbcfc84d538 /* ScActorSim.h */, + FFFDfc84d5a07fbcfc84d5a0 /* ScArticulationJointSim.h */, + FFFDfc84d6087fbcfc84d608 /* ScArticulationSim.h */, + FFFDfc84d6707fbcfc84d670 /* ScBodySim.h */, + FFFDfc84d6d87fbcfc84d6d8 /* ScClient.h */, + FFFDfc84d7407fbcfc84d740 /* ScConstraintGroupNode.h */, + FFFDfc84d7a87fbcfc84d7a8 /* ScConstraintInteraction.h */, + FFFDfc84d8107fbcfc84d810 /* ScConstraintProjectionManager.h */, + FFFDfc84d8787fbcfc84d878 /* ScConstraintProjectionTree.h */, + FFFDfc84d8e07fbcfc84d8e0 /* ScConstraintSim.h */, + FFFDfc84d9487fbcfc84d948 /* ScContactReportBuffer.h */, + FFFDfc84d9b07fbcfc84d9b0 /* ScContactStream.h */, + FFFDfc84da187fbcfc84da18 /* ScElementInteractionMarker.h */, + FFFDfc84da807fbcfc84da80 /* ScElementSim.h */, + FFFDfc84dae87fbcfc84dae8 /* ScElementSimInteraction.h */, + FFFDfc84db507fbcfc84db50 /* ScInteraction.h */, + FFFDfc84dbb87fbcfc84dbb8 /* ScInteractionFlags.h */, + FFFDfc84dc207fbcfc84dc20 /* ScNPhaseCore.h */, + FFFDfc84dc887fbcfc84dc88 /* ScObjectIDTracker.h */, + FFFDfc84dcf07fbcfc84dcf0 /* ScRbElementInteraction.h */, + FFFDfc84dd587fbcfc84dd58 /* ScRigidSim.h */, + FFFDfc84ddc07fbcfc84ddc0 /* ScShapeInteraction.h */, + FFFDfc84de287fbcfc84de28 /* ScShapeIterator.h */, + FFFDfc84de907fbcfc84de90 /* ScShapeSim.h */, + FFFDfc84def87fbcfc84def8 /* ScSimStateData.h */, + FFFDfc84df607fbcfc84df60 /* ScSimStats.h */, + FFFDfc84dfc87fbcfc84dfc8 /* ScSimulationController.h */, + FFFDfc84e0307fbcfc84e030 /* ScSqBoundsManager.h */, + FFFDfc84e0987fbcfc84e098 /* ScStaticSim.h */, + FFFDfc84e1007fbcfc84e100 /* ScTriggerInteraction.h */, + FFFDfc84e1687fbcfc84e168 /* ScTriggerPairs.h */, + FFFDfc84e1d07fbcfc84e1d0 /* ScActorCore.cpp */, + FFFDfc84e2387fbcfc84e238 /* ScActorSim.cpp */, + FFFDfc84e2a07fbcfc84e2a0 /* ScArticulationCore.cpp */, + FFFDfc84e3087fbcfc84e308 /* ScArticulationJointCore.cpp */, + FFFDfc84e3707fbcfc84e370 /* ScArticulationJointSim.cpp */, + FFFDfc84e3d87fbcfc84e3d8 /* ScArticulationSim.cpp */, + FFFDfc84e4407fbcfc84e440 /* ScBodyCore.cpp */, + FFFDfc84e4a87fbcfc84e4a8 /* ScBodyCoreKinematic.cpp */, + FFFDfc84e5107fbcfc84e510 /* ScBodySim.cpp */, + FFFDfc84e5787fbcfc84e578 /* ScConstraintCore.cpp */, + FFFDfc84e5e07fbcfc84e5e0 /* ScConstraintGroupNode.cpp */, + FFFDfc84e6487fbcfc84e648 /* ScConstraintInteraction.cpp */, + FFFDfc84e6b07fbcfc84e6b0 /* ScConstraintProjectionManager.cpp */, + FFFDfc84e7187fbcfc84e718 /* ScConstraintProjectionTree.cpp */, + FFFDfc84e7807fbcfc84e780 /* ScConstraintSim.cpp */, + FFFDfc84e7e87fbcfc84e7e8 /* ScElementInteractionMarker.cpp */, + FFFDfc84e8507fbcfc84e850 /* ScElementSim.cpp */, + FFFDfc84e8b87fbcfc84e8b8 /* ScInteraction.cpp */, + FFFDfc84e9207fbcfc84e920 /* ScIterators.cpp */, + FFFDfc84e9887fbcfc84e988 /* ScMaterialCore.cpp */, + FFFDfc84e9f07fbcfc84e9f0 /* ScMetaData.cpp */, + FFFDfc84ea587fbcfc84ea58 /* ScNPhaseCore.cpp */, + FFFDfc84eac07fbcfc84eac0 /* ScPhysics.cpp */, + FFFDfc84eb287fbcfc84eb28 /* ScRigidCore.cpp */, + FFFDfc84eb907fbcfc84eb90 /* ScRigidSim.cpp */, + FFFDfc84ebf87fbcfc84ebf8 /* ScScene.cpp */, + FFFDfc84ec607fbcfc84ec60 /* ScShapeCore.cpp */, + FFFDfc84ecc87fbcfc84ecc8 /* ScShapeInteraction.cpp */, + FFFDfc84ed307fbcfc84ed30 /* ScShapeSim.cpp */, + FFFDfc84ed987fbcfc84ed98 /* ScSimStats.cpp */, + FFFDfc84ee007fbcfc84ee00 /* ScSimulationController.cpp */, + FFFDfc84ee687fbcfc84ee68 /* ScSqBoundsManager.cpp */, + FFFDfc84eed07fbcfc84eed0 /* ScStaticCore.cpp */, + FFFDfc84ef387fbcfc84ef38 /* ScStaticSim.cpp */, + FFFDfc84efa07fbcfc84efa0 /* ScTriggerInteraction.cpp */, + FFFDfc84f0087fbcfc84f008 /* particles/ScParticleBodyInteraction.h */, + FFFDfc84f0707fbcfc84f070 /* particles/ScParticlePacketShape.h */, + FFFDfc84f0d87fbcfc84f0d8 /* particles/ScParticleSystemSim.h */, + FFFDfc84f1407fbcfc84f140 /* particles/ScParticleBodyInteraction.cpp */, + FFFDfc84f1a87fbcfc84f1a8 /* particles/ScParticlePacketShape.cpp */, + FFFDfc84f2107fbcfc84f210 /* particles/ScParticleSystemCore.cpp */, + FFFDfc84f2787fbcfc84f278 /* particles/ScParticleSystemSim.cpp */, + FFFDfc84f2e07fbcfc84f2e0 /* cloth/ScClothShape.h */, + FFFDfc84f3487fbcfc84f348 /* cloth/ScClothSim.h */, + FFFDfc84f3b07fbcfc84f3b0 /* cloth/ScClothCore.cpp */, + FFFDfc84f4187fbcfc84f418 /* cloth/ScClothFabricCore.cpp */, + FFFDfc84f4807fbcfc84f480 /* cloth/ScClothShape.cpp */, + FFFDfc84f4e87fbcfc84f4e8 /* cloth/ScClothSim.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc342e0007fb7c342e000 /* PhysXCooking */ = { + FFFBfc07fd407fbcfc07fd40 /* PhysXCooking */ = { isa = PBXGroup; children = ( - FFFBc346cb007fb7c346cb00 /* include */, - FFFBc346cb287fb7c346cb28 /* src */, + FFFBfc07a0e07fbcfc07a0e0 /* include */, + FFFBfc07a1087fbcfc07a108 /* src */, ); name = "PhysXCooking"; sourceTree = "<group>"; }; - FFFBc346cb007fb7c346cb00 /* include */ = { + FFFBfc07a0e07fbcfc07a0e0 /* include */ = { isa = PBXGroup; children = ( - FFFDc346bad07fb7c346bad0 /* PxBVH33MidphaseDesc.h */, - FFFDc346bb387fb7c346bb38 /* PxBVH34MidphaseDesc.h */, - FFFDc346bba07fb7c346bba0 /* PxConvexMeshDesc.h */, - FFFDc346bc087fb7c346bc08 /* PxCooking.h */, - FFFDc346bc707fb7c346bc70 /* PxMidphaseDesc.h */, - FFFDc346bcd87fb7c346bcd8 /* PxTriangleMeshDesc.h */, - FFFDc346bd407fb7c346bd40 /* Pxc.h */, + FFFDfc1bb2907fbcfc1bb290 /* PxBVH33MidphaseDesc.h */, + FFFDfc1bb2f87fbcfc1bb2f8 /* PxBVH34MidphaseDesc.h */, + FFFDfc1bb3607fbcfc1bb360 /* PxConvexMeshDesc.h */, + FFFDfc1bb3c87fbcfc1bb3c8 /* PxCooking.h */, + FFFDfc1bb4307fbcfc1bb430 /* PxMidphaseDesc.h */, + FFFDfc1bb4987fbcfc1bb498 /* PxTriangleMeshDesc.h */, + FFFDfc1bb5007fbcfc1bb500 /* Pxc.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc346cb287fb7c346cb28 /* src */ = { + FFFBfc07a1087fbcfc07a108 /* src */ = { isa = PBXGroup; children = ( - FFFDc68216007fb7c6821600 /* Adjacencies.cpp */, - FFFDc68216687fb7c6821668 /* Cooking.cpp */, - FFFDc68216d07fb7c68216d0 /* CookingUtils.cpp */, - FFFDc68217387fb7c6821738 /* EdgeList.cpp */, - FFFDc68217a07fb7c68217a0 /* MeshCleaner.cpp */, - FFFDc68218087fb7c6821808 /* Quantizer.cpp */, - FFFDc68218707fb7c6821870 /* Adjacencies.h */, - FFFDc68218d87fb7c68218d8 /* Cooking.h */, - FFFDc68219407fb7c6821940 /* CookingUtils.h */, - FFFDc68219a87fb7c68219a8 /* EdgeList.h */, - FFFDc6821a107fb7c6821a10 /* MeshCleaner.h */, - FFFDc6821a787fb7c6821a78 /* Quantizer.h */, - FFFDc6821ae07fb7c6821ae0 /* mesh/GrbTriangleMeshCooking.cpp */, - FFFDc6821b487fb7c6821b48 /* mesh/HeightFieldCooking.cpp */, - FFFDc6821bb07fb7c6821bb0 /* mesh/RTreeCooking.cpp */, - FFFDc6821c187fb7c6821c18 /* mesh/TriangleMeshBuilder.cpp */, - FFFDc6821c807fb7c6821c80 /* mesh/GrbTriangleMeshCooking.h */, - FFFDc6821ce87fb7c6821ce8 /* mesh/HeightFieldCooking.h */, - FFFDc6821d507fb7c6821d50 /* mesh/QuickSelect.h */, - FFFDc6821db87fb7c6821db8 /* mesh/RTreeCooking.h */, - FFFDc6821e207fb7c6821e20 /* mesh/TriangleMeshBuilder.h */, - FFFDc6821e887fb7c6821e88 /* convex/BigConvexDataBuilder.cpp */, - FFFDc6821ef07fb7c6821ef0 /* convex/ConvexHullBuilder.cpp */, - FFFDc6821f587fb7c6821f58 /* convex/ConvexHullLib.cpp */, - FFFDc6821fc07fb7c6821fc0 /* convex/ConvexHullUtils.cpp */, - FFFDc68220287fb7c6822028 /* convex/ConvexMeshBuilder.cpp */, - FFFDc68220907fb7c6822090 /* convex/ConvexPolygonsBuilder.cpp */, - FFFDc68220f87fb7c68220f8 /* convex/InflationConvexHullLib.cpp */, - FFFDc68221607fb7c6822160 /* convex/QuickHullConvexHullLib.cpp */, - FFFDc68221c87fb7c68221c8 /* convex/VolumeIntegration.cpp */, - FFFDc68222307fb7c6822230 /* convex/BigConvexDataBuilder.h */, - FFFDc68222987fb7c6822298 /* convex/ConvexHullBuilder.h */, - FFFDc68223007fb7c6822300 /* convex/ConvexHullLib.h */, - FFFDc68223687fb7c6822368 /* convex/ConvexHullUtils.h */, - FFFDc68223d07fb7c68223d0 /* convex/ConvexMeshBuilder.h */, - FFFDc68224387fb7c6822438 /* convex/ConvexPolygonsBuilder.h */, - FFFDc68224a07fb7c68224a0 /* convex/InflationConvexHullLib.h */, - FFFDc68225087fb7c6822508 /* convex/QuickHullConvexHullLib.h */, - FFFDc68225707fb7c6822570 /* convex/VolumeIntegration.h */, + FFFDfc8516007fbcfc851600 /* Adjacencies.cpp */, + FFFDfc8516687fbcfc851668 /* Cooking.cpp */, + FFFDfc8516d07fbcfc8516d0 /* CookingUtils.cpp */, + FFFDfc8517387fbcfc851738 /* EdgeList.cpp */, + FFFDfc8517a07fbcfc8517a0 /* MeshCleaner.cpp */, + FFFDfc8518087fbcfc851808 /* Quantizer.cpp */, + FFFDfc8518707fbcfc851870 /* Adjacencies.h */, + FFFDfc8518d87fbcfc8518d8 /* Cooking.h */, + FFFDfc8519407fbcfc851940 /* CookingUtils.h */, + FFFDfc8519a87fbcfc8519a8 /* EdgeList.h */, + FFFDfc851a107fbcfc851a10 /* MeshCleaner.h */, + FFFDfc851a787fbcfc851a78 /* Quantizer.h */, + FFFDfc851ae07fbcfc851ae0 /* mesh/GrbTriangleMeshCooking.cpp */, + FFFDfc851b487fbcfc851b48 /* mesh/HeightFieldCooking.cpp */, + FFFDfc851bb07fbcfc851bb0 /* mesh/RTreeCooking.cpp */, + FFFDfc851c187fbcfc851c18 /* mesh/TriangleMeshBuilder.cpp */, + FFFDfc851c807fbcfc851c80 /* mesh/GrbTriangleMeshCooking.h */, + FFFDfc851ce87fbcfc851ce8 /* mesh/HeightFieldCooking.h */, + FFFDfc851d507fbcfc851d50 /* mesh/QuickSelect.h */, + FFFDfc851db87fbcfc851db8 /* mesh/RTreeCooking.h */, + FFFDfc851e207fbcfc851e20 /* mesh/TriangleMeshBuilder.h */, + FFFDfc851e887fbcfc851e88 /* convex/BigConvexDataBuilder.cpp */, + FFFDfc851ef07fbcfc851ef0 /* convex/ConvexHullBuilder.cpp */, + FFFDfc851f587fbcfc851f58 /* convex/ConvexHullLib.cpp */, + FFFDfc851fc07fbcfc851fc0 /* convex/ConvexHullUtils.cpp */, + FFFDfc8520287fbcfc852028 /* convex/ConvexMeshBuilder.cpp */, + FFFDfc8520907fbcfc852090 /* convex/ConvexPolygonsBuilder.cpp */, + FFFDfc8520f87fbcfc8520f8 /* convex/InflationConvexHullLib.cpp */, + FFFDfc8521607fbcfc852160 /* convex/QuickHullConvexHullLib.cpp */, + FFFDfc8521c87fbcfc8521c8 /* convex/VolumeIntegration.cpp */, + FFFDfc8522307fbcfc852230 /* convex/BigConvexDataBuilder.h */, + FFFDfc8522987fbcfc852298 /* convex/ConvexHullBuilder.h */, + FFFDfc8523007fbcfc852300 /* convex/ConvexHullLib.h */, + FFFDfc8523687fbcfc852368 /* convex/ConvexHullUtils.h */, + FFFDfc8523d07fbcfc8523d0 /* convex/ConvexMeshBuilder.h */, + FFFDfc8524387fbcfc852438 /* convex/ConvexPolygonsBuilder.h */, + FFFDfc8524a07fbcfc8524a0 /* convex/InflationConvexHullLib.h */, + FFFDfc8525087fbcfc852508 /* convex/QuickHullConvexHullLib.h */, + FFFDfc8525707fbcfc852570 /* convex/VolumeIntegration.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc4b0e1607fb7c4b0e160 /* PhysXCommon */ = { + FFFBfa8913407fbcfa891340 /* PhysXCommon */ = { isa = PBXGroup; children = ( - FFFBc347bc907fb7c347bc90 /* include */, - FFFBc347bcb87fb7c347bcb8 /* common */, - FFFBc347bce07fb7c347bce0 /* geomutils */, + FFFBfaaf85507fbcfaaf8550 /* include */, + FFFBfaaf85787fbcfaaf8578 /* common */, + FFFBfaaf85a07fbcfaaf85a0 /* geomutils */, ); name = "PhysXCommon"; sourceTree = "<group>"; }; - FFFBc347bc907fb7c347bc90 /* include */ = { + FFFBfaaf85507fbcfaaf8550 /* include */ = { isa = PBXGroup; children = ( - FFFDc401fe007fb7c401fe00 /* common/PxBase.h */, - FFFDc401fe687fb7c401fe68 /* common/PxCollection.h */, - FFFDc401fed07fb7c401fed0 /* common/PxCoreUtilityTypes.h */, - FFFDc401ff387fb7c401ff38 /* common/PxMetaData.h */, - FFFDc401ffa07fb7c401ffa0 /* common/PxMetaDataFlags.h */, - FFFDc40200087fb7c4020008 /* common/PxPhysXCommonConfig.h */, - FFFDc40200707fb7c4020070 /* common/PxPhysicsInsertionCallback.h */, - FFFDc40200d87fb7c40200d8 /* common/PxRenderBuffer.h */, - FFFDc40201407fb7c4020140 /* common/PxSerialFramework.h */, - FFFDc40201a87fb7c40201a8 /* common/PxSerializer.h */, - FFFDc40202107fb7c4020210 /* common/PxStringTable.h */, - FFFDc40202787fb7c4020278 /* common/PxTolerancesScale.h */, - FFFDc40202e07fb7c40202e0 /* common/PxTypeInfo.h */, - FFFDc40203487fb7c4020348 /* geometry/PxBoxGeometry.h */, - FFFDc40203b07fb7c40203b0 /* geometry/PxCapsuleGeometry.h */, - FFFDc40204187fb7c4020418 /* geometry/PxConvexMesh.h */, - FFFDc40204807fb7c4020480 /* geometry/PxConvexMeshGeometry.h */, - FFFDc40204e87fb7c40204e8 /* geometry/PxGeometry.h */, - FFFDc40205507fb7c4020550 /* geometry/PxGeometryHelpers.h */, - FFFDc40205b87fb7c40205b8 /* geometry/PxGeometryQuery.h */, - FFFDc40206207fb7c4020620 /* geometry/PxHeightField.h */, - FFFDc40206887fb7c4020688 /* geometry/PxHeightFieldDesc.h */, - FFFDc40206f07fb7c40206f0 /* geometry/PxHeightFieldFlag.h */, - FFFDc40207587fb7c4020758 /* geometry/PxHeightFieldGeometry.h */, - FFFDc40207c07fb7c40207c0 /* geometry/PxHeightFieldSample.h */, - FFFDc40208287fb7c4020828 /* geometry/PxMeshQuery.h */, - FFFDc40208907fb7c4020890 /* geometry/PxMeshScale.h */, - FFFDc40208f87fb7c40208f8 /* geometry/PxPlaneGeometry.h */, - FFFDc40209607fb7c4020960 /* geometry/PxSimpleTriangleMesh.h */, - FFFDc40209c87fb7c40209c8 /* geometry/PxSphereGeometry.h */, - FFFDc4020a307fb7c4020a30 /* geometry/PxTriangle.h */, - FFFDc4020a987fb7c4020a98 /* geometry/PxTriangleMesh.h */, - FFFDc4020b007fb7c4020b00 /* geometry/PxTriangleMeshGeometry.h */, + FFFDfb00ec007fbcfb00ec00 /* common/PxBase.h */, + FFFDfb00ec687fbcfb00ec68 /* common/PxCollection.h */, + FFFDfb00ecd07fbcfb00ecd0 /* common/PxCoreUtilityTypes.h */, + FFFDfb00ed387fbcfb00ed38 /* common/PxMetaData.h */, + FFFDfb00eda07fbcfb00eda0 /* common/PxMetaDataFlags.h */, + FFFDfb00ee087fbcfb00ee08 /* common/PxPhysXCommonConfig.h */, + FFFDfb00ee707fbcfb00ee70 /* common/PxPhysicsInsertionCallback.h */, + FFFDfb00eed87fbcfb00eed8 /* common/PxRenderBuffer.h */, + FFFDfb00ef407fbcfb00ef40 /* common/PxSerialFramework.h */, + FFFDfb00efa87fbcfb00efa8 /* common/PxSerializer.h */, + FFFDfb00f0107fbcfb00f010 /* common/PxStringTable.h */, + FFFDfb00f0787fbcfb00f078 /* common/PxTolerancesScale.h */, + FFFDfb00f0e07fbcfb00f0e0 /* common/PxTypeInfo.h */, + FFFDfb00f1487fbcfb00f148 /* geometry/PxBoxGeometry.h */, + FFFDfb00f1b07fbcfb00f1b0 /* geometry/PxCapsuleGeometry.h */, + FFFDfb00f2187fbcfb00f218 /* geometry/PxConvexMesh.h */, + FFFDfb00f2807fbcfb00f280 /* geometry/PxConvexMeshGeometry.h */, + FFFDfb00f2e87fbcfb00f2e8 /* geometry/PxGeometry.h */, + FFFDfb00f3507fbcfb00f350 /* geometry/PxGeometryHelpers.h */, + FFFDfb00f3b87fbcfb00f3b8 /* geometry/PxGeometryQuery.h */, + FFFDfb00f4207fbcfb00f420 /* geometry/PxHeightField.h */, + FFFDfb00f4887fbcfb00f488 /* geometry/PxHeightFieldDesc.h */, + FFFDfb00f4f07fbcfb00f4f0 /* geometry/PxHeightFieldFlag.h */, + FFFDfb00f5587fbcfb00f558 /* geometry/PxHeightFieldGeometry.h */, + FFFDfb00f5c07fbcfb00f5c0 /* geometry/PxHeightFieldSample.h */, + FFFDfb00f6287fbcfb00f628 /* geometry/PxMeshQuery.h */, + FFFDfb00f6907fbcfb00f690 /* geometry/PxMeshScale.h */, + FFFDfb00f6f87fbcfb00f6f8 /* geometry/PxPlaneGeometry.h */, + FFFDfb00f7607fbcfb00f760 /* geometry/PxSimpleTriangleMesh.h */, + FFFDfb00f7c87fbcfb00f7c8 /* geometry/PxSphereGeometry.h */, + FFFDfb00f8307fbcfb00f830 /* geometry/PxTriangle.h */, + FFFDfb00f8987fbcfb00f898 /* geometry/PxTriangleMesh.h */, + FFFDfb00f9007fbcfb00f900 /* geometry/PxTriangleMeshGeometry.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc347bcb87fb7c347bcb8 /* common */ = { + FFFBfaaf85787fbcfaaf8578 /* common */ = { isa = PBXGroup; children = ( - FFFDc3808e007fb7c3808e00 /* src/CmBoxPruning.cpp */, - FFFDc3808e687fb7c3808e68 /* src/CmCollection.cpp */, - FFFDc3808ed07fb7c3808ed0 /* src/CmMathUtils.cpp */, - FFFDc3808f387fb7c3808f38 /* src/CmPtrTable.cpp */, - FFFDc3808fa07fb7c3808fa0 /* src/CmRadixSort.cpp */, - FFFDc38090087fb7c3809008 /* src/CmRadixSortBuffered.cpp */, - FFFDc38090707fb7c3809070 /* src/CmRenderOutput.cpp */, - FFFDc38090d87fb7c38090d8 /* src/CmVisualization.cpp */, - FFFDc38091407fb7c3809140 /* src/CmBitMap.h */, - FFFDc38091a87fb7c38091a8 /* src/CmBoxPruning.h */, - FFFDc38092107fb7c3809210 /* src/CmCollection.h */, - FFFDc38092787fb7c3809278 /* src/CmConeLimitHelper.h */, - FFFDc38092e07fb7c38092e0 /* src/CmFlushPool.h */, - FFFDc38093487fb7c3809348 /* src/CmIDPool.h */, - FFFDc38093b07fb7c38093b0 /* src/CmIO.h */, - FFFDc38094187fb7c3809418 /* src/CmMatrix34.h */, - FFFDc38094807fb7c3809480 /* src/CmPhysXCommon.h */, - FFFDc38094e87fb7c38094e8 /* src/CmPool.h */, - FFFDc38095507fb7c3809550 /* src/CmPreallocatingPool.h */, - FFFDc38095b87fb7c38095b8 /* src/CmPriorityQueue.h */, - FFFDc38096207fb7c3809620 /* src/CmPtrTable.h */, - FFFDc38096887fb7c3809688 /* src/CmQueue.h */, - FFFDc38096f07fb7c38096f0 /* src/CmRadixSort.h */, - FFFDc38097587fb7c3809758 /* src/CmRadixSortBuffered.h */, - FFFDc38097c07fb7c38097c0 /* src/CmReaderWriterLock.h */, - FFFDc38098287fb7c3809828 /* src/CmRefCountable.h */, - FFFDc38098907fb7c3809890 /* src/CmRenderBuffer.h */, - FFFDc38098f87fb7c38098f8 /* src/CmRenderOutput.h */, - FFFDc38099607fb7c3809960 /* src/CmScaling.h */, - FFFDc38099c87fb7c38099c8 /* src/CmSpatialVector.h */, - FFFDc3809a307fb7c3809a30 /* src/CmTask.h */, - FFFDc3809a987fb7c3809a98 /* src/CmTaskPool.h */, - FFFDc3809b007fb7c3809b00 /* src/CmTmpMem.h */, - FFFDc3809b687fb7c3809b68 /* src/CmTransformUtils.h */, - FFFDc3809bd07fb7c3809bd0 /* src/CmUtils.h */, - FFFDc3809c387fb7c3809c38 /* src/CmVisualization.h */, + FFFDfa18ee007fbcfa18ee00 /* src/CmBoxPruning.cpp */, + FFFDfa18ee687fbcfa18ee68 /* src/CmCollection.cpp */, + FFFDfa18eed07fbcfa18eed0 /* src/CmMathUtils.cpp */, + FFFDfa18ef387fbcfa18ef38 /* src/CmPtrTable.cpp */, + FFFDfa18efa07fbcfa18efa0 /* src/CmRadixSort.cpp */, + FFFDfa18f0087fbcfa18f008 /* src/CmRadixSortBuffered.cpp */, + FFFDfa18f0707fbcfa18f070 /* src/CmRenderOutput.cpp */, + FFFDfa18f0d87fbcfa18f0d8 /* src/CmVisualization.cpp */, + FFFDfa18f1407fbcfa18f140 /* src/CmBitMap.h */, + FFFDfa18f1a87fbcfa18f1a8 /* src/CmBoxPruning.h */, + FFFDfa18f2107fbcfa18f210 /* src/CmCollection.h */, + FFFDfa18f2787fbcfa18f278 /* src/CmConeLimitHelper.h */, + FFFDfa18f2e07fbcfa18f2e0 /* src/CmFlushPool.h */, + FFFDfa18f3487fbcfa18f348 /* src/CmIDPool.h */, + FFFDfa18f3b07fbcfa18f3b0 /* src/CmIO.h */, + FFFDfa18f4187fbcfa18f418 /* src/CmMatrix34.h */, + FFFDfa18f4807fbcfa18f480 /* src/CmPhysXCommon.h */, + FFFDfa18f4e87fbcfa18f4e8 /* src/CmPool.h */, + FFFDfa18f5507fbcfa18f550 /* src/CmPreallocatingPool.h */, + FFFDfa18f5b87fbcfa18f5b8 /* src/CmPriorityQueue.h */, + FFFDfa18f6207fbcfa18f620 /* src/CmPtrTable.h */, + FFFDfa18f6887fbcfa18f688 /* src/CmQueue.h */, + FFFDfa18f6f07fbcfa18f6f0 /* src/CmRadixSort.h */, + FFFDfa18f7587fbcfa18f758 /* src/CmRadixSortBuffered.h */, + FFFDfa18f7c07fbcfa18f7c0 /* src/CmReaderWriterLock.h */, + FFFDfa18f8287fbcfa18f828 /* src/CmRefCountable.h */, + FFFDfa18f8907fbcfa18f890 /* src/CmRenderBuffer.h */, + FFFDfa18f8f87fbcfa18f8f8 /* src/CmRenderOutput.h */, + FFFDfa18f9607fbcfa18f960 /* src/CmScaling.h */, + FFFDfa18f9c87fbcfa18f9c8 /* src/CmSpatialVector.h */, + FFFDfa18fa307fbcfa18fa30 /* src/CmTask.h */, + FFFDfa18fa987fbcfa18fa98 /* src/CmTaskPool.h */, + FFFDfa18fb007fbcfa18fb00 /* src/CmTmpMem.h */, + FFFDfa18fb687fbcfa18fb68 /* src/CmTransformUtils.h */, + FFFDfa18fbd07fbcfa18fbd0 /* src/CmUtils.h */, + FFFDfa18fc387fbcfa18fc38 /* src/CmVisualization.h */, ); name = "common"; sourceTree = SOURCE_ROOT; }; - FFFBc347bce07fb7c347bce0 /* geomutils */ = { + FFFBfaaf85a07fbcfaaf85a0 /* geomutils */ = { isa = PBXGroup; children = ( - FFFDc680ac007fb7c680ac00 /* headers/GuAxes.h */, - FFFDc680ac687fb7c680ac68 /* headers/GuBox.h */, - FFFDc680acd07fb7c680acd0 /* headers/GuDistanceSegmentBox.h */, - FFFDc680ad387fb7c680ad38 /* headers/GuDistanceSegmentSegment.h */, - FFFDc680ada07fb7c680ada0 /* headers/GuIntersectionBoxBox.h */, - FFFDc680ae087fb7c680ae08 /* headers/GuIntersectionTriangleBox.h */, - FFFDc680ae707fb7c680ae70 /* headers/GuRaycastTests.h */, - FFFDc680aed87fb7c680aed8 /* headers/GuSIMDHelpers.h */, - FFFDc680af407fb7c680af40 /* headers/GuSegment.h */, - FFFDc680afa87fb7c680afa8 /* ../../Include/GeomUtils */, - FFFDc680b0107fb7c680b010 /* src/GuBounds.h */, - FFFDc680b0787fb7c680b078 /* src/GuCapsule.h */, - FFFDc680b0e07fb7c680b0e0 /* src/GuCenterExtents.h */, - FFFDc680b1487fb7c680b148 /* src/GuGeometryUnion.h */, - FFFDc680b1b07fb7c680b1b0 /* src/GuInternal.h */, - FFFDc680b2187fb7c680b218 /* src/GuMTD.h */, - FFFDc680b2807fb7c680b280 /* src/GuMeshFactory.h */, - FFFDc680b2e87fb7c680b2e8 /* src/GuOverlapTests.h */, - FFFDc680b3507fb7c680b350 /* src/GuSerialize.h */, - FFFDc680b3b87fb7c680b3b8 /* src/GuSphere.h */, - FFFDc680b4207fb7c680b420 /* src/GuSweepMTD.h */, - FFFDc680b4887fb7c680b488 /* src/GuSweepSharedTests.h */, - FFFDc680b4f07fb7c680b4f0 /* src/GuSweepTests.h */, - FFFDc680b5587fb7c680b558 /* src/contact/GuContactMethodImpl.h */, - FFFDc680b5c07fb7c680b5c0 /* src/contact/GuContactPolygonPolygon.h */, - FFFDc680b6287fb7c680b628 /* src/contact/GuFeatureCode.h */, - FFFDc680b6907fb7c680b690 /* src/contact/GuLegacyTraceLineCallback.h */, - FFFDc680b6f87fb7c680b6f8 /* src/common/GuBarycentricCoordinates.h */, - FFFDc680b7607fb7c680b760 /* src/common/GuBoxConversion.h */, - FFFDc680b7c87fb7c680b7c8 /* src/common/GuEdgeCache.h */, - FFFDc680b8307fb7c680b830 /* src/common/GuEdgeListData.h */, - FFFDc680b8987fb7c680b898 /* src/common/GuSeparatingAxes.h */, - FFFDc680b9007fb7c680b900 /* src/convex/GuBigConvexData.h */, - FFFDc680b9687fb7c680b968 /* src/convex/GuBigConvexData2.h */, - FFFDc680b9d07fb7c680b9d0 /* src/convex/GuConvexEdgeFlags.h */, - FFFDc680ba387fb7c680ba38 /* src/convex/GuConvexHelper.h */, - FFFDc680baa07fb7c680baa0 /* src/convex/GuConvexMesh.h */, - FFFDc680bb087fb7c680bb08 /* src/convex/GuConvexMeshData.h */, - FFFDc680bb707fb7c680bb70 /* src/convex/GuConvexSupportTable.h */, - FFFDc680bbd87fb7c680bbd8 /* src/convex/GuConvexUtilsInternal.h */, - FFFDc680bc407fb7c680bc40 /* src/convex/GuCubeIndex.h */, - FFFDc680bca87fb7c680bca8 /* src/convex/GuHillClimbing.h */, - FFFDc680bd107fb7c680bd10 /* src/convex/GuShapeConvex.h */, - FFFDc680bd787fb7c680bd78 /* src/distance/GuDistancePointBox.h */, - FFFDc680bde07fb7c680bde0 /* src/distance/GuDistancePointSegment.h */, - FFFDc680be487fb7c680be48 /* src/distance/GuDistancePointTriangle.h */, - FFFDc680beb07fb7c680beb0 /* src/distance/GuDistancePointTriangleSIMD.h */, - FFFDc680bf187fb7c680bf18 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, - FFFDc680bf807fb7c680bf80 /* src/distance/GuDistanceSegmentTriangle.h */, - FFFDc680bfe87fb7c680bfe8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, - FFFDc680c0507fb7c680c050 /* src/sweep/GuSweepBoxBox.h */, - FFFDc680c0b87fb7c680c0b8 /* src/sweep/GuSweepBoxSphere.h */, - FFFDc680c1207fb7c680c120 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, - FFFDc680c1887fb7c680c188 /* src/sweep/GuSweepBoxTriangle_SAT.h */, - FFFDc680c1f07fb7c680c1f0 /* src/sweep/GuSweepCapsuleBox.h */, - FFFDc680c2587fb7c680c258 /* src/sweep/GuSweepCapsuleCapsule.h */, - FFFDc680c2c07fb7c680c2c0 /* src/sweep/GuSweepCapsuleTriangle.h */, - FFFDc680c3287fb7c680c328 /* src/sweep/GuSweepSphereCapsule.h */, - FFFDc680c3907fb7c680c390 /* src/sweep/GuSweepSphereSphere.h */, - FFFDc680c3f87fb7c680c3f8 /* src/sweep/GuSweepSphereTriangle.h */, - FFFDc680c4607fb7c680c460 /* src/sweep/GuSweepTriangleUtils.h */, - FFFDc680c4c87fb7c680c4c8 /* src/gjk/GuEPA.h */, - FFFDc680c5307fb7c680c530 /* src/gjk/GuEPAFacet.h */, - FFFDc680c5987fb7c680c598 /* src/gjk/GuGJK.h */, - FFFDc680c6007fb7c680c600 /* src/gjk/GuGJKPenetration.h */, - FFFDc680c6687fb7c680c668 /* src/gjk/GuGJKRaycast.h */, - FFFDc680c6d07fb7c680c6d0 /* src/gjk/GuGJKSimplex.h */, - FFFDc680c7387fb7c680c738 /* src/gjk/GuGJKTest.h */, - FFFDc680c7a07fb7c680c7a0 /* src/gjk/GuGJKType.h */, - FFFDc680c8087fb7c680c808 /* src/gjk/GuGJKUtil.h */, - FFFDc680c8707fb7c680c870 /* src/gjk/GuVecBox.h */, - FFFDc680c8d87fb7c680c8d8 /* src/gjk/GuVecCapsule.h */, - FFFDc680c9407fb7c680c940 /* src/gjk/GuVecConvex.h */, - FFFDc680c9a87fb7c680c9a8 /* src/gjk/GuVecConvexHull.h */, - FFFDc680ca107fb7c680ca10 /* src/gjk/GuVecConvexHullNoScale.h */, - FFFDc680ca787fb7c680ca78 /* src/gjk/GuVecPlane.h */, - FFFDc680cae07fb7c680cae0 /* src/gjk/GuVecShrunkBox.h */, - FFFDc680cb487fb7c680cb48 /* src/gjk/GuVecShrunkConvexHull.h */, - FFFDc680cbb07fb7c680cbb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, - FFFDc680cc187fb7c680cc18 /* src/gjk/GuVecSphere.h */, - FFFDc680cc807fb7c680cc80 /* src/gjk/GuVecTriangle.h */, - FFFDc680cce87fb7c680cce8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, - FFFDc680cd507fb7c680cd50 /* src/intersection/GuIntersectionEdgeEdge.h */, - FFFDc680cdb87fb7c680cdb8 /* src/intersection/GuIntersectionRay.h */, - FFFDc680ce207fb7c680ce20 /* src/intersection/GuIntersectionRayBox.h */, - FFFDc680ce887fb7c680ce88 /* src/intersection/GuIntersectionRayBoxSIMD.h */, - FFFDc680cef07fb7c680cef0 /* src/intersection/GuIntersectionRayCapsule.h */, - FFFDc680cf587fb7c680cf58 /* src/intersection/GuIntersectionRayPlane.h */, - FFFDc680cfc07fb7c680cfc0 /* src/intersection/GuIntersectionRaySphere.h */, - FFFDc680d0287fb7c680d028 /* src/intersection/GuIntersectionRayTriangle.h */, - FFFDc680d0907fb7c680d090 /* src/intersection/GuIntersectionSphereBox.h */, - FFFDc680d0f87fb7c680d0f8 /* src/mesh/GuBV32.h */, - FFFDc680d1607fb7c680d160 /* src/mesh/GuBV32Build.h */, - FFFDc680d1c87fb7c680d1c8 /* src/mesh/GuBV4.h */, - FFFDc680d2307fb7c680d230 /* src/mesh/GuBV4Build.h */, - FFFDc680d2987fb7c680d298 /* src/mesh/GuBV4Settings.h */, - FFFDc680d3007fb7c680d300 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, - FFFDc680d3687fb7c680d368 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, - FFFDc680d3d07fb7c680d3d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, - FFFDc680d4387fb7c680d438 /* src/mesh/GuBV4_BoxSweep_Internal.h */, - FFFDc680d4a07fb7c680d4a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, - FFFDc680d5087fb7c680d508 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, - FFFDc680d5707fb7c680d570 /* src/mesh/GuBV4_Common.h */, - FFFDc680d5d87fb7c680d5d8 /* src/mesh/GuBV4_Internal.h */, - FFFDc680d6407fb7c680d640 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, - FFFDc680d6a87fb7c680d6a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, - FFFDc680d7107fb7c680d710 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, - FFFDc680d7787fb7c680d778 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, - FFFDc680d7e07fb7c680d7e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, - FFFDc680d8487fb7c680d848 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, - FFFDc680d8b07fb7c680d8b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, - FFFDc680d9187fb7c680d918 /* src/mesh/GuBV4_Slabs.h */, - FFFDc680d9807fb7c680d980 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, - FFFDc680d9e87fb7c680d9e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, - FFFDc680da507fb7c680da50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, - FFFDc680dab87fb7c680dab8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, - FFFDc680db207fb7c680db20 /* src/mesh/GuBVConstants.h */, - FFFDc680db887fb7c680db88 /* src/mesh/GuMeshData.h */, - FFFDc680dbf07fb7c680dbf0 /* src/mesh/GuMidphaseInterface.h */, - FFFDc680dc587fb7c680dc58 /* src/mesh/GuRTree.h */, - FFFDc680dcc07fb7c680dcc0 /* src/mesh/GuSweepConvexTri.h */, - FFFDc680dd287fb7c680dd28 /* src/mesh/GuSweepMesh.h */, - FFFDc680dd907fb7c680dd90 /* src/mesh/GuTriangle32.h */, - FFFDc680ddf87fb7c680ddf8 /* src/mesh/GuTriangleCache.h */, - FFFDc680de607fb7c680de60 /* src/mesh/GuTriangleMesh.h */, - FFFDc680dec87fb7c680dec8 /* src/mesh/GuTriangleMeshBV4.h */, - FFFDc680df307fb7c680df30 /* src/mesh/GuTriangleMeshRTree.h */, - FFFDc680df987fb7c680df98 /* src/mesh/GuTriangleVertexPointers.h */, - FFFDc680e0007fb7c680e000 /* src/hf/GuEntityReport.h */, - FFFDc680e0687fb7c680e068 /* src/hf/GuHeightField.h */, - FFFDc680e0d07fb7c680e0d0 /* src/hf/GuHeightFieldData.h */, - FFFDc680e1387fb7c680e138 /* src/hf/GuHeightFieldUtil.h */, - FFFDc680e1a07fb7c680e1a0 /* src/pcm/GuPCMContactConvexCommon.h */, - FFFDc680e2087fb7c680e208 /* src/pcm/GuPCMContactGen.h */, - FFFDc680e2707fb7c680e270 /* src/pcm/GuPCMContactGenUtil.h */, - FFFDc680e2d87fb7c680e2d8 /* src/pcm/GuPCMContactMeshCallback.h */, - FFFDc680e3407fb7c680e340 /* src/pcm/GuPCMShapeConvex.h */, - FFFDc680e3a87fb7c680e3a8 /* src/pcm/GuPCMTriangleContactGen.h */, - FFFDc680e4107fb7c680e410 /* src/pcm/GuPersistentContactManifold.h */, - FFFDc680e4787fb7c680e478 /* src/ccd/GuCCDSweepConvexMesh.h */, - FFFDc680e4e07fb7c680e4e0 /* src/GuBounds.cpp */, - FFFDc680e5487fb7c680e548 /* src/GuBox.cpp */, - FFFDc680e5b07fb7c680e5b0 /* src/GuCCTSweepTests.cpp */, - FFFDc680e6187fb7c680e618 /* src/GuCapsule.cpp */, - FFFDc680e6807fb7c680e680 /* src/GuGeometryQuery.cpp */, - FFFDc680e6e87fb7c680e6e8 /* src/GuGeometryUnion.cpp */, - FFFDc680e7507fb7c680e750 /* src/GuInternal.cpp */, - FFFDc680e7b87fb7c680e7b8 /* src/GuMTD.cpp */, - FFFDc680e8207fb7c680e820 /* src/GuMeshFactory.cpp */, - FFFDc680e8887fb7c680e888 /* src/GuMetaData.cpp */, - FFFDc680e8f07fb7c680e8f0 /* src/GuOverlapTests.cpp */, - FFFDc680e9587fb7c680e958 /* src/GuRaycastTests.cpp */, - FFFDc680e9c07fb7c680e9c0 /* src/GuSerialize.cpp */, - FFFDc680ea287fb7c680ea28 /* src/GuSweepMTD.cpp */, - FFFDc680ea907fb7c680ea90 /* src/GuSweepSharedTests.cpp */, - FFFDc680eaf87fb7c680eaf8 /* src/GuSweepTests.cpp */, - FFFDc680eb607fb7c680eb60 /* src/contact/GuContactBoxBox.cpp */, - FFFDc680ebc87fb7c680ebc8 /* src/contact/GuContactCapsuleBox.cpp */, - FFFDc680ec307fb7c680ec30 /* src/contact/GuContactCapsuleCapsule.cpp */, - FFFDc680ec987fb7c680ec98 /* src/contact/GuContactCapsuleConvex.cpp */, - FFFDc680ed007fb7c680ed00 /* src/contact/GuContactCapsuleMesh.cpp */, - FFFDc680ed687fb7c680ed68 /* src/contact/GuContactConvexConvex.cpp */, - FFFDc680edd07fb7c680edd0 /* src/contact/GuContactConvexMesh.cpp */, - FFFDc680ee387fb7c680ee38 /* src/contact/GuContactPlaneBox.cpp */, - FFFDc680eea07fb7c680eea0 /* src/contact/GuContactPlaneCapsule.cpp */, - FFFDc680ef087fb7c680ef08 /* src/contact/GuContactPlaneConvex.cpp */, - FFFDc680ef707fb7c680ef70 /* src/contact/GuContactPolygonPolygon.cpp */, - FFFDc680efd87fb7c680efd8 /* src/contact/GuContactSphereBox.cpp */, - FFFDc680f0407fb7c680f040 /* src/contact/GuContactSphereCapsule.cpp */, - FFFDc680f0a87fb7c680f0a8 /* src/contact/GuContactSphereMesh.cpp */, - FFFDc680f1107fb7c680f110 /* src/contact/GuContactSpherePlane.cpp */, - FFFDc680f1787fb7c680f178 /* src/contact/GuContactSphereSphere.cpp */, - FFFDc680f1e07fb7c680f1e0 /* src/contact/GuFeatureCode.cpp */, - FFFDc680f2487fb7c680f248 /* src/contact/GuLegacyContactBoxHeightField.cpp */, - FFFDc680f2b07fb7c680f2b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, - FFFDc680f3187fb7c680f318 /* src/contact/GuLegacyContactConvexHeightField.cpp */, - FFFDc680f3807fb7c680f380 /* src/contact/GuLegacyContactSphereHeightField.cpp */, - FFFDc680f3e87fb7c680f3e8 /* src/common/GuBarycentricCoordinates.cpp */, - FFFDc680f4507fb7c680f450 /* src/common/GuSeparatingAxes.cpp */, - FFFDc680f4b87fb7c680f4b8 /* src/convex/GuBigConvexData.cpp */, - FFFDc680f5207fb7c680f520 /* src/convex/GuConvexHelper.cpp */, - FFFDc680f5887fb7c680f588 /* src/convex/GuConvexMesh.cpp */, - FFFDc680f5f07fb7c680f5f0 /* src/convex/GuConvexSupportTable.cpp */, - FFFDc680f6587fb7c680f658 /* src/convex/GuConvexUtilsInternal.cpp */, - FFFDc680f6c07fb7c680f6c0 /* src/convex/GuHillClimbing.cpp */, - FFFDc680f7287fb7c680f728 /* src/convex/GuShapeConvex.cpp */, - FFFDc680f7907fb7c680f790 /* src/distance/GuDistancePointBox.cpp */, - FFFDc680f7f87fb7c680f7f8 /* src/distance/GuDistancePointTriangle.cpp */, - FFFDc680f8607fb7c680f860 /* src/distance/GuDistanceSegmentBox.cpp */, - FFFDc680f8c87fb7c680f8c8 /* src/distance/GuDistanceSegmentSegment.cpp */, - FFFDc680f9307fb7c680f930 /* src/distance/GuDistanceSegmentTriangle.cpp */, - FFFDc680f9987fb7c680f998 /* src/sweep/GuSweepBoxBox.cpp */, - FFFDc680fa007fb7c680fa00 /* src/sweep/GuSweepBoxSphere.cpp */, - FFFDc680fa687fb7c680fa68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, - FFFDc680fad07fb7c680fad0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, - FFFDc680fb387fb7c680fb38 /* src/sweep/GuSweepCapsuleBox.cpp */, - FFFDc680fba07fb7c680fba0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, - FFFDc680fc087fb7c680fc08 /* src/sweep/GuSweepCapsuleTriangle.cpp */, - FFFDc680fc707fb7c680fc70 /* src/sweep/GuSweepSphereCapsule.cpp */, - FFFDc680fcd87fb7c680fcd8 /* src/sweep/GuSweepSphereSphere.cpp */, - FFFDc680fd407fb7c680fd40 /* src/sweep/GuSweepSphereTriangle.cpp */, - FFFDc680fda87fb7c680fda8 /* src/sweep/GuSweepTriangleUtils.cpp */, - FFFDc680fe107fb7c680fe10 /* src/gjk/GuEPA.cpp */, - FFFDc680fe787fb7c680fe78 /* src/gjk/GuGJKSimplex.cpp */, - FFFDc680fee07fb7c680fee0 /* src/gjk/GuGJKTest.cpp */, - FFFDc680ff487fb7c680ff48 /* src/intersection/GuIntersectionBoxBox.cpp */, - FFFDc680ffb07fb7c680ffb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, - FFFDc68100187fb7c6810018 /* src/intersection/GuIntersectionEdgeEdge.cpp */, - FFFDc68100807fb7c6810080 /* src/intersection/GuIntersectionRayBox.cpp */, - FFFDc68100e87fb7c68100e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, - FFFDc68101507fb7c6810150 /* src/intersection/GuIntersectionRaySphere.cpp */, - FFFDc68101b87fb7c68101b8 /* src/intersection/GuIntersectionSphereBox.cpp */, - FFFDc68102207fb7c6810220 /* src/intersection/GuIntersectionTriangleBox.cpp */, - FFFDc68102887fb7c6810288 /* src/mesh/GuBV32.cpp */, - FFFDc68102f07fb7c68102f0 /* src/mesh/GuBV32Build.cpp */, - FFFDc68103587fb7c6810358 /* src/mesh/GuBV4.cpp */, - FFFDc68103c07fb7c68103c0 /* src/mesh/GuBV4Build.cpp */, - FFFDc68104287fb7c6810428 /* src/mesh/GuBV4_AABBSweep.cpp */, - FFFDc68104907fb7c6810490 /* src/mesh/GuBV4_BoxOverlap.cpp */, - FFFDc68104f87fb7c68104f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, - FFFDc68105607fb7c6810560 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, - FFFDc68105c87fb7c68105c8 /* src/mesh/GuBV4_OBBSweep.cpp */, - FFFDc68106307fb7c6810630 /* src/mesh/GuBV4_Raycast.cpp */, - FFFDc68106987fb7c6810698 /* src/mesh/GuBV4_SphereOverlap.cpp */, - FFFDc68107007fb7c6810700 /* src/mesh/GuBV4_SphereSweep.cpp */, - FFFDc68107687fb7c6810768 /* src/mesh/GuMeshQuery.cpp */, - FFFDc68107d07fb7c68107d0 /* src/mesh/GuMidphaseBV4.cpp */, - FFFDc68108387fb7c6810838 /* src/mesh/GuMidphaseRTree.cpp */, - FFFDc68108a07fb7c68108a0 /* src/mesh/GuOverlapTestsMesh.cpp */, - FFFDc68109087fb7c6810908 /* src/mesh/GuRTree.cpp */, - FFFDc68109707fb7c6810970 /* src/mesh/GuRTreeQueries.cpp */, - FFFDc68109d87fb7c68109d8 /* src/mesh/GuSweepsMesh.cpp */, - FFFDc6810a407fb7c6810a40 /* src/mesh/GuTriangleMesh.cpp */, - FFFDc6810aa87fb7c6810aa8 /* src/mesh/GuTriangleMeshBV4.cpp */, - FFFDc6810b107fb7c6810b10 /* src/mesh/GuTriangleMeshRTree.cpp */, - FFFDc6810b787fb7c6810b78 /* src/hf/GuHeightField.cpp */, - FFFDc6810be07fb7c6810be0 /* src/hf/GuHeightFieldUtil.cpp */, - FFFDc6810c487fb7c6810c48 /* src/hf/GuOverlapTestsHF.cpp */, - FFFDc6810cb07fb7c6810cb0 /* src/hf/GuSweepsHF.cpp */, - FFFDc6810d187fb7c6810d18 /* src/pcm/GuPCMContactBoxBox.cpp */, - FFFDc6810d807fb7c6810d80 /* src/pcm/GuPCMContactBoxConvex.cpp */, - FFFDc6810de87fb7c6810de8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, - FFFDc6810e507fb7c6810e50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, - FFFDc6810eb87fb7c6810eb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, - FFFDc6810f207fb7c6810f20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, - FFFDc6810f887fb7c6810f88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, - FFFDc6810ff07fb7c6810ff0 /* src/pcm/GuPCMContactConvexCommon.cpp */, - FFFDc68110587fb7c6811058 /* src/pcm/GuPCMContactConvexConvex.cpp */, - FFFDc68110c07fb7c68110c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, - FFFDc68111287fb7c6811128 /* src/pcm/GuPCMContactConvexMesh.cpp */, - FFFDc68111907fb7c6811190 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, - FFFDc68111f87fb7c68111f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, - FFFDc68112607fb7c6811260 /* src/pcm/GuPCMContactPlaneBox.cpp */, - FFFDc68112c87fb7c68112c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, - FFFDc68113307fb7c6811330 /* src/pcm/GuPCMContactPlaneConvex.cpp */, - FFFDc68113987fb7c6811398 /* src/pcm/GuPCMContactSphereBox.cpp */, - FFFDc68114007fb7c6811400 /* src/pcm/GuPCMContactSphereCapsule.cpp */, - FFFDc68114687fb7c6811468 /* src/pcm/GuPCMContactSphereConvex.cpp */, - FFFDc68114d07fb7c68114d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, - FFFDc68115387fb7c6811538 /* src/pcm/GuPCMContactSphereMesh.cpp */, - FFFDc68115a07fb7c68115a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, - FFFDc68116087fb7c6811608 /* src/pcm/GuPCMContactSphereSphere.cpp */, - FFFDc68116707fb7c6811670 /* src/pcm/GuPCMShapeConvex.cpp */, - FFFDc68116d87fb7c68116d8 /* src/pcm/GuPCMTriangleContactGen.cpp */, - FFFDc68117407fb7c6811740 /* src/pcm/GuPersistentContactManifold.cpp */, - FFFDc68117a87fb7c68117a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, - FFFDc68118107fb7c6811810 /* src/ccd/GuCCDSweepPrimitives.cpp */, + FFFDfb0010007fbcfb001000 /* headers/GuAxes.h */, + FFFDfb0010687fbcfb001068 /* headers/GuBox.h */, + FFFDfb0010d07fbcfb0010d0 /* headers/GuDistanceSegmentBox.h */, + FFFDfb0011387fbcfb001138 /* headers/GuDistanceSegmentSegment.h */, + FFFDfb0011a07fbcfb0011a0 /* headers/GuIntersectionBoxBox.h */, + FFFDfb0012087fbcfb001208 /* headers/GuIntersectionTriangleBox.h */, + FFFDfb0012707fbcfb001270 /* headers/GuRaycastTests.h */, + FFFDfb0012d87fbcfb0012d8 /* headers/GuSIMDHelpers.h */, + FFFDfb0013407fbcfb001340 /* headers/GuSegment.h */, + FFFDfb0013a87fbcfb0013a8 /* ../../Include/GeomUtils */, + FFFDfb0014107fbcfb001410 /* src/GuBounds.h */, + FFFDfb0014787fbcfb001478 /* src/GuCapsule.h */, + FFFDfb0014e07fbcfb0014e0 /* src/GuCenterExtents.h */, + FFFDfb0015487fbcfb001548 /* src/GuGeometryUnion.h */, + FFFDfb0015b07fbcfb0015b0 /* src/GuInternal.h */, + FFFDfb0016187fbcfb001618 /* src/GuMTD.h */, + FFFDfb0016807fbcfb001680 /* src/GuMeshFactory.h */, + FFFDfb0016e87fbcfb0016e8 /* src/GuOverlapTests.h */, + FFFDfb0017507fbcfb001750 /* src/GuSerialize.h */, + FFFDfb0017b87fbcfb0017b8 /* src/GuSphere.h */, + FFFDfb0018207fbcfb001820 /* src/GuSweepMTD.h */, + FFFDfb0018887fbcfb001888 /* src/GuSweepSharedTests.h */, + FFFDfb0018f07fbcfb0018f0 /* src/GuSweepTests.h */, + FFFDfb0019587fbcfb001958 /* src/contact/GuContactMethodImpl.h */, + FFFDfb0019c07fbcfb0019c0 /* src/contact/GuContactPolygonPolygon.h */, + FFFDfb001a287fbcfb001a28 /* src/contact/GuFeatureCode.h */, + FFFDfb001a907fbcfb001a90 /* src/contact/GuLegacyTraceLineCallback.h */, + FFFDfb001af87fbcfb001af8 /* src/common/GuBarycentricCoordinates.h */, + FFFDfb001b607fbcfb001b60 /* src/common/GuBoxConversion.h */, + FFFDfb001bc87fbcfb001bc8 /* src/common/GuEdgeCache.h */, + FFFDfb001c307fbcfb001c30 /* src/common/GuEdgeListData.h */, + FFFDfb001c987fbcfb001c98 /* src/common/GuSeparatingAxes.h */, + FFFDfb001d007fbcfb001d00 /* src/convex/GuBigConvexData.h */, + FFFDfb001d687fbcfb001d68 /* src/convex/GuBigConvexData2.h */, + FFFDfb001dd07fbcfb001dd0 /* src/convex/GuConvexEdgeFlags.h */, + FFFDfb001e387fbcfb001e38 /* src/convex/GuConvexHelper.h */, + FFFDfb001ea07fbcfb001ea0 /* src/convex/GuConvexMesh.h */, + FFFDfb001f087fbcfb001f08 /* src/convex/GuConvexMeshData.h */, + FFFDfb001f707fbcfb001f70 /* src/convex/GuConvexSupportTable.h */, + FFFDfb001fd87fbcfb001fd8 /* src/convex/GuConvexUtilsInternal.h */, + FFFDfb0020407fbcfb002040 /* src/convex/GuCubeIndex.h */, + FFFDfb0020a87fbcfb0020a8 /* src/convex/GuHillClimbing.h */, + FFFDfb0021107fbcfb002110 /* src/convex/GuShapeConvex.h */, + FFFDfb0021787fbcfb002178 /* src/distance/GuDistancePointBox.h */, + FFFDfb0021e07fbcfb0021e0 /* src/distance/GuDistancePointSegment.h */, + FFFDfb0022487fbcfb002248 /* src/distance/GuDistancePointTriangle.h */, + FFFDfb0022b07fbcfb0022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, + FFFDfb0023187fbcfb002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, + FFFDfb0023807fbcfb002380 /* src/distance/GuDistanceSegmentTriangle.h */, + FFFDfb0023e87fbcfb0023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, + FFFDfb0024507fbcfb002450 /* src/sweep/GuSweepBoxBox.h */, + FFFDfb0024b87fbcfb0024b8 /* src/sweep/GuSweepBoxSphere.h */, + FFFDfb0025207fbcfb002520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, + FFFDfb0025887fbcfb002588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, + FFFDfb0025f07fbcfb0025f0 /* src/sweep/GuSweepCapsuleBox.h */, + FFFDfb0026587fbcfb002658 /* src/sweep/GuSweepCapsuleCapsule.h */, + FFFDfb0026c07fbcfb0026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, + FFFDfb0027287fbcfb002728 /* src/sweep/GuSweepSphereCapsule.h */, + FFFDfb0027907fbcfb002790 /* src/sweep/GuSweepSphereSphere.h */, + FFFDfb0027f87fbcfb0027f8 /* src/sweep/GuSweepSphereTriangle.h */, + FFFDfb0028607fbcfb002860 /* src/sweep/GuSweepTriangleUtils.h */, + FFFDfb0028c87fbcfb0028c8 /* src/gjk/GuEPA.h */, + FFFDfb0029307fbcfb002930 /* src/gjk/GuEPAFacet.h */, + FFFDfb0029987fbcfb002998 /* src/gjk/GuGJK.h */, + FFFDfb002a007fbcfb002a00 /* src/gjk/GuGJKPenetration.h */, + FFFDfb002a687fbcfb002a68 /* src/gjk/GuGJKRaycast.h */, + FFFDfb002ad07fbcfb002ad0 /* src/gjk/GuGJKSimplex.h */, + FFFDfb002b387fbcfb002b38 /* src/gjk/GuGJKTest.h */, + FFFDfb002ba07fbcfb002ba0 /* src/gjk/GuGJKType.h */, + FFFDfb002c087fbcfb002c08 /* src/gjk/GuGJKUtil.h */, + FFFDfb002c707fbcfb002c70 /* src/gjk/GuVecBox.h */, + FFFDfb002cd87fbcfb002cd8 /* src/gjk/GuVecCapsule.h */, + FFFDfb002d407fbcfb002d40 /* src/gjk/GuVecConvex.h */, + FFFDfb002da87fbcfb002da8 /* src/gjk/GuVecConvexHull.h */, + FFFDfb002e107fbcfb002e10 /* src/gjk/GuVecConvexHullNoScale.h */, + FFFDfb002e787fbcfb002e78 /* src/gjk/GuVecPlane.h */, + FFFDfb002ee07fbcfb002ee0 /* src/gjk/GuVecShrunkBox.h */, + FFFDfb002f487fbcfb002f48 /* src/gjk/GuVecShrunkConvexHull.h */, + FFFDfb002fb07fbcfb002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, + FFFDfb0030187fbcfb003018 /* src/gjk/GuVecSphere.h */, + FFFDfb0030807fbcfb003080 /* src/gjk/GuVecTriangle.h */, + FFFDfb0030e87fbcfb0030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, + FFFDfb0031507fbcfb003150 /* src/intersection/GuIntersectionEdgeEdge.h */, + FFFDfb0031b87fbcfb0031b8 /* src/intersection/GuIntersectionRay.h */, + FFFDfb0032207fbcfb003220 /* src/intersection/GuIntersectionRayBox.h */, + FFFDfb0032887fbcfb003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, + FFFDfb0032f07fbcfb0032f0 /* src/intersection/GuIntersectionRayCapsule.h */, + FFFDfb0033587fbcfb003358 /* src/intersection/GuIntersectionRayPlane.h */, + FFFDfb0033c07fbcfb0033c0 /* src/intersection/GuIntersectionRaySphere.h */, + FFFDfb0034287fbcfb003428 /* src/intersection/GuIntersectionRayTriangle.h */, + FFFDfb0034907fbcfb003490 /* src/intersection/GuIntersectionSphereBox.h */, + FFFDfb0034f87fbcfb0034f8 /* src/mesh/GuBV32.h */, + FFFDfb0035607fbcfb003560 /* src/mesh/GuBV32Build.h */, + FFFDfb0035c87fbcfb0035c8 /* src/mesh/GuBV4.h */, + FFFDfb0036307fbcfb003630 /* src/mesh/GuBV4Build.h */, + FFFDfb0036987fbcfb003698 /* src/mesh/GuBV4Settings.h */, + FFFDfb0037007fbcfb003700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, + FFFDfb0037687fbcfb003768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, + FFFDfb0037d07fbcfb0037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, + FFFDfb0038387fbcfb003838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, + FFFDfb0038a07fbcfb0038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, + FFFDfb0039087fbcfb003908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, + FFFDfb0039707fbcfb003970 /* src/mesh/GuBV4_Common.h */, + FFFDfb0039d87fbcfb0039d8 /* src/mesh/GuBV4_Internal.h */, + FFFDfb003a407fbcfb003a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, + FFFDfb003aa87fbcfb003aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, + FFFDfb003b107fbcfb003b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, + FFFDfb003b787fbcfb003b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, + FFFDfb003be07fbcfb003be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, + FFFDfb003c487fbcfb003c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, + FFFDfb003cb07fbcfb003cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, + FFFDfb003d187fbcfb003d18 /* src/mesh/GuBV4_Slabs.h */, + FFFDfb003d807fbcfb003d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, + FFFDfb003de87fbcfb003de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, + FFFDfb003e507fbcfb003e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, + FFFDfb003eb87fbcfb003eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, + FFFDfb003f207fbcfb003f20 /* src/mesh/GuBVConstants.h */, + FFFDfb003f887fbcfb003f88 /* src/mesh/GuMeshData.h */, + FFFDfb003ff07fbcfb003ff0 /* src/mesh/GuMidphaseInterface.h */, + FFFDfb0040587fbcfb004058 /* src/mesh/GuRTree.h */, + FFFDfb0040c07fbcfb0040c0 /* src/mesh/GuSweepConvexTri.h */, + FFFDfb0041287fbcfb004128 /* src/mesh/GuSweepMesh.h */, + FFFDfb0041907fbcfb004190 /* src/mesh/GuTriangle32.h */, + FFFDfb0041f87fbcfb0041f8 /* src/mesh/GuTriangleCache.h */, + FFFDfb0042607fbcfb004260 /* src/mesh/GuTriangleMesh.h */, + FFFDfb0042c87fbcfb0042c8 /* src/mesh/GuTriangleMeshBV4.h */, + FFFDfb0043307fbcfb004330 /* src/mesh/GuTriangleMeshRTree.h */, + FFFDfb0043987fbcfb004398 /* src/mesh/GuTriangleVertexPointers.h */, + FFFDfb0044007fbcfb004400 /* src/hf/GuEntityReport.h */, + FFFDfb0044687fbcfb004468 /* src/hf/GuHeightField.h */, + FFFDfb0044d07fbcfb0044d0 /* src/hf/GuHeightFieldData.h */, + FFFDfb0045387fbcfb004538 /* src/hf/GuHeightFieldUtil.h */, + FFFDfb0045a07fbcfb0045a0 /* src/pcm/GuPCMContactConvexCommon.h */, + FFFDfb0046087fbcfb004608 /* src/pcm/GuPCMContactGen.h */, + FFFDfb0046707fbcfb004670 /* src/pcm/GuPCMContactGenUtil.h */, + FFFDfb0046d87fbcfb0046d8 /* src/pcm/GuPCMContactMeshCallback.h */, + FFFDfb0047407fbcfb004740 /* src/pcm/GuPCMShapeConvex.h */, + FFFDfb0047a87fbcfb0047a8 /* src/pcm/GuPCMTriangleContactGen.h */, + FFFDfb0048107fbcfb004810 /* src/pcm/GuPersistentContactManifold.h */, + FFFDfb0048787fbcfb004878 /* src/ccd/GuCCDSweepConvexMesh.h */, + FFFDfb0048e07fbcfb0048e0 /* src/GuBounds.cpp */, + FFFDfb0049487fbcfb004948 /* src/GuBox.cpp */, + FFFDfb0049b07fbcfb0049b0 /* src/GuCCTSweepTests.cpp */, + FFFDfb004a187fbcfb004a18 /* src/GuCapsule.cpp */, + FFFDfb004a807fbcfb004a80 /* src/GuGeometryQuery.cpp */, + FFFDfb004ae87fbcfb004ae8 /* src/GuGeometryUnion.cpp */, + FFFDfb004b507fbcfb004b50 /* src/GuInternal.cpp */, + FFFDfb004bb87fbcfb004bb8 /* src/GuMTD.cpp */, + FFFDfb004c207fbcfb004c20 /* src/GuMeshFactory.cpp */, + FFFDfb004c887fbcfb004c88 /* src/GuMetaData.cpp */, + FFFDfb004cf07fbcfb004cf0 /* src/GuOverlapTests.cpp */, + FFFDfb004d587fbcfb004d58 /* src/GuRaycastTests.cpp */, + FFFDfb004dc07fbcfb004dc0 /* src/GuSerialize.cpp */, + FFFDfb004e287fbcfb004e28 /* src/GuSweepMTD.cpp */, + FFFDfb004e907fbcfb004e90 /* src/GuSweepSharedTests.cpp */, + FFFDfb004ef87fbcfb004ef8 /* src/GuSweepTests.cpp */, + FFFDfb004f607fbcfb004f60 /* src/contact/GuContactBoxBox.cpp */, + FFFDfb004fc87fbcfb004fc8 /* src/contact/GuContactCapsuleBox.cpp */, + FFFDfb0050307fbcfb005030 /* src/contact/GuContactCapsuleCapsule.cpp */, + FFFDfb0050987fbcfb005098 /* src/contact/GuContactCapsuleConvex.cpp */, + FFFDfb0051007fbcfb005100 /* src/contact/GuContactCapsuleMesh.cpp */, + FFFDfb0051687fbcfb005168 /* src/contact/GuContactConvexConvex.cpp */, + FFFDfb0051d07fbcfb0051d0 /* src/contact/GuContactConvexMesh.cpp */, + FFFDfb0052387fbcfb005238 /* src/contact/GuContactPlaneBox.cpp */, + FFFDfb0052a07fbcfb0052a0 /* src/contact/GuContactPlaneCapsule.cpp */, + FFFDfb0053087fbcfb005308 /* src/contact/GuContactPlaneConvex.cpp */, + FFFDfb0053707fbcfb005370 /* src/contact/GuContactPolygonPolygon.cpp */, + FFFDfb0053d87fbcfb0053d8 /* src/contact/GuContactSphereBox.cpp */, + FFFDfb0054407fbcfb005440 /* src/contact/GuContactSphereCapsule.cpp */, + FFFDfb0054a87fbcfb0054a8 /* src/contact/GuContactSphereMesh.cpp */, + FFFDfb0055107fbcfb005510 /* src/contact/GuContactSpherePlane.cpp */, + FFFDfb0055787fbcfb005578 /* src/contact/GuContactSphereSphere.cpp */, + FFFDfb0055e07fbcfb0055e0 /* src/contact/GuFeatureCode.cpp */, + FFFDfb0056487fbcfb005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, + FFFDfb0056b07fbcfb0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, + FFFDfb0057187fbcfb005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, + FFFDfb0057807fbcfb005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, + FFFDfb0057e87fbcfb0057e8 /* src/common/GuBarycentricCoordinates.cpp */, + FFFDfb0058507fbcfb005850 /* src/common/GuSeparatingAxes.cpp */, + FFFDfb0058b87fbcfb0058b8 /* src/convex/GuBigConvexData.cpp */, + FFFDfb0059207fbcfb005920 /* src/convex/GuConvexHelper.cpp */, + FFFDfb0059887fbcfb005988 /* src/convex/GuConvexMesh.cpp */, + FFFDfb0059f07fbcfb0059f0 /* src/convex/GuConvexSupportTable.cpp */, + FFFDfb005a587fbcfb005a58 /* src/convex/GuConvexUtilsInternal.cpp */, + FFFDfb005ac07fbcfb005ac0 /* src/convex/GuHillClimbing.cpp */, + FFFDfb005b287fbcfb005b28 /* src/convex/GuShapeConvex.cpp */, + FFFDfb005b907fbcfb005b90 /* src/distance/GuDistancePointBox.cpp */, + FFFDfb005bf87fbcfb005bf8 /* src/distance/GuDistancePointTriangle.cpp */, + FFFDfb005c607fbcfb005c60 /* src/distance/GuDistanceSegmentBox.cpp */, + FFFDfb005cc87fbcfb005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, + FFFDfb005d307fbcfb005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, + FFFDfb005d987fbcfb005d98 /* src/sweep/GuSweepBoxBox.cpp */, + FFFDfb005e007fbcfb005e00 /* src/sweep/GuSweepBoxSphere.cpp */, + FFFDfb005e687fbcfb005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, + FFFDfb005ed07fbcfb005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, + FFFDfb005f387fbcfb005f38 /* src/sweep/GuSweepCapsuleBox.cpp */, + FFFDfb005fa07fbcfb005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, + FFFDfb0060087fbcfb006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, + FFFDfb0060707fbcfb006070 /* src/sweep/GuSweepSphereCapsule.cpp */, + FFFDfb0060d87fbcfb0060d8 /* src/sweep/GuSweepSphereSphere.cpp */, + FFFDfb0061407fbcfb006140 /* src/sweep/GuSweepSphereTriangle.cpp */, + FFFDfb0061a87fbcfb0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, + FFFDfb0062107fbcfb006210 /* src/gjk/GuEPA.cpp */, + FFFDfb0062787fbcfb006278 /* src/gjk/GuGJKSimplex.cpp */, + FFFDfb0062e07fbcfb0062e0 /* src/gjk/GuGJKTest.cpp */, + FFFDfb0063487fbcfb006348 /* src/intersection/GuIntersectionBoxBox.cpp */, + FFFDfb0063b07fbcfb0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, + FFFDfb0064187fbcfb006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, + FFFDfb0064807fbcfb006480 /* src/intersection/GuIntersectionRayBox.cpp */, + FFFDfb0064e87fbcfb0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, + FFFDfb0065507fbcfb006550 /* src/intersection/GuIntersectionRaySphere.cpp */, + FFFDfb0065b87fbcfb0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, + FFFDfb0066207fbcfb006620 /* src/intersection/GuIntersectionTriangleBox.cpp */, + FFFDfb0066887fbcfb006688 /* src/mesh/GuBV32.cpp */, + FFFDfb0066f07fbcfb0066f0 /* src/mesh/GuBV32Build.cpp */, + FFFDfb0067587fbcfb006758 /* src/mesh/GuBV4.cpp */, + FFFDfb0067c07fbcfb0067c0 /* src/mesh/GuBV4Build.cpp */, + FFFDfb0068287fbcfb006828 /* src/mesh/GuBV4_AABBSweep.cpp */, + FFFDfb0068907fbcfb006890 /* src/mesh/GuBV4_BoxOverlap.cpp */, + FFFDfb0068f87fbcfb0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, + FFFDfb0069607fbcfb006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, + FFFDfb0069c87fbcfb0069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, + FFFDfb006a307fbcfb006a30 /* src/mesh/GuBV4_Raycast.cpp */, + FFFDfb006a987fbcfb006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, + FFFDfb006b007fbcfb006b00 /* src/mesh/GuBV4_SphereSweep.cpp */, + FFFDfb006b687fbcfb006b68 /* src/mesh/GuMeshQuery.cpp */, + FFFDfb006bd07fbcfb006bd0 /* src/mesh/GuMidphaseBV4.cpp */, + FFFDfb006c387fbcfb006c38 /* src/mesh/GuMidphaseRTree.cpp */, + FFFDfb006ca07fbcfb006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, + FFFDfb006d087fbcfb006d08 /* src/mesh/GuRTree.cpp */, + FFFDfb006d707fbcfb006d70 /* src/mesh/GuRTreeQueries.cpp */, + FFFDfb006dd87fbcfb006dd8 /* src/mesh/GuSweepsMesh.cpp */, + FFFDfb006e407fbcfb006e40 /* src/mesh/GuTriangleMesh.cpp */, + FFFDfb006ea87fbcfb006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, + FFFDfb006f107fbcfb006f10 /* src/mesh/GuTriangleMeshRTree.cpp */, + FFFDfb006f787fbcfb006f78 /* src/hf/GuHeightField.cpp */, + FFFDfb006fe07fbcfb006fe0 /* src/hf/GuHeightFieldUtil.cpp */, + FFFDfb0070487fbcfb007048 /* src/hf/GuOverlapTestsHF.cpp */, + FFFDfb0070b07fbcfb0070b0 /* src/hf/GuSweepsHF.cpp */, + FFFDfb0071187fbcfb007118 /* src/pcm/GuPCMContactBoxBox.cpp */, + FFFDfb0071807fbcfb007180 /* src/pcm/GuPCMContactBoxConvex.cpp */, + FFFDfb0071e87fbcfb0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, + FFFDfb0072507fbcfb007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, + FFFDfb0072b87fbcfb0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, + FFFDfb0073207fbcfb007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, + FFFDfb0073887fbcfb007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, + FFFDfb0073f07fbcfb0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, + FFFDfb0074587fbcfb007458 /* src/pcm/GuPCMContactConvexConvex.cpp */, + FFFDfb0074c07fbcfb0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, + FFFDfb0075287fbcfb007528 /* src/pcm/GuPCMContactConvexMesh.cpp */, + FFFDfb0075907fbcfb007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, + FFFDfb0075f87fbcfb0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, + FFFDfb0076607fbcfb007660 /* src/pcm/GuPCMContactPlaneBox.cpp */, + FFFDfb0076c87fbcfb0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, + FFFDfb0077307fbcfb007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, + FFFDfb0077987fbcfb007798 /* src/pcm/GuPCMContactSphereBox.cpp */, + FFFDfb0078007fbcfb007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, + FFFDfb0078687fbcfb007868 /* src/pcm/GuPCMContactSphereConvex.cpp */, + FFFDfb0078d07fbcfb0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, + FFFDfb0079387fbcfb007938 /* src/pcm/GuPCMContactSphereMesh.cpp */, + FFFDfb0079a07fbcfb0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, + FFFDfb007a087fbcfb007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, + FFFDfb007a707fbcfb007a70 /* src/pcm/GuPCMShapeConvex.cpp */, + FFFDfb007ad87fbcfb007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, + FFFDfb007b407fbcfb007b40 /* src/pcm/GuPersistentContactManifold.cpp */, + FFFDfb007ba87fbcfb007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, + FFFDfb007c107fbcfb007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, ); name = "geomutils"; sourceTree = SOURCE_ROOT; }; - FFFBc37144b07fb7c37144b0 /* PxFoundation */ = { + FFFBfa87f5207fbcfa87f520 /* PxFoundation */ = { isa = PBXGroup; children = ( - FFFBc4c552a07fb7c4c552a0 /* include */, - FFFBc4c552c87fb7c4c552c8 /* src */, + FFFBfa87fb007fbcfa87fb00 /* include */, + FFFBfa87fb287fbcfa87fb28 /* src */, ); name = "PxFoundation"; sourceTree = "<group>"; }; - FFFBc4c552a07fb7c4c552a0 /* include */ = { + FFFBfa87fb007fbcfa87fb00 /* include */ = { isa = PBXGroup; children = ( - FFFDc5039c007fb7c5039c00 /* Px.h */, - FFFDc5039c687fb7c5039c68 /* PxAllocatorCallback.h */, - FFFDc5039cd07fb7c5039cd0 /* PxAssert.h */, - FFFDc5039d387fb7c5039d38 /* PxBitAndData.h */, - FFFDc5039da07fb7c5039da0 /* PxBounds3.h */, - FFFDc5039e087fb7c5039e08 /* PxErrorCallback.h */, - FFFDc5039e707fb7c5039e70 /* PxErrors.h */, - FFFDc5039ed87fb7c5039ed8 /* PxFlags.h */, - FFFDc5039f407fb7c5039f40 /* PxFoundation.h */, - FFFDc5039fa87fb7c5039fa8 /* PxFoundationVersion.h */, - FFFDc503a0107fb7c503a010 /* PxIO.h */, - FFFDc503a0787fb7c503a078 /* PxIntrinsics.h */, - FFFDc503a0e07fb7c503a0e0 /* PxMat33.h */, - FFFDc503a1487fb7c503a148 /* PxMat44.h */, - FFFDc503a1b07fb7c503a1b0 /* PxMath.h */, - FFFDc503a2187fb7c503a218 /* PxMathUtils.h */, - FFFDc503a2807fb7c503a280 /* PxMemory.h */, - FFFDc503a2e87fb7c503a2e8 /* PxPlane.h */, - FFFDc503a3507fb7c503a350 /* PxPreprocessor.h */, - FFFDc503a3b87fb7c503a3b8 /* PxProfiler.h */, - FFFDc503a4207fb7c503a420 /* PxQuat.h */, - FFFDc503a4887fb7c503a488 /* PxSimpleTypes.h */, - FFFDc503a4f07fb7c503a4f0 /* PxStrideIterator.h */, - FFFDc503a5587fb7c503a558 /* PxTransform.h */, - FFFDc503a5c07fb7c503a5c0 /* PxUnionCast.h */, - FFFDc503a6287fb7c503a628 /* PxVec2.h */, - FFFDc503a6907fb7c503a690 /* PxVec3.h */, - FFFDc503a6f87fb7c503a6f8 /* PxVec4.h */, - FFFDc503a7607fb7c503a760 /* unix/PxUnixIntrinsics.h */, + FFFDfa18b6007fbcfa18b600 /* Px.h */, + FFFDfa18b6687fbcfa18b668 /* PxAllocatorCallback.h */, + FFFDfa18b6d07fbcfa18b6d0 /* PxAssert.h */, + FFFDfa18b7387fbcfa18b738 /* PxBitAndData.h */, + FFFDfa18b7a07fbcfa18b7a0 /* PxBounds3.h */, + FFFDfa18b8087fbcfa18b808 /* PxErrorCallback.h */, + FFFDfa18b8707fbcfa18b870 /* PxErrors.h */, + FFFDfa18b8d87fbcfa18b8d8 /* PxFlags.h */, + FFFDfa18b9407fbcfa18b940 /* PxFoundation.h */, + FFFDfa18b9a87fbcfa18b9a8 /* PxFoundationVersion.h */, + FFFDfa18ba107fbcfa18ba10 /* PxIO.h */, + FFFDfa18ba787fbcfa18ba78 /* PxIntrinsics.h */, + FFFDfa18bae07fbcfa18bae0 /* PxMat33.h */, + FFFDfa18bb487fbcfa18bb48 /* PxMat44.h */, + FFFDfa18bbb07fbcfa18bbb0 /* PxMath.h */, + FFFDfa18bc187fbcfa18bc18 /* PxMathUtils.h */, + FFFDfa18bc807fbcfa18bc80 /* PxMemory.h */, + FFFDfa18bce87fbcfa18bce8 /* PxPlane.h */, + FFFDfa18bd507fbcfa18bd50 /* PxPreprocessor.h */, + FFFDfa18bdb87fbcfa18bdb8 /* PxProfiler.h */, + FFFDfa18be207fbcfa18be20 /* PxQuat.h */, + FFFDfa18be887fbcfa18be88 /* PxSimpleTypes.h */, + FFFDfa18bef07fbcfa18bef0 /* PxStrideIterator.h */, + FFFDfa18bf587fbcfa18bf58 /* PxTransform.h */, + FFFDfa18bfc07fbcfa18bfc0 /* PxUnionCast.h */, + FFFDfa18c0287fbcfa18c028 /* PxVec2.h */, + FFFDfa18c0907fbcfa18c090 /* PxVec3.h */, + FFFDfa18c0f87fbcfa18c0f8 /* PxVec4.h */, + FFFDfa18c1607fbcfa18c160 /* unix/PxUnixIntrinsics.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc4c552c87fb7c4c552c8 /* src */ = { + FFFBfa87fb287fbcfa87fb28 /* src */ = { isa = PBXGroup; children = ( - FFFDc78020007fb7c7802000 /* include/Ps.h */, - FFFDc78020687fb7c7802068 /* include/PsAlignedMalloc.h */, - FFFDc78020d07fb7c78020d0 /* include/PsAlloca.h */, - FFFDc78021387fb7c7802138 /* include/PsAllocator.h */, - FFFDc78021a07fb7c78021a0 /* include/PsAoS.h */, - FFFDc78022087fb7c7802208 /* include/PsArray.h */, - FFFDc78022707fb7c7802270 /* include/PsAtomic.h */, - FFFDc78022d87fb7c78022d8 /* include/PsBasicTemplates.h */, - FFFDc78023407fb7c7802340 /* include/PsBitUtils.h */, - FFFDc78023a87fb7c78023a8 /* include/PsBroadcast.h */, - FFFDc78024107fb7c7802410 /* include/PsCpu.h */, - FFFDc78024787fb7c7802478 /* include/PsFPU.h */, - FFFDc78024e07fb7c78024e0 /* include/PsFoundation.h */, - FFFDc78025487fb7c7802548 /* include/PsHash.h */, - FFFDc78025b07fb7c78025b0 /* include/PsHashInternals.h */, - FFFDc78026187fb7c7802618 /* include/PsHashMap.h */, - FFFDc78026807fb7c7802680 /* include/PsHashSet.h */, - FFFDc78026e87fb7c78026e8 /* include/PsInlineAllocator.h */, - FFFDc78027507fb7c7802750 /* include/PsInlineAoS.h */, - FFFDc78027b87fb7c78027b8 /* include/PsInlineArray.h */, - FFFDc78028207fb7c7802820 /* include/PsIntrinsics.h */, - FFFDc78028887fb7c7802888 /* include/PsMathUtils.h */, - FFFDc78028f07fb7c78028f0 /* include/PsMutex.h */, - FFFDc78029587fb7c7802958 /* include/PsPool.h */, - FFFDc78029c07fb7c78029c0 /* include/PsSList.h */, - FFFDc7802a287fb7c7802a28 /* include/PsSocket.h */, - FFFDc7802a907fb7c7802a90 /* include/PsSort.h */, - FFFDc7802af87fb7c7802af8 /* include/PsSortInternals.h */, - FFFDc7802b607fb7c7802b60 /* include/PsString.h */, - FFFDc7802bc87fb7c7802bc8 /* include/PsSync.h */, - FFFDc7802c307fb7c7802c30 /* include/PsTempAllocator.h */, - FFFDc7802c987fb7c7802c98 /* include/PsThread.h */, - FFFDc7802d007fb7c7802d00 /* include/PsTime.h */, - FFFDc7802d687fb7c7802d68 /* include/PsUserAllocated.h */, - FFFDc7802dd07fb7c7802dd0 /* include/PsUtilities.h */, - FFFDc7802e387fb7c7802e38 /* include/PsVecMath.h */, - FFFDc7802ea07fb7c7802ea0 /* include/PsVecMathAoSScalar.h */, - FFFDc7802f087fb7c7802f08 /* include/PsVecMathAoSScalarInline.h */, - FFFDc7802f707fb7c7802f70 /* include/PsVecMathSSE.h */, - FFFDc7802fd87fb7c7802fd8 /* include/PsVecMathUtilities.h */, - FFFDc78030407fb7c7803040 /* include/PsVecQuat.h */, - FFFDc78030a87fb7c78030a8 /* include/PsVecTransform.h */, - FFFDc78031107fb7c7803110 /* include/unix/PsUnixAoS.h */, - FFFDc78031787fb7c7803178 /* include/unix/PsUnixFPU.h */, - FFFDc78031e07fb7c78031e0 /* include/unix/PsUnixInlineAoS.h */, - FFFDc78032487fb7c7803248 /* include/unix/PsUnixIntrinsics.h */, - FFFDc78032b07fb7c78032b0 /* include/unix/PsUnixTrigConstants.h */, - FFFDc78033187fb7c7803318 /* src/PsAllocator.cpp */, - FFFDc78033807fb7c7803380 /* src/PsAssert.cpp */, - FFFDc78033e87fb7c78033e8 /* src/PsFoundation.cpp */, - FFFDc78034507fb7c7803450 /* src/PsMathUtils.cpp */, - FFFDc78034b87fb7c78034b8 /* src/PsString.cpp */, - FFFDc78035207fb7c7803520 /* src/PsTempAllocator.cpp */, - FFFDc78035887fb7c7803588 /* src/PsUtilities.cpp */, - FFFDc78035f07fb7c78035f0 /* src/unix/PsUnixAtomic.cpp */, - FFFDc78036587fb7c7803658 /* src/unix/PsUnixCpu.cpp */, - FFFDc78036c07fb7c78036c0 /* src/unix/PsUnixFPU.cpp */, - FFFDc78037287fb7c7803728 /* src/unix/PsUnixMutex.cpp */, - FFFDc78037907fb7c7803790 /* src/unix/PsUnixPrintString.cpp */, - FFFDc78037f87fb7c78037f8 /* src/unix/PsUnixSList.cpp */, - FFFDc78038607fb7c7803860 /* src/unix/PsUnixSocket.cpp */, - FFFDc78038c87fb7c78038c8 /* src/unix/PsUnixSync.cpp */, - FFFDc78039307fb7c7803930 /* src/unix/PsUnixThread.cpp */, - FFFDc78039987fb7c7803998 /* src/unix/PsUnixTime.cpp */, + FFFDfa1806007fbcfa180600 /* include/Ps.h */, + FFFDfa1806687fbcfa180668 /* include/PsAlignedMalloc.h */, + FFFDfa1806d07fbcfa1806d0 /* include/PsAlloca.h */, + FFFDfa1807387fbcfa180738 /* include/PsAllocator.h */, + FFFDfa1807a07fbcfa1807a0 /* include/PsAoS.h */, + FFFDfa1808087fbcfa180808 /* include/PsArray.h */, + FFFDfa1808707fbcfa180870 /* include/PsAtomic.h */, + FFFDfa1808d87fbcfa1808d8 /* include/PsBasicTemplates.h */, + FFFDfa1809407fbcfa180940 /* include/PsBitUtils.h */, + FFFDfa1809a87fbcfa1809a8 /* include/PsBroadcast.h */, + FFFDfa180a107fbcfa180a10 /* include/PsCpu.h */, + FFFDfa180a787fbcfa180a78 /* include/PsFPU.h */, + FFFDfa180ae07fbcfa180ae0 /* include/PsFoundation.h */, + FFFDfa180b487fbcfa180b48 /* include/PsHash.h */, + FFFDfa180bb07fbcfa180bb0 /* include/PsHashInternals.h */, + FFFDfa180c187fbcfa180c18 /* include/PsHashMap.h */, + FFFDfa180c807fbcfa180c80 /* include/PsHashSet.h */, + FFFDfa180ce87fbcfa180ce8 /* include/PsInlineAllocator.h */, + FFFDfa180d507fbcfa180d50 /* include/PsInlineAoS.h */, + FFFDfa180db87fbcfa180db8 /* include/PsInlineArray.h */, + FFFDfa180e207fbcfa180e20 /* include/PsIntrinsics.h */, + FFFDfa180e887fbcfa180e88 /* include/PsMathUtils.h */, + FFFDfa180ef07fbcfa180ef0 /* include/PsMutex.h */, + FFFDfa180f587fbcfa180f58 /* include/PsPool.h */, + FFFDfa180fc07fbcfa180fc0 /* include/PsSList.h */, + FFFDfa1810287fbcfa181028 /* include/PsSocket.h */, + FFFDfa1810907fbcfa181090 /* include/PsSort.h */, + FFFDfa1810f87fbcfa1810f8 /* include/PsSortInternals.h */, + FFFDfa1811607fbcfa181160 /* include/PsString.h */, + FFFDfa1811c87fbcfa1811c8 /* include/PsSync.h */, + FFFDfa1812307fbcfa181230 /* include/PsTempAllocator.h */, + FFFDfa1812987fbcfa181298 /* include/PsThread.h */, + FFFDfa1813007fbcfa181300 /* include/PsTime.h */, + FFFDfa1813687fbcfa181368 /* include/PsUserAllocated.h */, + FFFDfa1813d07fbcfa1813d0 /* include/PsUtilities.h */, + FFFDfa1814387fbcfa181438 /* include/PsVecMath.h */, + FFFDfa1814a07fbcfa1814a0 /* include/PsVecMathAoSScalar.h */, + FFFDfa1815087fbcfa181508 /* include/PsVecMathAoSScalarInline.h */, + FFFDfa1815707fbcfa181570 /* include/PsVecMathSSE.h */, + FFFDfa1815d87fbcfa1815d8 /* include/PsVecMathUtilities.h */, + FFFDfa1816407fbcfa181640 /* include/PsVecQuat.h */, + FFFDfa1816a87fbcfa1816a8 /* include/PsVecTransform.h */, + FFFDfa1817107fbcfa181710 /* include/unix/PsUnixAoS.h */, + FFFDfa1817787fbcfa181778 /* include/unix/PsUnixFPU.h */, + FFFDfa1817e07fbcfa1817e0 /* include/unix/PsUnixInlineAoS.h */, + FFFDfa1818487fbcfa181848 /* include/unix/PsUnixIntrinsics.h */, + FFFDfa1818b07fbcfa1818b0 /* include/unix/PsUnixTrigConstants.h */, + FFFDfa1819187fbcfa181918 /* src/PsAllocator.cpp */, + FFFDfa1819807fbcfa181980 /* src/PsAssert.cpp */, + FFFDfa1819e87fbcfa1819e8 /* src/PsFoundation.cpp */, + FFFDfa181a507fbcfa181a50 /* src/PsMathUtils.cpp */, + FFFDfa181ab87fbcfa181ab8 /* src/PsString.cpp */, + FFFDfa181b207fbcfa181b20 /* src/PsTempAllocator.cpp */, + FFFDfa181b887fbcfa181b88 /* src/PsUtilities.cpp */, + FFFDfa181bf07fbcfa181bf0 /* src/unix/PsUnixAtomic.cpp */, + FFFDfa181c587fbcfa181c58 /* src/unix/PsUnixCpu.cpp */, + FFFDfa181cc07fbcfa181cc0 /* src/unix/PsUnixFPU.cpp */, + FFFDfa181d287fbcfa181d28 /* src/unix/PsUnixMutex.cpp */, + FFFDfa181d907fbcfa181d90 /* src/unix/PsUnixPrintString.cpp */, + FFFDfa181df87fbcfa181df8 /* src/unix/PsUnixSList.cpp */, + FFFDfa181e607fbcfa181e60 /* src/unix/PsUnixSocket.cpp */, + FFFDfa181ec87fbcfa181ec8 /* src/unix/PsUnixSync.cpp */, + FFFDfa181f307fbcfa181f30 /* src/unix/PsUnixThread.cpp */, + FFFDfa181f987fbcfa181f98 /* src/unix/PsUnixTime.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc4a2a3107fb7c4a2a310 /* PxPvdSDK */ = { + FFFBfab095c07fbcfab095c0 /* PxPvdSDK */ = { isa = PBXGroup; children = ( - FFFBc35e03007fb7c35e0300 /* include */, - FFFBc35e03287fb7c35e0328 /* src */, + FFFBfa8934f07fbcfa8934f0 /* include */, + FFFBfa8935187fbcfa893518 /* src */, ); name = "PxPvdSDK"; sourceTree = "<group>"; }; - FFFBc35e03007fb7c35e0300 /* include */ = { + FFFBfa8934f07fbcfa8934f0 /* include */ = { isa = PBXGroup; children = ( - FFFDc35e40807fb7c35e4080 /* PxPvd.h */, - FFFDc35e40e87fb7c35e40e8 /* PxPvdTransport.h */, + FFFDfab09df07fbcfab09df0 /* PxPvd.h */, + FFFDfab09e587fbcfab09e58 /* PxPvdTransport.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc35e03287fb7c35e0328 /* src */ = { + FFFBfa8935187fbcfa893518 /* src */ = { isa = PBXGroup; children = ( - FFFDc589e2007fb7c589e200 /* include/PsPvd.h */, - FFFDc589e2687fb7c589e268 /* include/PxProfileAllocatorWrapper.h */, - FFFDc589e2d07fb7c589e2d0 /* include/PxPvdClient.h */, - FFFDc589e3387fb7c589e338 /* include/PxPvdDataStream.h */, - FFFDc589e3a07fb7c589e3a0 /* include/PxPvdDataStreamHelpers.h */, - FFFDc589e4087fb7c589e408 /* include/PxPvdErrorCodes.h */, - FFFDc589e4707fb7c589e470 /* include/PxPvdObjectModelBaseTypes.h */, - FFFDc589e4d87fb7c589e4d8 /* include/PxPvdRenderBuffer.h */, - FFFDc589e5407fb7c589e540 /* include/PxPvdUserRenderer.h */, - FFFDc589e5a87fb7c589e5a8 /* src/PxProfileEventImpl.cpp */, - FFFDc589e6107fb7c589e610 /* src/PxPvd.cpp */, - FFFDc589e6787fb7c589e678 /* src/PxPvdDataStream.cpp */, - FFFDc589e6e07fb7c589e6e0 /* src/PxPvdDefaultFileTransport.cpp */, - FFFDc589e7487fb7c589e748 /* src/PxPvdDefaultSocketTransport.cpp */, - FFFDc589e7b07fb7c589e7b0 /* src/PxPvdImpl.cpp */, - FFFDc589e8187fb7c589e818 /* src/PxPvdMemClient.cpp */, - FFFDc589e8807fb7c589e880 /* src/PxPvdObjectModelMetaData.cpp */, - FFFDc589e8e87fb7c589e8e8 /* src/PxPvdObjectRegistrar.cpp */, - FFFDc589e9507fb7c589e950 /* src/PxPvdProfileZoneClient.cpp */, - FFFDc589e9b87fb7c589e9b8 /* src/PxPvdUserRenderer.cpp */, - FFFDc589ea207fb7c589ea20 /* src/PxProfileBase.h */, - FFFDc589ea887fb7c589ea88 /* src/PxProfileCompileTimeEventFilter.h */, - FFFDc589eaf07fb7c589eaf0 /* src/PxProfileContextProvider.h */, - FFFDc589eb587fb7c589eb58 /* src/PxProfileContextProviderImpl.h */, - FFFDc589ebc07fb7c589ebc0 /* src/PxProfileDataBuffer.h */, - FFFDc589ec287fb7c589ec28 /* src/PxProfileDataParsing.h */, - FFFDc589ec907fb7c589ec90 /* src/PxProfileEventBuffer.h */, - FFFDc589ecf87fb7c589ecf8 /* src/PxProfileEventBufferAtomic.h */, - FFFDc589ed607fb7c589ed60 /* src/PxProfileEventBufferClient.h */, - FFFDc589edc87fb7c589edc8 /* src/PxProfileEventBufferClientManager.h */, - FFFDc589ee307fb7c589ee30 /* src/PxProfileEventFilter.h */, - FFFDc589ee987fb7c589ee98 /* src/PxProfileEventHandler.h */, - FFFDc589ef007fb7c589ef00 /* src/PxProfileEventId.h */, - FFFDc589ef687fb7c589ef68 /* src/PxProfileEventMutex.h */, - FFFDc589efd07fb7c589efd0 /* src/PxProfileEventNames.h */, - FFFDc589f0387fb7c589f038 /* src/PxProfileEventParser.h */, - FFFDc589f0a07fb7c589f0a0 /* src/PxProfileEventSender.h */, - FFFDc589f1087fb7c589f108 /* src/PxProfileEventSerialization.h */, - FFFDc589f1707fb7c589f170 /* src/PxProfileEventSystem.h */, - FFFDc589f1d87fb7c589f1d8 /* src/PxProfileEvents.h */, - FFFDc589f2407fb7c589f240 /* src/PxProfileMemory.h */, - FFFDc589f2a87fb7c589f2a8 /* src/PxProfileMemoryBuffer.h */, - FFFDc589f3107fb7c589f310 /* src/PxProfileMemoryEventBuffer.h */, - FFFDc589f3787fb7c589f378 /* src/PxProfileMemoryEventParser.h */, - FFFDc589f3e07fb7c589f3e0 /* src/PxProfileMemoryEventRecorder.h */, - FFFDc589f4487fb7c589f448 /* src/PxProfileMemoryEventReflexiveWriter.h */, - FFFDc589f4b07fb7c589f4b0 /* src/PxProfileMemoryEventSummarizer.h */, - FFFDc589f5187fb7c589f518 /* src/PxProfileMemoryEventTypes.h */, - FFFDc589f5807fb7c589f580 /* src/PxProfileMemoryEvents.h */, - FFFDc589f5e87fb7c589f5e8 /* src/PxProfileScopedEvent.h */, - FFFDc589f6507fb7c589f650 /* src/PxProfileScopedMutexLock.h */, - FFFDc589f6b87fb7c589f6b8 /* src/PxProfileZone.h */, - FFFDc589f7207fb7c589f720 /* src/PxProfileZoneImpl.h */, - FFFDc589f7887fb7c589f788 /* src/PxProfileZoneManager.h */, - FFFDc589f7f07fb7c589f7f0 /* src/PxProfileZoneManagerImpl.h */, - FFFDc589f8587fb7c589f858 /* src/PxPvdBits.h */, - FFFDc589f8c07fb7c589f8c0 /* src/PxPvdByteStreams.h */, - FFFDc589f9287fb7c589f928 /* src/PxPvdCommStreamEventSink.h */, - FFFDc589f9907fb7c589f990 /* src/PxPvdCommStreamEvents.h */, - FFFDc589f9f87fb7c589f9f8 /* src/PxPvdCommStreamSDKEventTypes.h */, - FFFDc589fa607fb7c589fa60 /* src/PxPvdCommStreamTypes.h */, - FFFDc589fac87fb7c589fac8 /* src/PxPvdDefaultFileTransport.h */, - FFFDc589fb307fb7c589fb30 /* src/PxPvdDefaultSocketTransport.h */, - FFFDc589fb987fb7c589fb98 /* src/PxPvdFoundation.h */, - FFFDc589fc007fb7c589fc00 /* src/PxPvdImpl.h */, - FFFDc589fc687fb7c589fc68 /* src/PxPvdInternalByteStreams.h */, - FFFDc589fcd07fb7c589fcd0 /* src/PxPvdMarshalling.h */, - FFFDc589fd387fb7c589fd38 /* src/PxPvdMemClient.h */, - FFFDc589fda07fb7c589fda0 /* src/PxPvdObjectModel.h */, - FFFDc589fe087fb7c589fe08 /* src/PxPvdObjectModelInternalTypeDefs.h */, - FFFDc589fe707fb7c589fe70 /* src/PxPvdObjectModelInternalTypes.h */, - FFFDc589fed87fb7c589fed8 /* src/PxPvdObjectModelMetaData.h */, - FFFDc589ff407fb7c589ff40 /* src/PxPvdObjectRegistrar.h */, - FFFDc589ffa87fb7c589ffa8 /* src/PxPvdProfileZoneClient.h */, - FFFDc58a00107fb7c58a0010 /* src/PxPvdUserRenderImpl.h */, - FFFDc58a00787fb7c58a0078 /* src/PxPvdUserRenderTypes.h */, + FFFDfa1b3c007fbcfa1b3c00 /* include/PsPvd.h */, + FFFDfa1b3c687fbcfa1b3c68 /* include/PxProfileAllocatorWrapper.h */, + FFFDfa1b3cd07fbcfa1b3cd0 /* include/PxPvdClient.h */, + FFFDfa1b3d387fbcfa1b3d38 /* include/PxPvdDataStream.h */, + FFFDfa1b3da07fbcfa1b3da0 /* include/PxPvdDataStreamHelpers.h */, + FFFDfa1b3e087fbcfa1b3e08 /* include/PxPvdErrorCodes.h */, + FFFDfa1b3e707fbcfa1b3e70 /* include/PxPvdObjectModelBaseTypes.h */, + FFFDfa1b3ed87fbcfa1b3ed8 /* include/PxPvdRenderBuffer.h */, + FFFDfa1b3f407fbcfa1b3f40 /* include/PxPvdUserRenderer.h */, + FFFDfa1b3fa87fbcfa1b3fa8 /* src/PxProfileEventImpl.cpp */, + FFFDfa1b40107fbcfa1b4010 /* src/PxPvd.cpp */, + FFFDfa1b40787fbcfa1b4078 /* src/PxPvdDataStream.cpp */, + FFFDfa1b40e07fbcfa1b40e0 /* src/PxPvdDefaultFileTransport.cpp */, + FFFDfa1b41487fbcfa1b4148 /* src/PxPvdDefaultSocketTransport.cpp */, + FFFDfa1b41b07fbcfa1b41b0 /* src/PxPvdImpl.cpp */, + FFFDfa1b42187fbcfa1b4218 /* src/PxPvdMemClient.cpp */, + FFFDfa1b42807fbcfa1b4280 /* src/PxPvdObjectModelMetaData.cpp */, + FFFDfa1b42e87fbcfa1b42e8 /* src/PxPvdObjectRegistrar.cpp */, + FFFDfa1b43507fbcfa1b4350 /* src/PxPvdProfileZoneClient.cpp */, + FFFDfa1b43b87fbcfa1b43b8 /* src/PxPvdUserRenderer.cpp */, + FFFDfa1b44207fbcfa1b4420 /* src/PxProfileBase.h */, + FFFDfa1b44887fbcfa1b4488 /* src/PxProfileCompileTimeEventFilter.h */, + FFFDfa1b44f07fbcfa1b44f0 /* src/PxProfileContextProvider.h */, + FFFDfa1b45587fbcfa1b4558 /* src/PxProfileContextProviderImpl.h */, + FFFDfa1b45c07fbcfa1b45c0 /* src/PxProfileDataBuffer.h */, + FFFDfa1b46287fbcfa1b4628 /* src/PxProfileDataParsing.h */, + FFFDfa1b46907fbcfa1b4690 /* src/PxProfileEventBuffer.h */, + FFFDfa1b46f87fbcfa1b46f8 /* src/PxProfileEventBufferAtomic.h */, + FFFDfa1b47607fbcfa1b4760 /* src/PxProfileEventBufferClient.h */, + FFFDfa1b47c87fbcfa1b47c8 /* src/PxProfileEventBufferClientManager.h */, + FFFDfa1b48307fbcfa1b4830 /* src/PxProfileEventFilter.h */, + FFFDfa1b48987fbcfa1b4898 /* src/PxProfileEventHandler.h */, + FFFDfa1b49007fbcfa1b4900 /* src/PxProfileEventId.h */, + FFFDfa1b49687fbcfa1b4968 /* src/PxProfileEventMutex.h */, + FFFDfa1b49d07fbcfa1b49d0 /* src/PxProfileEventNames.h */, + FFFDfa1b4a387fbcfa1b4a38 /* src/PxProfileEventParser.h */, + FFFDfa1b4aa07fbcfa1b4aa0 /* src/PxProfileEventSender.h */, + FFFDfa1b4b087fbcfa1b4b08 /* src/PxProfileEventSerialization.h */, + FFFDfa1b4b707fbcfa1b4b70 /* src/PxProfileEventSystem.h */, + FFFDfa1b4bd87fbcfa1b4bd8 /* src/PxProfileEvents.h */, + FFFDfa1b4c407fbcfa1b4c40 /* src/PxProfileMemory.h */, + FFFDfa1b4ca87fbcfa1b4ca8 /* src/PxProfileMemoryBuffer.h */, + FFFDfa1b4d107fbcfa1b4d10 /* src/PxProfileMemoryEventBuffer.h */, + FFFDfa1b4d787fbcfa1b4d78 /* src/PxProfileMemoryEventParser.h */, + FFFDfa1b4de07fbcfa1b4de0 /* src/PxProfileMemoryEventRecorder.h */, + FFFDfa1b4e487fbcfa1b4e48 /* src/PxProfileMemoryEventReflexiveWriter.h */, + FFFDfa1b4eb07fbcfa1b4eb0 /* src/PxProfileMemoryEventSummarizer.h */, + FFFDfa1b4f187fbcfa1b4f18 /* src/PxProfileMemoryEventTypes.h */, + FFFDfa1b4f807fbcfa1b4f80 /* src/PxProfileMemoryEvents.h */, + FFFDfa1b4fe87fbcfa1b4fe8 /* src/PxProfileScopedEvent.h */, + FFFDfa1b50507fbcfa1b5050 /* src/PxProfileScopedMutexLock.h */, + FFFDfa1b50b87fbcfa1b50b8 /* src/PxProfileZone.h */, + FFFDfa1b51207fbcfa1b5120 /* src/PxProfileZoneImpl.h */, + FFFDfa1b51887fbcfa1b5188 /* src/PxProfileZoneManager.h */, + FFFDfa1b51f07fbcfa1b51f0 /* src/PxProfileZoneManagerImpl.h */, + FFFDfa1b52587fbcfa1b5258 /* src/PxPvdBits.h */, + FFFDfa1b52c07fbcfa1b52c0 /* src/PxPvdByteStreams.h */, + FFFDfa1b53287fbcfa1b5328 /* src/PxPvdCommStreamEventSink.h */, + FFFDfa1b53907fbcfa1b5390 /* src/PxPvdCommStreamEvents.h */, + FFFDfa1b53f87fbcfa1b53f8 /* src/PxPvdCommStreamSDKEventTypes.h */, + FFFDfa1b54607fbcfa1b5460 /* src/PxPvdCommStreamTypes.h */, + FFFDfa1b54c87fbcfa1b54c8 /* src/PxPvdDefaultFileTransport.h */, + FFFDfa1b55307fbcfa1b5530 /* src/PxPvdDefaultSocketTransport.h */, + FFFDfa1b55987fbcfa1b5598 /* src/PxPvdFoundation.h */, + FFFDfa1b56007fbcfa1b5600 /* src/PxPvdImpl.h */, + FFFDfa1b56687fbcfa1b5668 /* src/PxPvdInternalByteStreams.h */, + FFFDfa1b56d07fbcfa1b56d0 /* src/PxPvdMarshalling.h */, + FFFDfa1b57387fbcfa1b5738 /* src/PxPvdMemClient.h */, + FFFDfa1b57a07fbcfa1b57a0 /* src/PxPvdObjectModel.h */, + FFFDfa1b58087fbcfa1b5808 /* src/PxPvdObjectModelInternalTypeDefs.h */, + FFFDfa1b58707fbcfa1b5870 /* src/PxPvdObjectModelInternalTypes.h */, + FFFDfa1b58d87fbcfa1b58d8 /* src/PxPvdObjectModelMetaData.h */, + FFFDfa1b59407fbcfa1b5940 /* src/PxPvdObjectRegistrar.h */, + FFFDfa1b59a87fbcfa1b59a8 /* src/PxPvdProfileZoneClient.h */, + FFFDfa1b5a107fbcfa1b5a10 /* src/PxPvdUserRenderImpl.h */, + FFFDfa1b5a787fbcfa1b5a78 /* src/PxPvdUserRenderTypes.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc81162307fb7c8116230 /* LowLevel */ = { + FFFBfab277107fbcfab27710 /* LowLevel */ = { isa = PBXGroup; children = ( - FFFBc8116f507fb7c8116f50 /* API Source */, - FFFBc8116f787fb7c8116f78 /* API Includes */, - FFFBc8116fa07fb7c8116fa0 /* Software Source */, - FFFBc8116fc87fb7c8116fc8 /* Software Includes */, - FFFBc8116ff07fb7c8116ff0 /* Common Source */, - FFFBc81170187fb7c8117018 /* Common Includes */, + FFFBfab242d07fbcfab242d0 /* API Source */, + FFFBfab242f87fbcfab242f8 /* API Includes */, + FFFBfab243207fbcfab24320 /* Software Source */, + FFFBfab243487fbcfab24348 /* Software Includes */, + FFFBfab243707fbcfab24370 /* Common Source */, + FFFBfab243987fbcfab24398 /* Common Includes */, ); name = "LowLevel"; sourceTree = "<group>"; }; - FFFBc8116f507fb7c8116f50 /* API Source */ = { + FFFBfab242d07fbcfab242d0 /* API Source */ = { isa = PBXGroup; children = ( - FFFDc81180107fb7c8118010 /* px_globals.cpp */, + FFFDfab2a4b07fbcfab2a4b0 /* px_globals.cpp */, ); name = "API Source"; sourceTree = SOURCE_ROOT; }; - FFFBc8116f787fb7c8116f78 /* API Includes */ = { + FFFBfab242f87fbcfab242f8 /* API Includes */ = { isa = PBXGroup; children = ( - FFFDc81183107fb7c8118310 /* PxsMaterialCore.h */, - FFFDc81183787fb7c8118378 /* PxsMaterialManager.h */, - FFFDc81183e07fb7c81183e0 /* PxvConfig.h */, - FFFDc81184487fb7c8118448 /* PxvContext.h */, - FFFDc81184b07fb7c81184b0 /* PxvDynamics.h */, - FFFDc81185187fb7c8118518 /* PxvGeometry.h */, - FFFDc81185807fb7c8118580 /* PxvGlobals.h */, - FFFDc81185e87fb7c81185e8 /* PxvManager.h */, - FFFDc81186507fb7c8118650 /* PxvSimStats.h */, + FFFDfab316007fbcfab31600 /* PxsMaterialCore.h */, + FFFDfab316687fbcfab31668 /* PxsMaterialManager.h */, + FFFDfab316d07fbcfab316d0 /* PxvConfig.h */, + FFFDfab317387fbcfab31738 /* PxvContext.h */, + FFFDfab317a07fbcfab317a0 /* PxvDynamics.h */, + FFFDfab318087fbcfab31808 /* PxvGeometry.h */, + FFFDfab318707fbcfab31870 /* PxvGlobals.h */, + FFFDfab318d87fbcfab318d8 /* PxvManager.h */, + FFFDfab319407fbcfab31940 /* PxvSimStats.h */, ); name = "API Includes"; sourceTree = SOURCE_ROOT; }; - FFFBc8116fa07fb7c8116fa0 /* Software Source */ = { + FFFBfab243207fbcfab24320 /* Software Source */ = { isa = PBXGroup; children = ( - FFFDc81188707fb7c8118870 /* PxsCCD.cpp */, - FFFDc81188d87fb7c81188d8 /* PxsContactManager.cpp */, - FFFDc81189407fb7c8118940 /* PxsContext.cpp */, - FFFDc81189a87fb7c81189a8 /* PxsDefaultMemoryManager.cpp */, - FFFDc8118a107fb7c8118a10 /* PxsIslandSim.cpp */, - FFFDc8118a787fb7c8118a78 /* PxsMaterialCombiner.cpp */, - FFFDc8118ae07fb7c8118ae0 /* PxsNphaseImplementationContext.cpp */, - FFFDc8118b487fb7c8118b48 /* PxsSimpleIslandManager.cpp */, + FFFDfab328007fbcfab32800 /* PxsCCD.cpp */, + FFFDfab328687fbcfab32868 /* PxsContactManager.cpp */, + FFFDfab328d07fbcfab328d0 /* PxsContext.cpp */, + FFFDfab329387fbcfab32938 /* PxsDefaultMemoryManager.cpp */, + FFFDfab329a07fbcfab329a0 /* PxsIslandSim.cpp */, + FFFDfab32a087fbcfab32a08 /* PxsMaterialCombiner.cpp */, + FFFDfab32a707fbcfab32a70 /* PxsNphaseImplementationContext.cpp */, + FFFDfab32ad87fbcfab32ad8 /* PxsSimpleIslandManager.cpp */, ); name = "Software Source"; sourceTree = SOURCE_ROOT; }; - FFFBc8116fc87fb7c8116fc8 /* Software Includes */ = { + FFFBfab243487fbcfab24348 /* Software Includes */ = { isa = PBXGroup; children = ( - FFFDc40258007fb7c4025800 /* PxsBodySim.h */, - FFFDc40258687fb7c4025868 /* PxsCCD.h */, - FFFDc40258d07fb7c40258d0 /* PxsContactManager.h */, - FFFDc40259387fb7c4025938 /* PxsContactManagerState.h */, - FFFDc40259a07fb7c40259a0 /* PxsContext.h */, - FFFDc4025a087fb7c4025a08 /* PxsDefaultMemoryManager.h */, - FFFDc4025a707fb7c4025a70 /* PxsHeapMemoryAllocator.h */, - FFFDc4025ad87fb7c4025ad8 /* PxsIncrementalConstraintPartitioning.h */, - FFFDc4025b407fb7c4025b40 /* PxsIslandManagerTypes.h */, - FFFDc4025ba87fb7c4025ba8 /* PxsIslandSim.h */, - FFFDc4025c107fb7c4025c10 /* PxsKernelWrangler.h */, - FFFDc4025c787fb7c4025c78 /* PxsMaterialCombiner.h */, - FFFDc4025ce07fb7c4025ce0 /* PxsMemoryManager.h */, - FFFDc4025d487fb7c4025d48 /* PxsNphaseImplementationContext.h */, - FFFDc4025db07fb7c4025db0 /* PxsRigidBody.h */, - FFFDc4025e187fb7c4025e18 /* PxsShapeSim.h */, - FFFDc4025e807fb7c4025e80 /* PxsSimpleIslandManager.h */, - FFFDc4025ee87fb7c4025ee8 /* PxsSimulationController.h */, - FFFDc4025f507fb7c4025f50 /* PxsTransformCache.h */, - FFFDc4025fb87fb7c4025fb8 /* PxvNphaseImplementationContext.h */, + FFFDfa1bd6007fbcfa1bd600 /* PxsBodySim.h */, + FFFDfa1bd6687fbcfa1bd668 /* PxsCCD.h */, + FFFDfa1bd6d07fbcfa1bd6d0 /* PxsContactManager.h */, + FFFDfa1bd7387fbcfa1bd738 /* PxsContactManagerState.h */, + FFFDfa1bd7a07fbcfa1bd7a0 /* PxsContext.h */, + FFFDfa1bd8087fbcfa1bd808 /* PxsDefaultMemoryManager.h */, + FFFDfa1bd8707fbcfa1bd870 /* PxsHeapMemoryAllocator.h */, + FFFDfa1bd8d87fbcfa1bd8d8 /* PxsIncrementalConstraintPartitioning.h */, + FFFDfa1bd9407fbcfa1bd940 /* PxsIslandManagerTypes.h */, + FFFDfa1bd9a87fbcfa1bd9a8 /* PxsIslandSim.h */, + FFFDfa1bda107fbcfa1bda10 /* PxsKernelWrangler.h */, + FFFDfa1bda787fbcfa1bda78 /* PxsMaterialCombiner.h */, + FFFDfa1bdae07fbcfa1bdae0 /* PxsMemoryManager.h */, + FFFDfa1bdb487fbcfa1bdb48 /* PxsNphaseImplementationContext.h */, + FFFDfa1bdbb07fbcfa1bdbb0 /* PxsRigidBody.h */, + FFFDfa1bdc187fbcfa1bdc18 /* PxsShapeSim.h */, + FFFDfa1bdc807fbcfa1bdc80 /* PxsSimpleIslandManager.h */, + FFFDfa1bdce87fbcfa1bdce8 /* PxsSimulationController.h */, + FFFDfa1bdd507fbcfa1bdd50 /* PxsTransformCache.h */, + FFFDfa1bddb87fbcfa1bddb8 /* PxvNphaseImplementationContext.h */, ); name = "Software Includes"; sourceTree = SOURCE_ROOT; }; - FFFBc8116ff07fb7c8116ff0 /* Common Source */ = { + FFFBfab243707fbcfab24370 /* Common Source */ = { isa = PBXGroup; children = ( - FFFDc40262007fb7c4026200 /* collision/PxcContact.cpp */, - FFFDc40262687fb7c4026268 /* pipeline/PxcContactCache.cpp */, - FFFDc40262d07fb7c40262d0 /* pipeline/PxcContactMethodImpl.cpp */, - FFFDc40263387fb7c4026338 /* pipeline/PxcMaterialHeightField.cpp */, - FFFDc40263a07fb7c40263a0 /* pipeline/PxcMaterialMesh.cpp */, - FFFDc40264087fb7c4026408 /* pipeline/PxcMaterialMethodImpl.cpp */, - FFFDc40264707fb7c4026470 /* pipeline/PxcMaterialShape.cpp */, - FFFDc40264d87fb7c40264d8 /* pipeline/PxcNpBatch.cpp */, - FFFDc40265407fb7c4026540 /* pipeline/PxcNpCacheStreamPair.cpp */, - FFFDc40265a87fb7c40265a8 /* pipeline/PxcNpContactPrepShared.cpp */, - FFFDc40266107fb7c4026610 /* pipeline/PxcNpMemBlockPool.cpp */, - FFFDc40266787fb7c4026678 /* pipeline/PxcNpThreadContext.cpp */, + FFFDfa1bc0007fbcfa1bc000 /* collision/PxcContact.cpp */, + FFFDfa1bc0687fbcfa1bc068 /* pipeline/PxcContactCache.cpp */, + FFFDfa1bc0d07fbcfa1bc0d0 /* pipeline/PxcContactMethodImpl.cpp */, + FFFDfa1bc1387fbcfa1bc138 /* pipeline/PxcMaterialHeightField.cpp */, + FFFDfa1bc1a07fbcfa1bc1a0 /* pipeline/PxcMaterialMesh.cpp */, + FFFDfa1bc2087fbcfa1bc208 /* pipeline/PxcMaterialMethodImpl.cpp */, + FFFDfa1bc2707fbcfa1bc270 /* pipeline/PxcMaterialShape.cpp */, + FFFDfa1bc2d87fbcfa1bc2d8 /* pipeline/PxcNpBatch.cpp */, + FFFDfa1bc3407fbcfa1bc340 /* pipeline/PxcNpCacheStreamPair.cpp */, + FFFDfa1bc3a87fbcfa1bc3a8 /* pipeline/PxcNpContactPrepShared.cpp */, + FFFDfa1bc4107fbcfa1bc410 /* pipeline/PxcNpMemBlockPool.cpp */, + FFFDfa1bc4787fbcfa1bc478 /* pipeline/PxcNpThreadContext.cpp */, ); name = "Common Source"; sourceTree = SOURCE_ROOT; }; - FFFBc81170187fb7c8117018 /* Common Includes */ = { + FFFBfab243987fbcfab24398 /* Common Includes */ = { isa = PBXGroup; children = ( - FFFDc4026a007fb7c4026a00 /* collision/PxcContactMethodImpl.h */, - FFFDc4026a687fb7c4026a68 /* pipeline/PxcCCDStateStreamPair.h */, - FFFDc4026ad07fb7c4026ad0 /* pipeline/PxcConstraintBlockStream.h */, - FFFDc4026b387fb7c4026b38 /* pipeline/PxcContactCache.h */, - FFFDc4026ba07fb7c4026ba0 /* pipeline/PxcMaterialMethodImpl.h */, - FFFDc4026c087fb7c4026c08 /* pipeline/PxcNpBatch.h */, - FFFDc4026c707fb7c4026c70 /* pipeline/PxcNpCache.h */, - FFFDc4026cd87fb7c4026cd8 /* pipeline/PxcNpCacheStreamPair.h */, - FFFDc4026d407fb7c4026d40 /* pipeline/PxcNpContactPrepShared.h */, - FFFDc4026da87fb7c4026da8 /* pipeline/PxcNpMemBlockPool.h */, - FFFDc4026e107fb7c4026e10 /* pipeline/PxcNpThreadContext.h */, - FFFDc4026e787fb7c4026e78 /* pipeline/PxcNpWorkUnit.h */, - FFFDc4026ee07fb7c4026ee0 /* pipeline/PxcRigidBody.h */, - FFFDc4026f487fb7c4026f48 /* utils/PxcScratchAllocator.h */, - FFFDc4026fb07fb7c4026fb0 /* utils/PxcThreadCoherentCache.h */, + FFFDfa1bc8007fbcfa1bc800 /* collision/PxcContactMethodImpl.h */, + FFFDfa1bc8687fbcfa1bc868 /* pipeline/PxcCCDStateStreamPair.h */, + FFFDfa1bc8d07fbcfa1bc8d0 /* pipeline/PxcConstraintBlockStream.h */, + FFFDfa1bc9387fbcfa1bc938 /* pipeline/PxcContactCache.h */, + FFFDfa1bc9a07fbcfa1bc9a0 /* pipeline/PxcMaterialMethodImpl.h */, + FFFDfa1bca087fbcfa1bca08 /* pipeline/PxcNpBatch.h */, + FFFDfa1bca707fbcfa1bca70 /* pipeline/PxcNpCache.h */, + FFFDfa1bcad87fbcfa1bcad8 /* pipeline/PxcNpCacheStreamPair.h */, + FFFDfa1bcb407fbcfa1bcb40 /* pipeline/PxcNpContactPrepShared.h */, + FFFDfa1bcba87fbcfa1bcba8 /* pipeline/PxcNpMemBlockPool.h */, + FFFDfa1bcc107fbcfa1bcc10 /* pipeline/PxcNpThreadContext.h */, + FFFDfa1bcc787fbcfa1bcc78 /* pipeline/PxcNpWorkUnit.h */, + FFFDfa1bcce07fbcfa1bcce0 /* pipeline/PxcRigidBody.h */, + FFFDfa1bcd487fbcfa1bcd48 /* utils/PxcScratchAllocator.h */, + FFFDfa1bcdb07fbcfa1bcdb0 /* utils/PxcThreadCoherentCache.h */, ); name = "Common Includes"; sourceTree = SOURCE_ROOT; }; - FFFBc811f6607fb7c811f660 /* LowLevelAABB */ = { + FFFBfab514407fbcfab51440 /* LowLevelAABB */ = { isa = PBXGroup; children = ( - FFFBc8121c907fb7c8121c90 /* include */, - FFFBc8121cb87fb7c8121cb8 /* src */, + FFFBfab4ba407fbcfab4ba40 /* include */, + FFFBfab4ba687fbcfab4ba68 /* src */, ); name = "LowLevelAABB"; sourceTree = "<group>"; }; - FFFBc8121c907fb7c8121c90 /* include */ = { + FFFBfab4ba407fbcfab4ba40 /* include */ = { isa = PBXGroup; children = ( - FFFDc8121ce07fb7c8121ce0 /* BpAABBManagerTasks.h */, - FFFDc8121d487fb7c8121d48 /* BpBroadPhase.h */, - FFFDc8121db07fb7c8121db0 /* BpBroadPhaseUpdate.h */, - FFFDc8121e187fb7c8121e18 /* BpSimpleAABBManager.h */, + FFFDfab4c6b07fbcfab4c6b0 /* BpAABBManagerTasks.h */, + FFFDfab4c7187fbcfab4c718 /* BpBroadPhase.h */, + FFFDfab4c7807fbcfab4c780 /* BpBroadPhaseUpdate.h */, + FFFDfab4c7e87fbcfab4c7e8 /* BpSimpleAABBManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc8121cb87fb7c8121cb8 /* src */ = { + FFFBfab4ba687fbcfab4ba68 /* src */ = { isa = PBXGroup; children = ( - FFFDc402a2007fb7c402a200 /* BpBroadPhaseMBP.h */, - FFFDc402a2687fb7c402a268 /* BpBroadPhaseMBPCommon.h */, - FFFDc402a2d07fb7c402a2d0 /* BpBroadPhaseSap.h */, - FFFDc402a3387fb7c402a338 /* BpBroadPhaseSapAux.h */, - FFFDc402a3a07fb7c402a3a0 /* BpMBPTasks.h */, - FFFDc402a4087fb7c402a408 /* BpSAPTasks.h */, - FFFDc402a4707fb7c402a470 /* BpBroadPhase.cpp */, - FFFDc402a4d87fb7c402a4d8 /* BpBroadPhaseMBP.cpp */, - FFFDc402a5407fb7c402a540 /* BpBroadPhaseSap.cpp */, - FFFDc402a5a87fb7c402a5a8 /* BpBroadPhaseSapAux.cpp */, - FFFDc402a6107fb7c402a610 /* BpMBPTasks.cpp */, - FFFDc402a6787fb7c402a678 /* BpSAPTasks.cpp */, - FFFDc402a6e07fb7c402a6e0 /* BpSimpleAABBManager.cpp */, + FFFDfa1c64007fbcfa1c6400 /* BpBroadPhaseMBP.h */, + FFFDfa1c64687fbcfa1c6468 /* BpBroadPhaseMBPCommon.h */, + FFFDfa1c64d07fbcfa1c64d0 /* BpBroadPhaseSap.h */, + FFFDfa1c65387fbcfa1c6538 /* BpBroadPhaseSapAux.h */, + FFFDfa1c65a07fbcfa1c65a0 /* BpMBPTasks.h */, + FFFDfa1c66087fbcfa1c6608 /* BpSAPTasks.h */, + FFFDfa1c66707fbcfa1c6670 /* BpBroadPhase.cpp */, + FFFDfa1c66d87fbcfa1c66d8 /* BpBroadPhaseMBP.cpp */, + FFFDfa1c67407fbcfa1c6740 /* BpBroadPhaseSap.cpp */, + FFFDfa1c67a87fbcfa1c67a8 /* BpBroadPhaseSapAux.cpp */, + FFFDfa1c68107fbcfa1c6810 /* BpMBPTasks.cpp */, + FFFDfa1c68787fbcfa1c6878 /* BpSAPTasks.cpp */, + FFFDfa1c68e07fbcfa1c68e0 /* BpSimpleAABBManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc4a1ce107fb7c4a1ce10 /* LowLevelDynamics */ = { + FFFBfaef20807fbcfaef2080 /* LowLevelDynamics */ = { isa = PBXGroup; children = ( - FFFBc344fc407fb7c344fc40 /* Dynamics Source */, - FFFBc344fc687fb7c344fc68 /* Dynamics Includes */, - FFFBc344fc907fb7c344fc90 /* Dynamics Internal Includes */, + FFFBfaf055d07fbcfaf055d0 /* Dynamics Source */, + FFFBfaf055f87fbcfaf055f8 /* Dynamics Includes */, + FFFBfaf056207fbcfaf05620 /* Dynamics Internal Includes */, ); name = "LowLevelDynamics"; sourceTree = "<group>"; }; - FFFBc344fc407fb7c344fc40 /* Dynamics Source */ = { + FFFBfaf055d07fbcfaf055d0 /* Dynamics Source */ = { isa = PBXGroup; children = ( - FFFDc38106007fb7c3810600 /* DyArticulation.cpp */, - FFFDc38106687fb7c3810668 /* DyArticulationContactPrep.cpp */, - FFFDc38106d07fb7c38106d0 /* DyArticulationContactPrepPF.cpp */, - FFFDc38107387fb7c3810738 /* DyArticulationHelper.cpp */, - FFFDc38107a07fb7c38107a0 /* DyArticulationSIMD.cpp */, - FFFDc38108087fb7c3810808 /* DyArticulationScalar.cpp */, - FFFDc38108707fb7c3810870 /* DyConstraintPartition.cpp */, - FFFDc38108d87fb7c38108d8 /* DyConstraintSetup.cpp */, - FFFDc38109407fb7c3810940 /* DyConstraintSetupBlock.cpp */, - FFFDc38109a87fb7c38109a8 /* DyContactPrep.cpp */, - FFFDc3810a107fb7c3810a10 /* DyContactPrep4.cpp */, - FFFDc3810a787fb7c3810a78 /* DyContactPrep4PF.cpp */, - FFFDc3810ae07fb7c3810ae0 /* DyContactPrepPF.cpp */, - FFFDc3810b487fb7c3810b48 /* DyDynamics.cpp */, - FFFDc3810bb07fb7c3810bb0 /* DyFrictionCorrelation.cpp */, - FFFDc3810c187fb7c3810c18 /* DyRigidBodyToSolverBody.cpp */, - FFFDc3810c807fb7c3810c80 /* DySolverConstraints.cpp */, - FFFDc3810ce87fb7c3810ce8 /* DySolverConstraintsBlock.cpp */, - FFFDc3810d507fb7c3810d50 /* DySolverControl.cpp */, - FFFDc3810db87fb7c3810db8 /* DySolverControlPF.cpp */, - FFFDc3810e207fb7c3810e20 /* DySolverPFConstraints.cpp */, - FFFDc3810e887fb7c3810e88 /* DySolverPFConstraintsBlock.cpp */, - FFFDc3810ef07fb7c3810ef0 /* DyThreadContext.cpp */, - FFFDc3810f587fb7c3810f58 /* DyThresholdTable.cpp */, + FFFDfb820e007fbcfb820e00 /* DyArticulation.cpp */, + FFFDfb820e687fbcfb820e68 /* DyArticulationContactPrep.cpp */, + FFFDfb820ed07fbcfb820ed0 /* DyArticulationContactPrepPF.cpp */, + FFFDfb820f387fbcfb820f38 /* DyArticulationHelper.cpp */, + FFFDfb820fa07fbcfb820fa0 /* DyArticulationSIMD.cpp */, + FFFDfb8210087fbcfb821008 /* DyArticulationScalar.cpp */, + FFFDfb8210707fbcfb821070 /* DyConstraintPartition.cpp */, + FFFDfb8210d87fbcfb8210d8 /* DyConstraintSetup.cpp */, + FFFDfb8211407fbcfb821140 /* DyConstraintSetupBlock.cpp */, + FFFDfb8211a87fbcfb8211a8 /* DyContactPrep.cpp */, + FFFDfb8212107fbcfb821210 /* DyContactPrep4.cpp */, + FFFDfb8212787fbcfb821278 /* DyContactPrep4PF.cpp */, + FFFDfb8212e07fbcfb8212e0 /* DyContactPrepPF.cpp */, + FFFDfb8213487fbcfb821348 /* DyDynamics.cpp */, + FFFDfb8213b07fbcfb8213b0 /* DyFrictionCorrelation.cpp */, + FFFDfb8214187fbcfb821418 /* DyRigidBodyToSolverBody.cpp */, + FFFDfb8214807fbcfb821480 /* DySolverConstraints.cpp */, + FFFDfb8214e87fbcfb8214e8 /* DySolverConstraintsBlock.cpp */, + FFFDfb8215507fbcfb821550 /* DySolverControl.cpp */, + FFFDfb8215b87fbcfb8215b8 /* DySolverControlPF.cpp */, + FFFDfb8216207fbcfb821620 /* DySolverPFConstraints.cpp */, + FFFDfb8216887fbcfb821688 /* DySolverPFConstraintsBlock.cpp */, + FFFDfb8216f07fbcfb8216f0 /* DyThreadContext.cpp */, + FFFDfb8217587fbcfb821758 /* DyThresholdTable.cpp */, ); name = "Dynamics Source"; sourceTree = SOURCE_ROOT; }; - FFFBc344fc687fb7c344fc68 /* Dynamics Includes */ = { + FFFBfaf055f87fbcfaf055f8 /* Dynamics Includes */ = { isa = PBXGroup; children = ( - FFFDc344e8d07fb7c344e8d0 /* DyArticulation.h */, - FFFDc344e9387fb7c344e938 /* DyConstraint.h */, - FFFDc344e9a07fb7c344e9a0 /* DyConstraintWriteBack.h */, - FFFDc344ea087fb7c344ea08 /* DyContext.h */, - FFFDc344ea707fb7c344ea70 /* DyGpuAPI.h */, - FFFDc344ead87fb7c344ead8 /* DySleepingConfigulation.h */, - FFFDc344eb407fb7c344eb40 /* DyThresholdTable.h */, + FFFDfaf0b7b07fbcfaf0b7b0 /* DyArticulation.h */, + FFFDfaf0b8187fbcfaf0b818 /* DyConstraint.h */, + FFFDfaf0b8807fbcfaf0b880 /* DyConstraintWriteBack.h */, + FFFDfaf0b8e87fbcfaf0b8e8 /* DyContext.h */, + FFFDfaf0b9507fbcfaf0b950 /* DyGpuAPI.h */, + FFFDfaf0b9b87fbcfaf0b9b8 /* DySleepingConfigulation.h */, + FFFDfaf0ba207fbcfaf0ba20 /* DyThresholdTable.h */, ); name = "Dynamics Includes"; sourceTree = SOURCE_ROOT; }; - FFFBc344fc907fb7c344fc90 /* Dynamics Internal Includes */ = { + FFFBfaf056207fbcfaf05620 /* Dynamics Internal Includes */ = { isa = PBXGroup; children = ( - FFFDc38126007fb7c3812600 /* DyArticulationContactPrep.h */, - FFFDc38126687fb7c3812668 /* DyArticulationFnsDebug.h */, - FFFDc38126d07fb7c38126d0 /* DyArticulationFnsScalar.h */, - FFFDc38127387fb7c3812738 /* DyArticulationFnsSimd.h */, - FFFDc38127a07fb7c38127a0 /* DyArticulationHelper.h */, - FFFDc38128087fb7c3812808 /* DyArticulationPImpl.h */, - FFFDc38128707fb7c3812870 /* DyArticulationReference.h */, - FFFDc38128d87fb7c38128d8 /* DyArticulationScalar.h */, - FFFDc38129407fb7c3812940 /* DyArticulationUtils.h */, - FFFDc38129a87fb7c38129a8 /* DyBodyCoreIntegrator.h */, - FFFDc3812a107fb7c3812a10 /* DyConstraintPartition.h */, - FFFDc3812a787fb7c3812a78 /* DyConstraintPrep.h */, - FFFDc3812ae07fb7c3812ae0 /* DyContactPrep.h */, - FFFDc3812b487fb7c3812b48 /* DyContactPrepShared.h */, - FFFDc3812bb07fb7c3812bb0 /* DyContactReduction.h */, - FFFDc3812c187fb7c3812c18 /* DyCorrelationBuffer.h */, - FFFDc3812c807fb7c3812c80 /* DyDynamics.h */, - FFFDc3812ce87fb7c3812ce8 /* DyFrictionPatch.h */, - FFFDc3812d507fb7c3812d50 /* DyFrictionPatchStreamPair.h */, - FFFDc3812db87fb7c3812db8 /* DySolverBody.h */, - FFFDc3812e207fb7c3812e20 /* DySolverConstraint1D.h */, - FFFDc3812e887fb7c3812e88 /* DySolverConstraint1D4.h */, - FFFDc3812ef07fb7c3812ef0 /* DySolverConstraintDesc.h */, - FFFDc3812f587fb7c3812f58 /* DySolverConstraintExtShared.h */, - FFFDc3812fc07fb7c3812fc0 /* DySolverConstraintTypes.h */, - FFFDc38130287fb7c3813028 /* DySolverConstraintsShared.h */, - FFFDc38130907fb7c3813090 /* DySolverContact.h */, - FFFDc38130f87fb7c38130f8 /* DySolverContact4.h */, - FFFDc38131607fb7c3813160 /* DySolverContactPF.h */, - FFFDc38131c87fb7c38131c8 /* DySolverContactPF4.h */, - FFFDc38132307fb7c3813230 /* DySolverContext.h */, - FFFDc38132987fb7c3813298 /* DySolverControl.h */, - FFFDc38133007fb7c3813300 /* DySolverControlPF.h */, - FFFDc38133687fb7c3813368 /* DySolverCore.h */, - FFFDc38133d07fb7c38133d0 /* DySolverExt.h */, - FFFDc38134387fb7c3813438 /* DySpatial.h */, - FFFDc38134a07fb7c38134a0 /* DyThreadContext.h */, + FFFDfb8220007fbcfb822000 /* DyArticulationContactPrep.h */, + FFFDfb8220687fbcfb822068 /* DyArticulationFnsDebug.h */, + FFFDfb8220d07fbcfb8220d0 /* DyArticulationFnsScalar.h */, + FFFDfb8221387fbcfb822138 /* DyArticulationFnsSimd.h */, + FFFDfb8221a07fbcfb8221a0 /* DyArticulationHelper.h */, + FFFDfb8222087fbcfb822208 /* DyArticulationPImpl.h */, + FFFDfb8222707fbcfb822270 /* DyArticulationReference.h */, + FFFDfb8222d87fbcfb8222d8 /* DyArticulationScalar.h */, + FFFDfb8223407fbcfb822340 /* DyArticulationUtils.h */, + FFFDfb8223a87fbcfb8223a8 /* DyBodyCoreIntegrator.h */, + FFFDfb8224107fbcfb822410 /* DyConstraintPartition.h */, + FFFDfb8224787fbcfb822478 /* DyConstraintPrep.h */, + FFFDfb8224e07fbcfb8224e0 /* DyContactPrep.h */, + FFFDfb8225487fbcfb822548 /* DyContactPrepShared.h */, + FFFDfb8225b07fbcfb8225b0 /* DyContactReduction.h */, + FFFDfb8226187fbcfb822618 /* DyCorrelationBuffer.h */, + FFFDfb8226807fbcfb822680 /* DyDynamics.h */, + FFFDfb8226e87fbcfb8226e8 /* DyFrictionPatch.h */, + FFFDfb8227507fbcfb822750 /* DyFrictionPatchStreamPair.h */, + FFFDfb8227b87fbcfb8227b8 /* DySolverBody.h */, + FFFDfb8228207fbcfb822820 /* DySolverConstraint1D.h */, + FFFDfb8228887fbcfb822888 /* DySolverConstraint1D4.h */, + FFFDfb8228f07fbcfb8228f0 /* DySolverConstraintDesc.h */, + FFFDfb8229587fbcfb822958 /* DySolverConstraintExtShared.h */, + FFFDfb8229c07fbcfb8229c0 /* DySolverConstraintTypes.h */, + FFFDfb822a287fbcfb822a28 /* DySolverConstraintsShared.h */, + FFFDfb822a907fbcfb822a90 /* DySolverContact.h */, + FFFDfb822af87fbcfb822af8 /* DySolverContact4.h */, + FFFDfb822b607fbcfb822b60 /* DySolverContactPF.h */, + FFFDfb822bc87fbcfb822bc8 /* DySolverContactPF4.h */, + FFFDfb822c307fbcfb822c30 /* DySolverContext.h */, + FFFDfb822c987fbcfb822c98 /* DySolverControl.h */, + FFFDfb822d007fbcfb822d00 /* DySolverControlPF.h */, + FFFDfb822d687fbcfb822d68 /* DySolverCore.h */, + FFFDfb822dd07fbcfb822dd0 /* DySolverExt.h */, + FFFDfb822e387fbcfb822e38 /* DySpatial.h */, + FFFDfb822ea07fbcfb822ea0 /* DyThreadContext.h */, ); name = "Dynamics Internal Includes"; sourceTree = SOURCE_ROOT; }; - FFFBc812c3507fb7c812c350 /* LowLevelCloth */ = { + FFFBfab48c407fbcfab48c40 /* LowLevelCloth */ = { isa = PBXGroup; children = ( - FFFBc3652c007fb7c3652c00 /* include */, - FFFBc3652c287fb7c3652c28 /* src */, + FFFBfab5b9807fbcfab5b980 /* include */, + FFFBfab5b9a87fbcfab5b9a8 /* src */, ); name = "LowLevelCloth"; sourceTree = "<group>"; }; - FFFBc3652c007fb7c3652c00 /* include */ = { + FFFBfab5b9807fbcfab5b980 /* include */ = { isa = PBXGroup; children = ( - FFFDc36545b07fb7c36545b0 /* Cloth.h */, - FFFDc36546187fb7c3654618 /* Fabric.h */, - FFFDc36546807fb7c3654680 /* Factory.h */, - FFFDc36546e87fb7c36546e8 /* PhaseConfig.h */, - FFFDc36547507fb7c3654750 /* Range.h */, - FFFDc36547b87fb7c36547b8 /* Solver.h */, - FFFDc36548207fb7c3654820 /* Types.h */, + FFFDfab60ea07fbcfab60ea0 /* Cloth.h */, + FFFDfab60f087fbcfab60f08 /* Fabric.h */, + FFFDfab60f707fbcfab60f70 /* Factory.h */, + FFFDfab60fd87fbcfab60fd8 /* PhaseConfig.h */, + FFFDfab610407fbcfab61040 /* Range.h */, + FFFDfab610a87fbcfab610a8 /* Solver.h */, + FFFDfab611107fbcfab61110 /* Types.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc3652c287fb7c3652c28 /* src */ = { + FFFBfab5b9a87fbcfab5b9a8 /* src */ = { isa = PBXGroup; children = ( - FFFDc6007e007fb7c6007e00 /* Allocator.h */, - FFFDc6007e687fb7c6007e68 /* Array.h */, - FFFDc6007ed07fb7c6007ed0 /* BoundingBox.h */, - FFFDc6007f387fb7c6007f38 /* ClothBase.h */, - FFFDc6007fa07fb7c6007fa0 /* ClothImpl.h */, - FFFDc60080087fb7c6008008 /* IndexPair.h */, - FFFDc60080707fb7c6008070 /* IterationState.h */, - FFFDc60080d87fb7c60080d8 /* MovingAverage.h */, - FFFDc60081407fb7c6008140 /* PointInterpolator.h */, - FFFDc60081a87fb7c60081a8 /* Simd.h */, - FFFDc60082107fb7c6008210 /* StackAllocator.h */, - FFFDc60082787fb7c6008278 /* SwCloth.h */, - FFFDc60082e07fb7c60082e0 /* SwClothData.h */, - FFFDc60083487fb7c6008348 /* SwCollision.h */, - FFFDc60083b07fb7c60083b0 /* SwCollisionHelpers.h */, - FFFDc60084187fb7c6008418 /* SwFabric.h */, - FFFDc60084807fb7c6008480 /* SwFactory.h */, - FFFDc60084e87fb7c60084e8 /* SwInterCollision.h */, - FFFDc60085507fb7c6008550 /* SwSelfCollision.h */, - FFFDc60085b87fb7c60085b8 /* SwSolver.h */, - FFFDc60086207fb7c6008620 /* SwSolverKernel.h */, - FFFDc60086887fb7c6008688 /* TripletScheduler.h */, - FFFDc60086f07fb7c60086f0 /* Vec4T.h */, - FFFDc60087587fb7c6008758 /* Allocator.cpp */, - FFFDc60087c07fb7c60087c0 /* Factory.cpp */, - FFFDc60088287fb7c6008828 /* PhaseConfig.cpp */, - FFFDc60088907fb7c6008890 /* SwCloth.cpp */, - FFFDc60088f87fb7c60088f8 /* SwClothData.cpp */, - FFFDc60089607fb7c6008960 /* SwCollision.cpp */, - FFFDc60089c87fb7c60089c8 /* SwFabric.cpp */, - FFFDc6008a307fb7c6008a30 /* SwFactory.cpp */, - FFFDc6008a987fb7c6008a98 /* SwInterCollision.cpp */, - FFFDc6008b007fb7c6008b00 /* SwSelfCollision.cpp */, - FFFDc6008b687fb7c6008b68 /* SwSolver.cpp */, - FFFDc6008bd07fb7c6008bd0 /* SwSolverKernel.cpp */, - FFFDc6008c387fb7c6008c38 /* TripletScheduler.cpp */, + FFFDfa1d02007fbcfa1d0200 /* Allocator.h */, + FFFDfa1d02687fbcfa1d0268 /* Array.h */, + FFFDfa1d02d07fbcfa1d02d0 /* BoundingBox.h */, + FFFDfa1d03387fbcfa1d0338 /* ClothBase.h */, + FFFDfa1d03a07fbcfa1d03a0 /* ClothImpl.h */, + FFFDfa1d04087fbcfa1d0408 /* IndexPair.h */, + FFFDfa1d04707fbcfa1d0470 /* IterationState.h */, + FFFDfa1d04d87fbcfa1d04d8 /* MovingAverage.h */, + FFFDfa1d05407fbcfa1d0540 /* PointInterpolator.h */, + FFFDfa1d05a87fbcfa1d05a8 /* Simd.h */, + FFFDfa1d06107fbcfa1d0610 /* StackAllocator.h */, + FFFDfa1d06787fbcfa1d0678 /* SwCloth.h */, + FFFDfa1d06e07fbcfa1d06e0 /* SwClothData.h */, + FFFDfa1d07487fbcfa1d0748 /* SwCollision.h */, + FFFDfa1d07b07fbcfa1d07b0 /* SwCollisionHelpers.h */, + FFFDfa1d08187fbcfa1d0818 /* SwFabric.h */, + FFFDfa1d08807fbcfa1d0880 /* SwFactory.h */, + FFFDfa1d08e87fbcfa1d08e8 /* SwInterCollision.h */, + FFFDfa1d09507fbcfa1d0950 /* SwSelfCollision.h */, + FFFDfa1d09b87fbcfa1d09b8 /* SwSolver.h */, + FFFDfa1d0a207fbcfa1d0a20 /* SwSolverKernel.h */, + FFFDfa1d0a887fbcfa1d0a88 /* TripletScheduler.h */, + FFFDfa1d0af07fbcfa1d0af0 /* Vec4T.h */, + FFFDfa1d0b587fbcfa1d0b58 /* Allocator.cpp */, + FFFDfa1d0bc07fbcfa1d0bc0 /* Factory.cpp */, + FFFDfa1d0c287fbcfa1d0c28 /* PhaseConfig.cpp */, + FFFDfa1d0c907fbcfa1d0c90 /* SwCloth.cpp */, + FFFDfa1d0cf87fbcfa1d0cf8 /* SwClothData.cpp */, + FFFDfa1d0d607fbcfa1d0d60 /* SwCollision.cpp */, + FFFDfa1d0dc87fbcfa1d0dc8 /* SwFabric.cpp */, + FFFDfa1d0e307fbcfa1d0e30 /* SwFactory.cpp */, + FFFDfa1d0e987fbcfa1d0e98 /* SwInterCollision.cpp */, + FFFDfa1d0f007fbcfa1d0f00 /* SwSelfCollision.cpp */, + FFFDfa1d0f687fbcfa1d0f68 /* SwSolver.cpp */, + FFFDfa1d0fd07fbcfa1d0fd0 /* SwSolverKernel.cpp */, + FFFDfa1d10387fbcfa1d1038 /* TripletScheduler.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc80807f07fb7c80807f0 /* LowLevelParticles */ = { + FFFBfc003cb07fbcfc003cb0 /* LowLevelParticles */ = { isa = PBXGroup; children = ( - FFFBc804f9907fb7c804f990 /* include */, - FFFBc804f9b87fb7c804f9b8 /* src */, + FFFBfc0058307fbcfc005830 /* include */, + FFFBfc0058587fbcfc005858 /* src */, ); name = "LowLevelParticles"; sourceTree = "<group>"; }; - FFFBc804f9907fb7c804f990 /* include */ = { + FFFBfc0058307fbcfc005830 /* include */ = { isa = PBXGroup; children = ( - FFFDc5893e007fb7c5893e00 /* PtBodyTransformVault.h */, - FFFDc5893e687fb7c5893e68 /* PtContext.h */, - FFFDc5893ed07fb7c5893ed0 /* PtGridCellVector.h */, - FFFDc5893f387fb7c5893f38 /* PtParticle.h */, - FFFDc5893fa07fb7c5893fa0 /* PtParticleContactManagerStream.h */, - FFFDc58940087fb7c5894008 /* PtParticleData.h */, - FFFDc58940707fb7c5894070 /* PtParticleShape.h */, - FFFDc58940d87fb7c58940d8 /* PtParticleSystemCore.h */, - FFFDc58941407fb7c5894140 /* PtParticleSystemFlags.h */, - FFFDc58941a87fb7c58941a8 /* PtParticleSystemSim.h */, + FFFDfc802e007fbcfc802e00 /* PtBodyTransformVault.h */, + FFFDfc802e687fbcfc802e68 /* PtContext.h */, + FFFDfc802ed07fbcfc802ed0 /* PtGridCellVector.h */, + FFFDfc802f387fbcfc802f38 /* PtParticle.h */, + FFFDfc802fa07fbcfc802fa0 /* PtParticleContactManagerStream.h */, + FFFDfc8030087fbcfc803008 /* PtParticleData.h */, + FFFDfc8030707fbcfc803070 /* PtParticleShape.h */, + FFFDfc8030d87fbcfc8030d8 /* PtParticleSystemCore.h */, + FFFDfc8031407fbcfc803140 /* PtParticleSystemFlags.h */, + FFFDfc8031a87fbcfc8031a8 /* PtParticleSystemSim.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc804f9b87fb7c804f9b8 /* src */ = { + FFFBfc0058587fbcfc005858 /* src */ = { isa = PBXGroup; children = ( - FFFDc600b6007fb7c600b600 /* PtBatcher.h */, - FFFDc600b6687fb7c600b668 /* PtCollision.h */, - FFFDc600b6d07fb7c600b6d0 /* PtCollisionData.h */, - FFFDc600b7387fb7c600b738 /* PtCollisionHelper.h */, - FFFDc600b7a07fb7c600b7a0 /* PtCollisionMethods.h */, - FFFDc600b8087fb7c600b808 /* PtCollisionParameters.h */, - FFFDc600b8707fb7c600b870 /* PtConfig.h */, - FFFDc600b8d87fb7c600b8d8 /* PtConstants.h */, - FFFDc600b9407fb7c600b940 /* PtContextCpu.h */, - FFFDc600b9a87fb7c600b9a8 /* PtDynamicHelper.h */, - FFFDc600ba107fb7c600ba10 /* PtDynamics.h */, - FFFDc600ba787fb7c600ba78 /* PtDynamicsKernels.h */, - FFFDc600bae07fb7c600bae0 /* PtDynamicsParameters.h */, - FFFDc600bb487fb7c600bb48 /* PtDynamicsTempBuffers.h */, - FFFDc600bbb07fb7c600bbb0 /* PtHeightFieldAabbTest.h */, - FFFDc600bc187fb7c600bc18 /* PtPacketSections.h */, - FFFDc600bc807fb7c600bc80 /* PtParticleCell.h */, - FFFDc600bce87fb7c600bce8 /* PtParticleOpcodeCache.h */, - FFFDc600bd507fb7c600bd50 /* PtParticleShapeCpu.h */, - FFFDc600bdb87fb7c600bdb8 /* PtParticleSystemSimCpu.h */, - FFFDc600be207fb7c600be20 /* PtSpatialHash.h */, - FFFDc600be887fb7c600be88 /* PtSpatialHashHelper.h */, - FFFDc600bef07fb7c600bef0 /* PtTwoWayData.h */, - FFFDc600bf587fb7c600bf58 /* PtBatcher.cpp */, - FFFDc600bfc07fb7c600bfc0 /* PtBodyTransformVault.cpp */, - FFFDc600c0287fb7c600c028 /* PtCollision.cpp */, - FFFDc600c0907fb7c600c090 /* PtCollisionBox.cpp */, - FFFDc600c0f87fb7c600c0f8 /* PtCollisionCapsule.cpp */, - FFFDc600c1607fb7c600c160 /* PtCollisionConvex.cpp */, - FFFDc600c1c87fb7c600c1c8 /* PtCollisionMesh.cpp */, - FFFDc600c2307fb7c600c230 /* PtCollisionPlane.cpp */, - FFFDc600c2987fb7c600c298 /* PtCollisionSphere.cpp */, - FFFDc600c3007fb7c600c300 /* PtContextCpu.cpp */, - FFFDc600c3687fb7c600c368 /* PtDynamics.cpp */, - FFFDc600c3d07fb7c600c3d0 /* PtParticleData.cpp */, - FFFDc600c4387fb7c600c438 /* PtParticleShapeCpu.cpp */, - FFFDc600c4a07fb7c600c4a0 /* PtParticleSystemSimCpu.cpp */, - FFFDc600c5087fb7c600c508 /* PtSpatialHash.cpp */, - FFFDc600c5707fb7c600c570 /* PtSpatialLocalHash.cpp */, + FFFDfc808e007fbcfc808e00 /* PtBatcher.h */, + FFFDfc808e687fbcfc808e68 /* PtCollision.h */, + FFFDfc808ed07fbcfc808ed0 /* PtCollisionData.h */, + FFFDfc808f387fbcfc808f38 /* PtCollisionHelper.h */, + FFFDfc808fa07fbcfc808fa0 /* PtCollisionMethods.h */, + FFFDfc8090087fbcfc809008 /* PtCollisionParameters.h */, + FFFDfc8090707fbcfc809070 /* PtConfig.h */, + FFFDfc8090d87fbcfc8090d8 /* PtConstants.h */, + FFFDfc8091407fbcfc809140 /* PtContextCpu.h */, + FFFDfc8091a87fbcfc8091a8 /* PtDynamicHelper.h */, + FFFDfc8092107fbcfc809210 /* PtDynamics.h */, + FFFDfc8092787fbcfc809278 /* PtDynamicsKernels.h */, + FFFDfc8092e07fbcfc8092e0 /* PtDynamicsParameters.h */, + FFFDfc8093487fbcfc809348 /* PtDynamicsTempBuffers.h */, + FFFDfc8093b07fbcfc8093b0 /* PtHeightFieldAabbTest.h */, + FFFDfc8094187fbcfc809418 /* PtPacketSections.h */, + FFFDfc8094807fbcfc809480 /* PtParticleCell.h */, + FFFDfc8094e87fbcfc8094e8 /* PtParticleOpcodeCache.h */, + FFFDfc8095507fbcfc809550 /* PtParticleShapeCpu.h */, + FFFDfc8095b87fbcfc8095b8 /* PtParticleSystemSimCpu.h */, + FFFDfc8096207fbcfc809620 /* PtSpatialHash.h */, + FFFDfc8096887fbcfc809688 /* PtSpatialHashHelper.h */, + FFFDfc8096f07fbcfc8096f0 /* PtTwoWayData.h */, + FFFDfc8097587fbcfc809758 /* PtBatcher.cpp */, + FFFDfc8097c07fbcfc8097c0 /* PtBodyTransformVault.cpp */, + FFFDfc8098287fbcfc809828 /* PtCollision.cpp */, + FFFDfc8098907fbcfc809890 /* PtCollisionBox.cpp */, + FFFDfc8098f87fbcfc8098f8 /* PtCollisionCapsule.cpp */, + FFFDfc8099607fbcfc809960 /* PtCollisionConvex.cpp */, + FFFDfc8099c87fbcfc8099c8 /* PtCollisionMesh.cpp */, + FFFDfc809a307fbcfc809a30 /* PtCollisionPlane.cpp */, + FFFDfc809a987fbcfc809a98 /* PtCollisionSphere.cpp */, + FFFDfc809b007fbcfc809b00 /* PtContextCpu.cpp */, + FFFDfc809b687fbcfc809b68 /* PtDynamics.cpp */, + FFFDfc809bd07fbcfc809bd0 /* PtParticleData.cpp */, + FFFDfc809c387fbcfc809c38 /* PtParticleShapeCpu.cpp */, + FFFDfc809ca07fbcfc809ca0 /* PtParticleSystemSimCpu.cpp */, + FFFDfc809d087fbcfc809d08 /* PtSpatialHash.cpp */, + FFFDfc809d707fbcfc809d70 /* PtSpatialLocalHash.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc3662bc07fb7c3662bc0 /* PxTask */ = { + FFFBfc2149407fbcfc214940 /* PxTask */ = { isa = PBXGroup; children = ( - FFFBc36631c07fb7c36631c0 /* include */, - FFFBc36631e87fb7c36631e8 /* src */, + FFFBfc214d007fbcfc214d00 /* include */, + FFFBfc214d287fbcfc214d28 /* src */, ); name = "PxTask"; sourceTree = "<group>"; }; - FFFBc36631c07fb7c36631c0 /* include */ = { + FFFBfc214d007fbcfc214d00 /* include */ = { isa = PBXGroup; children = ( - FFFDc367e7607fb7c367e760 /* PxCpuDispatcher.h */, - FFFDc367e7c87fb7c367e7c8 /* PxGpuDispatcher.h */, - FFFDc367e8307fb7c367e830 /* PxGpuTask.h */, - FFFDc367e8987fb7c367e898 /* PxTask.h */, - FFFDc367e9007fb7c367e900 /* PxTaskDefine.h */, - FFFDc367e9687fb7c367e968 /* PxTaskManager.h */, + FFFDfc212e807fbcfc212e80 /* PxCpuDispatcher.h */, + FFFDfc212ee87fbcfc212ee8 /* PxGpuDispatcher.h */, + FFFDfc212f507fbcfc212f50 /* PxGpuTask.h */, + FFFDfc212fb87fbcfc212fb8 /* PxTask.h */, + FFFDfc2130207fbcfc213020 /* PxTaskDefine.h */, + FFFDfc2130887fbcfc213088 /* PxTaskManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc36631e87fb7c36631e8 /* src */ = { + FFFBfc214d287fbcfc214d28 /* src */ = { isa = PBXGroup; children = ( - FFFDc367e0207fb7c367e020 /* src/TaskManager.cpp */, + FFFDfc2128307fbcfc212830 /* src/TaskManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc4b829a07fb7c4b829a0 /* PsFastXml */ = { + FFFBfc0657b07fbcfc0657b0 /* PsFastXml */ = { isa = PBXGroup; children = ( - FFFBc4b82f707fb7c4b82f70 /* include */, - FFFBc4b82f987fb7c4b82f98 /* src */, + FFFBfc065d107fbcfc065d10 /* include */, + FFFBfc065d387fbcfc065d38 /* src */, ); name = "PsFastXml"; sourceTree = "<group>"; }; - FFFBc4b82f707fb7c4b82f70 /* include */ = { + FFFBfc065d107fbcfc065d10 /* include */ = { isa = PBXGroup; children = ( - FFFDc4b819807fb7c4b81980 /* PsFastXml.h */, + FFFDfc065ea07fbcfc065ea0 /* PsFastXml.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc4b82f987fb7c4b82f98 /* src */ = { + FFFBfc065d387fbcfc065d38 /* src */ = { isa = PBXGroup; children = ( - FFFDc4b81a807fb7c4b81a80 /* PsFastXml.cpp */, + FFFDfc065fa07fbcfc065fa0 /* PsFastXml.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; @@ -4991,61 +4991,61 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - FFFAc4e60af07fb7c4e60af0 /* PhysX */ = { + FFFAfc0690807fbcfc069080 /* PhysX */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c4e60af07fb7c4e60af0 /* Build configuration list for PBXNativeTarget "PhysX" */; + buildConfigurationList = FFF6fc0690807fbcfc069080 /* Build configuration list for PBXNativeTarget "PhysX" */; buildPhases = ( - FFF2c4e60af07fb7c4e60af0, - FFF8c4e60af07fb7c4e60af0, - FFFCc4e60af07fb7c4e60af0, + FFF2fc0690807fbcfc069080, + FFF8fc0690807fbcfc069080, + FFFCfc0690807fbcfc069080, ); buildRules = ( ); dependencies = ( - FFF4c34395207fb7c3439520, /* LowLevel */ - FFF4c34395807fb7c3439580, /* LowLevelAABB */ - FFF4c34348507fb7c3434850, /* LowLevelCloth */ - FFF4c34100407fb7c3410040, /* LowLevelDynamics */ - FFF4c34348b07fb7c34348b0, /* LowLevelParticles */ - FFF4c3435fb07fb7c3435fb0, /* PhysXCommon */ - FFF4c4e60f207fb7c4e60f20, /* PxFoundation */ - FFF4c4e57cd07fb7c4e57cd0, /* PxPvdSDK */ - FFF4c34349a07fb7c34349a0, /* PxTask */ - FFF4c34349107fb7c3434910, /* SceneQuery */ - FFF4c34349707fb7c3434970, /* SimulationController */ + FFF4fc0721c07fbcfc0721c0, /* LowLevel */ + FFF4fc0727407fbcfc072740, /* LowLevelAABB */ + FFF4fc0716c07fbcfc0716c0, /* LowLevelCloth */ + FFF4fc0727a07fbcfc0727a0, /* LowLevelDynamics */ + FFF4fc0d6b507fbcfc0d6b50, /* LowLevelParticles */ + FFF4fc0750707fbcfc075070, /* PhysXCommon */ + FFF4fc0693707fbcfc069370, /* PxFoundation */ + FFF4fc0690207fbcfc069020, /* PxPvdSDK */ + FFF4fc0e5aa07fbcfc0e5aa0, /* PxTask */ + FFF4fc0d6bb07fbcfc0d6bb0, /* SceneQuery */ + FFF4fc0e5a707fbcfc0e5a70, /* SimulationController */ ); name = "PhysX"; productName = "PhysX"; - productReference = FFFDc4e60af07fb7c4e60af0 /* PhysX */; + productReference = FFFDfc0690807fbcfc069080 /* PhysX */; productType = "com.apple.product-type.library.static"; }; - FFFAc342d6907fb7c342d690 /* PhysXCharacterKinematic */ = { + FFFAfc0717b07fbcfc0717b0 /* PhysXCharacterKinematic */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c342d6907fb7c342d690 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; + buildConfigurationList = FFF6fc0717b07fbcfc0717b0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; buildPhases = ( - FFF2c342d6907fb7c342d690, - FFF8c342d6907fb7c342d690, - FFFCc342d6907fb7c342d690, + FFF2fc0717b07fbcfc0717b0, + FFF8fc0717b07fbcfc0717b0, + FFFCfc0717b07fbcfc0717b0, ); buildRules = ( ); dependencies = ( - FFF4c36806f07fb7c36806f0, /* PhysXCommon */ - FFF4c36803507fb7c3680350, /* PhysXExtensions */ - FFF4c36813407fb7c3681340, /* PxFoundation */ + FFF4fc0760107fbcfc076010, /* PhysXCommon */ + FFF4fc0e71107fbcfc0e7110, /* PhysXExtensions */ + FFF4fc0733907fbcfc073390, /* PxFoundation */ ); name = "PhysXCharacterKinematic"; productName = "PhysXCharacterKinematic"; - productReference = FFFDc342d6907fb7c342d690 /* PhysXCharacterKinematic */; + productReference = FFFDfc0717b07fbcfc0717b0 /* PhysXCharacterKinematic */; productType = "com.apple.product-type.library.static"; }; - FFFAc36831307fb7c3683130 /* PhysXVehicle */ = { + FFFAfc0771907fbcfc077190 /* PhysXVehicle */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c36831307fb7c3683130 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; + buildConfigurationList = FFF6fc0771907fbcfc077190 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; buildPhases = ( - FFF2c36831307fb7c3683130, - FFF8c36831307fb7c3683130, - FFFCc36831307fb7c3683130, + FFF2fc0771907fbcfc077190, + FFF8fc0771907fbcfc077190, + FFFCfc0771907fbcfc077190, ); buildRules = ( ); @@ -5053,34 +5053,34 @@ ); name = "PhysXVehicle"; productName = "PhysXVehicle"; - productReference = FFFDc36831307fb7c3683130 /* PhysXVehicle */; + productReference = FFFDfc0771907fbcfc077190 /* PhysXVehicle */; productType = "com.apple.product-type.library.static"; }; - FFFAc80a0d007fb7c80a0d00 /* PhysXExtensions */ = { + FFFAfc0c74907fbcfc0c7490 /* PhysXExtensions */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c80a0d007fb7c80a0d00 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; + buildConfigurationList = FFF6fc0c74907fbcfc0c7490 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; buildPhases = ( - FFF2c80a0d007fb7c80a0d00, - FFF8c80a0d007fb7c80a0d00, - FFFCc80a0d007fb7c80a0d00, + FFF2fc0c74907fbcfc0c7490, + FFF8fc0c74907fbcfc0c7490, + FFFCfc0c74907fbcfc0c7490, ); buildRules = ( ); dependencies = ( - FFF4c80a05c07fb7c80a05c0, /* PsFastXml */ + FFF4fc0c97b07fbcfc0c97b0, /* PsFastXml */ ); name = "PhysXExtensions"; productName = "PhysXExtensions"; - productReference = FFFDc80a0d007fb7c80a0d00 /* PhysXExtensions */; + productReference = FFFDfc0c74907fbcfc0c7490 /* PhysXExtensions */; productType = "com.apple.product-type.library.static"; }; - FFFAc4e529207fb7c4e52920 /* SceneQuery */ = { + FFFAfc0985207fbcfc098520 /* SceneQuery */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c4e529207fb7c4e52920 /* Build configuration list for PBXNativeTarget "SceneQuery" */; + buildConfigurationList = FFF6fc0985207fbcfc098520 /* Build configuration list for PBXNativeTarget "SceneQuery" */; buildPhases = ( - FFF2c4e529207fb7c4e52920, - FFF8c4e529207fb7c4e52920, - FFFCc4e529207fb7c4e52920, + FFF2fc0985207fbcfc098520, + FFF8fc0985207fbcfc098520, + FFFCfc0985207fbcfc098520, ); buildRules = ( ); @@ -5088,16 +5088,16 @@ ); name = "SceneQuery"; productName = "SceneQuery"; - productReference = FFFDc4e529207fb7c4e52920 /* SceneQuery */; + productReference = FFFDfc0985207fbcfc098520 /* SceneQuery */; productType = "com.apple.product-type.library.static"; }; - FFFAc4e56c807fb7c4e56c80 /* SimulationController */ = { + FFFAfc08d4e07fbcfc08d4e0 /* SimulationController */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c4e56c807fb7c4e56c80 /* Build configuration list for PBXNativeTarget "SimulationController" */; + buildConfigurationList = FFF6fc08d4e07fbcfc08d4e0 /* Build configuration list for PBXNativeTarget "SimulationController" */; buildPhases = ( - FFF2c4e56c807fb7c4e56c80, - FFF8c4e56c807fb7c4e56c80, - FFFCc4e56c807fb7c4e56c80, + FFF2fc08d4e07fbcfc08d4e0, + FFF8fc08d4e07fbcfc08d4e0, + FFFCfc08d4e07fbcfc08d4e0, ); buildRules = ( ); @@ -5105,54 +5105,54 @@ ); name = "SimulationController"; productName = "SimulationController"; - productReference = FFFDc4e56c807fb7c4e56c80 /* SimulationController */; + productReference = FFFDfc08d4e07fbcfc08d4e0 /* SimulationController */; productType = "com.apple.product-type.library.static"; }; - FFFAc342e0007fb7c342e000 /* PhysXCooking */ = { + FFFAfc07fd407fbcfc07fd40 /* PhysXCooking */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c342e0007fb7c342e000 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; + buildConfigurationList = FFF6fc07fd407fbcfc07fd40 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; buildPhases = ( - FFF2c342e0007fb7c342e000, - FFF8c342e0007fb7c342e000, - FFFCc342e0007fb7c342e000, + FFF2fc07fd407fbcfc07fd40, + FFF8fc07fd407fbcfc07fd40, + FFFCfc07fd407fbcfc07fd40, ); buildRules = ( ); dependencies = ( - FFF4c4b86cf07fb7c4b86cf0, /* PhysXCommon */ - FFF4c4b86f907fb7c4b86f90, /* PhysXExtensions */ - FFF4c342df307fb7c342df30, /* PxFoundation */ + FFF4fc1bc8107fbcfc1bc810, /* PhysXCommon */ + FFF4fc1bc6b07fbcfc1bc6b0, /* PhysXExtensions */ + FFF4fc0897807fbcfc089780, /* PxFoundation */ ); name = "PhysXCooking"; productName = "PhysXCooking"; - productReference = FFFDc342e0007fb7c342e000 /* PhysXCooking */; + productReference = FFFDfc07fd407fbcfc07fd40 /* PhysXCooking */; productType = "com.apple.product-type.library.static"; }; - FFFAc4b0e1607fb7c4b0e160 /* PhysXCommon */ = { + FFFAfa8913407fbcfa891340 /* PhysXCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c4b0e1607fb7c4b0e160 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; + buildConfigurationList = FFF6fa8913407fbcfa891340 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; buildPhases = ( - FFF2c4b0e1607fb7c4b0e160, - FFF8c4b0e1607fb7c4b0e160, - FFFCc4b0e1607fb7c4b0e160, + FFF2fa8913407fbcfa891340, + FFF8fa8913407fbcfa891340, + FFFCfa8913407fbcfa891340, ); buildRules = ( ); dependencies = ( - FFF4c4b116b07fb7c4b116b0, /* PxFoundation */ + FFF4faaf34f07fbcfaaf34f0, /* PxFoundation */ ); name = "PhysXCommon"; productName = "PhysXCommon"; - productReference = FFFDc4b0e1607fb7c4b0e160 /* PhysXCommon */; + productReference = FFFDfa8913407fbcfa891340 /* PhysXCommon */; productType = "com.apple.product-type.library.static"; }; - FFFAc37144b07fb7c37144b0 /* PxFoundation */ = { + FFFAfa87f5207fbcfa87f520 /* PxFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c37144b07fb7c37144b0 /* Build configuration list for PBXNativeTarget "PxFoundation" */; + buildConfigurationList = FFF6fa87f5207fbcfa87f520 /* Build configuration list for PBXNativeTarget "PxFoundation" */; buildPhases = ( - FFF2c37144b07fb7c37144b0, - FFF8c37144b07fb7c37144b0, - FFFCc37144b07fb7c37144b0, + FFF2fa87f5207fbcfa87f520, + FFF8fa87f5207fbcfa87f520, + FFFCfa87f5207fbcfa87f520, ); buildRules = ( ); @@ -5160,34 +5160,34 @@ ); name = "PxFoundation"; productName = "PxFoundation"; - productReference = FFFDc37144b07fb7c37144b0 /* PxFoundation */; + productReference = FFFDfa87f5207fbcfa87f520 /* PxFoundation */; productType = "com.apple.product-type.library.static"; }; - FFFAc4a2a3107fb7c4a2a310 /* PxPvdSDK */ = { + FFFAfab095c07fbcfab095c0 /* PxPvdSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c4a2a3107fb7c4a2a310 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; + buildConfigurationList = FFF6fab095c07fbcfab095c0 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; buildPhases = ( - FFF2c4a2a3107fb7c4a2a310, - FFF8c4a2a3107fb7c4a2a310, - FFFCc4a2a3107fb7c4a2a310, + FFF2fab095c07fbcfab095c0, + FFF8fab095c07fbcfab095c0, + FFFCfab095c07fbcfab095c0, ); buildRules = ( ); dependencies = ( - FFF4c4f507e07fb7c4f507e0, /* PxFoundation */ + FFF4fa88f5e07fbcfa88f5e0, /* PxFoundation */ ); name = "PxPvdSDK"; productName = "PxPvdSDK"; - productReference = FFFDc4a2a3107fb7c4a2a310 /* PxPvdSDK */; + productReference = FFFDfab095c07fbcfab095c0 /* PxPvdSDK */; productType = "com.apple.product-type.library.static"; }; - FFFAc81162307fb7c8116230 /* LowLevel */ = { + FFFAfab277107fbcfab27710 /* LowLevel */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c81162307fb7c8116230 /* Build configuration list for PBXNativeTarget "LowLevel" */; + buildConfigurationList = FFF6fab277107fbcfab27710 /* Build configuration list for PBXNativeTarget "LowLevel" */; buildPhases = ( - FFF2c81162307fb7c8116230, - FFF8c81162307fb7c8116230, - FFFCc81162307fb7c8116230, + FFF2fab277107fbcfab27710, + FFF8fab277107fbcfab27710, + FFFCfab277107fbcfab27710, ); buildRules = ( ); @@ -5195,16 +5195,16 @@ ); name = "LowLevel"; productName = "LowLevel"; - productReference = FFFDc81162307fb7c8116230 /* LowLevel */; + productReference = FFFDfab277107fbcfab27710 /* LowLevel */; productType = "com.apple.product-type.library.static"; }; - FFFAc811f6607fb7c811f660 /* LowLevelAABB */ = { + FFFAfab514407fbcfab51440 /* LowLevelAABB */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c811f6607fb7c811f660 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; + buildConfigurationList = FFF6fab514407fbcfab51440 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; buildPhases = ( - FFF2c811f6607fb7c811f660, - FFF8c811f6607fb7c811f660, - FFFCc811f6607fb7c811f660, + FFF2fab514407fbcfab51440, + FFF8fab514407fbcfab51440, + FFFCfab514407fbcfab51440, ); buildRules = ( ); @@ -5212,16 +5212,16 @@ ); name = "LowLevelAABB"; productName = "LowLevelAABB"; - productReference = FFFDc811f6607fb7c811f660 /* LowLevelAABB */; + productReference = FFFDfab514407fbcfab51440 /* LowLevelAABB */; productType = "com.apple.product-type.library.static"; }; - FFFAc4a1ce107fb7c4a1ce10 /* LowLevelDynamics */ = { + FFFAfaef20807fbcfaef2080 /* LowLevelDynamics */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c4a1ce107fb7c4a1ce10 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; + buildConfigurationList = FFF6faef20807fbcfaef2080 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; buildPhases = ( - FFF2c4a1ce107fb7c4a1ce10, - FFF8c4a1ce107fb7c4a1ce10, - FFFCc4a1ce107fb7c4a1ce10, + FFF2faef20807fbcfaef2080, + FFF8faef20807fbcfaef2080, + FFFCfaef20807fbcfaef2080, ); buildRules = ( ); @@ -5229,16 +5229,16 @@ ); name = "LowLevelDynamics"; productName = "LowLevelDynamics"; - productReference = FFFDc4a1ce107fb7c4a1ce10 /* LowLevelDynamics */; + productReference = FFFDfaef20807fbcfaef2080 /* LowLevelDynamics */; productType = "com.apple.product-type.library.static"; }; - FFFAc812c3507fb7c812c350 /* LowLevelCloth */ = { + FFFAfab48c407fbcfab48c40 /* LowLevelCloth */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c812c3507fb7c812c350 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; + buildConfigurationList = FFF6fab48c407fbcfab48c40 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; buildPhases = ( - FFF2c812c3507fb7c812c350, - FFF8c812c3507fb7c812c350, - FFFCc812c3507fb7c812c350, + FFF2fab48c407fbcfab48c40, + FFF8fab48c407fbcfab48c40, + FFFCfab48c407fbcfab48c40, ); buildRules = ( ); @@ -5246,16 +5246,16 @@ ); name = "LowLevelCloth"; productName = "LowLevelCloth"; - productReference = FFFDc812c3507fb7c812c350 /* LowLevelCloth */; + productReference = FFFDfab48c407fbcfab48c40 /* LowLevelCloth */; productType = "com.apple.product-type.library.static"; }; - FFFAc80807f07fb7c80807f0 /* LowLevelParticles */ = { + FFFAfc003cb07fbcfc003cb0 /* LowLevelParticles */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c80807f07fb7c80807f0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; + buildConfigurationList = FFF6fc003cb07fbcfc003cb0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; buildPhases = ( - FFF2c80807f07fb7c80807f0, - FFF8c80807f07fb7c80807f0, - FFFCc80807f07fb7c80807f0, + FFF2fc003cb07fbcfc003cb0, + FFF8fc003cb07fbcfc003cb0, + FFFCfc003cb07fbcfc003cb0, ); buildRules = ( ); @@ -5263,16 +5263,16 @@ ); name = "LowLevelParticles"; productName = "LowLevelParticles"; - productReference = FFFDc80807f07fb7c80807f0 /* LowLevelParticles */; + productReference = FFFDfc003cb07fbcfc003cb0 /* LowLevelParticles */; productType = "com.apple.product-type.library.static"; }; - FFFAc3662bc07fb7c3662bc0 /* PxTask */ = { + FFFAfc2149407fbcfc214940 /* PxTask */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c3662bc07fb7c3662bc0 /* Build configuration list for PBXNativeTarget "PxTask" */; + buildConfigurationList = FFF6fc2149407fbcfc214940 /* Build configuration list for PBXNativeTarget "PxTask" */; buildPhases = ( - FFF2c3662bc07fb7c3662bc0, - FFF8c3662bc07fb7c3662bc0, - FFFCc3662bc07fb7c3662bc0, + FFF2fc2149407fbcfc214940, + FFF8fc2149407fbcfc214940, + FFFCfc2149407fbcfc214940, ); buildRules = ( ); @@ -5280,16 +5280,16 @@ ); name = "PxTask"; productName = "PxTask"; - productReference = FFFDc3662bc07fb7c3662bc0 /* PxTask */; + productReference = FFFDfc2149407fbcfc214940 /* PxTask */; productType = "com.apple.product-type.library.static"; }; - FFFAc4b829a07fb7c4b829a0 /* PsFastXml */ = { + FFFAfc0657b07fbcfc0657b0 /* PsFastXml */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c4b829a07fb7c4b829a0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; + buildConfigurationList = FFF6fc0657b07fbcfc0657b0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; buildPhases = ( - FFF2c4b829a07fb7c4b829a0, - FFF8c4b829a07fb7c4b829a0, - FFFCc4b829a07fb7c4b829a0, + FFF2fc0657b07fbcfc0657b0, + FFF8fc0657b07fbcfc0657b0, + FFFCfc0657b07fbcfc0657b0, ); buildRules = ( ); @@ -5297,213 +5297,213 @@ ); name = "PsFastXml"; productName = "PsFastXml"; - productReference = FFFDc4b829a07fb7c4b829a0 /* PsFastXml */; + productReference = FFFDfc0657b07fbcfc0657b0 /* PsFastXml */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin XCConfigurationList section */ - FFF6c4e60af07fb7c4e60af0 = { + FFF6fc0690807fbcfc069080 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c58a34007fb7c58a3400, - FFF7c58a3af07fb7c58a3af0, - FFF7c58a41e07fb7c58a41e0, - FFF7c58a48d07fb7c58a48d0, + FFF7fc8530007fbcfc853000, + FFF7fc8536f07fbcfc8536f0, + FFF7fc853de07fbcfc853de0, + FFF7fc8544d07fbcfc8544d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6c342d6907fb7c342d690 = { + FFF6fc0717b07fbcfc0717b0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c4034a007fb7c4034a00, - FFF7c40350f07fb7c40350f0, - FFF7c40357e07fb7c40357e0, - FFF7c4035ed07fb7c4035ed0, + FFF7fc854c007fbcfc854c00, + FFF7fc8552f07fbcfc8552f0, + FFF7fc8559e07fbcfc8559e0, + FFF7fc8560d07fbcfc8560d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c36831307fb7c3683130 = { + FFF6fc0771907fbcfc077190 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c780c2007fb7c780c200, - FFF7c780c8f07fb7c780c8f0, - FFF7c780cfe07fb7c780cfe0, - FFF7c780d6d07fb7c780d6d0, + FFF7fc8568007fbcfc856800, + FFF7fc856ef07fbcfc856ef0, + FFF7fc8575e07fbcfc8575e0, + FFF7fc857cd07fbcfc857cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c80a0d007fb7c80a0d00 = { + FFF6fc0c74907fbcfc0c7490 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c780ec007fb7c780ec00, - FFF7c780f2f07fb7c780f2f0, - FFF7c780f9e07fb7c780f9e0, - FFF7c78100d07fb7c78100d0, + FFF7fc8584007fbcfc858400, + FFF7fc858af07fbcfc858af0, + FFF7fc8591e07fbcfc8591e0, + FFF7fc8598d07fbcfc8598d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c4e529207fb7c4e52920 = { + FFF6fc0985207fbcfc098520 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c68240007fb7c6824000, - FFF7c68246f07fb7c68246f0, - FFF7c6824de07fb7c6824de0, - FFF7c68254d07fb7c68254d0, + FFF7fc85a0007fbcfc85a000, + FFF7fc85a6f07fbcfc85a6f0, + FFF7fc85ade07fbcfc85ade0, + FFF7fc85b4d07fbcfc85b4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c4e56c807fb7c4e56c80 = { + FFF6fc08d4e07fbcfc08d4e0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c6017e007fb7c6017e00, - FFF7c60184f07fb7c60184f0, - FFF7c6018be07fb7c6018be0, - FFF7c60192d07fb7c60192d0, + FFF7fc85bc007fbcfc85bc00, + FFF7fc85c2f07fbcfc85c2f0, + FFF7fc85c9e07fbcfc85c9e0, + FFF7fc85d0d07fbcfc85d0d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c342e0007fb7c342e000 = { + FFF6fc07fd407fbcfc07fd40 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c78108007fb7c7810800, - FFF7c7810ef07fb7c7810ef0, - FFF7c78115e07fb7c78115e0, - FFF7c7811cd07fb7c7811cd0, + FFF7fc85d8007fbcfc85d800, + FFF7fc85def07fbcfc85def0, + FFF7fc85e5e07fbcfc85e5e0, + FFF7fc85ecd07fbcfc85ecd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6c4b0e1607fb7c4b0e160 = { + FFF6fa8913407fbcfa891340 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c40214007fb7c4021400, - FFF7c4021af07fb7c4021af0, - FFF7c40221e07fb7c40221e0, - FFF7c40228d07fb7c40228d0, + FFF7fb0110007fbcfb011000, + FFF7fb0116f07fbcfb0116f0, + FFF7fb011de07fbcfb011de0, + FFF7fb0124d07fbcfb0124d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6c37144b07fb7c37144b0 = { + FFF6fa87f5207fbcfa87f520 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c380a4007fb7c380a400, - FFF7c380aaf07fb7c380aaf0, - FFF7c380b1e07fb7c380b1e0, - FFF7c380b8d07fb7c380b8d0, + FFF7fa18d2007fbcfa18d200, + FFF7fa18d8f07fbcfa18d8f0, + FFF7fa18dfe07fbcfa18dfe0, + FFF7fa18e6d07fbcfa18e6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c4a2a3107fb7c4a2a310 = { + FFF6fab095c07fbcfab095c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c70148007fb7c7014800, - FFF7c7014ef07fb7c7014ef0, - FFF7c70155e07fb7c70155e0, - FFF7c7015cd07fb7c7015cd0, + FFF7fa1b12007fbcfa1b1200, + FFF7fa1b18f07fbcfa1b18f0, + FFF7fa1b1fe07fbcfa1b1fe0, + FFF7fa1b26d07fbcfa1b26d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c81162307fb7c8116230 = { + FFF6fab277107fbcfab27710 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c78048007fb7c7804800, - FFF7c7804ef07fb7c7804ef0, - FFF7c78055e07fb7c78055e0, - FFF7c7805cd07fb7c7805cd0, + FFF7fa1bf6007fbcfa1bf600, + FFF7fa1bfcf07fbcfa1bfcf0, + FFF7fa1c03e07fbcfa1c03e0, + FFF7fa1c0ad07fbcfa1c0ad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c811f6607fb7c811f660 = { + FFF6fab514407fbcfab51440 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c402c0007fb7c402c000, - FFF7c402c6f07fb7c402c6f0, - FFF7c402cde07fb7c402cde0, - FFF7c402d4d07fb7c402d4d0, + FFF7fa1c82007fbcfa1c8200, + FFF7fa1c88f07fbcfa1c88f0, + FFF7fa1c8fe07fbcfa1c8fe0, + FFF7fa1c96d07fbcfa1c96d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c4a1ce107fb7c4a1ce10 = { + FFF6faef20807fbcfaef2080 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c38140007fb7c3814000, - FFF7c38146f07fb7c38146f0, - FFF7c3814de07fb7c3814de0, - FFF7c38154d07fb7c38154d0, + FFF7fb823a007fbcfb823a00, + FFF7fb8240f07fbcfb8240f0, + FFF7fb8247e07fbcfb8247e0, + FFF7fb824ed07fbcfb824ed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c812c3507fb7c812c350 = { + FFF6fab48c407fbcfab48c40 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c5053c007fb7c5053c00, - FFF7c50542f07fb7c50542f0, - FFF7c50549e07fb7c50549e0, - FFF7c50550d07fb7c50550d0, + FFF7fa1d1c007fbcfa1d1c00, + FFF7fa1d22f07fbcfa1d22f0, + FFF7fa1d29e07fbcfa1d29e0, + FFF7fa1d30d07fbcfa1d30d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c80807f07fb7c80807f0 = { + FFF6fc003cb07fbcfc003cb0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c402fa007fb7c402fa00, - FFF7c40300f07fb7c40300f0, - FFF7c40307e07fb7c40307e0, - FFF7c4030ed07fb7c4030ed0, + FFF7fc80a8007fbcfc80a800, + FFF7fc80aef07fbcfc80aef0, + FFF7fc80b5e07fbcfc80b5e0, + FFF7fc80bcd07fbcfc80bcd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c3662bc07fb7c3662bc0 = { + FFF6fc2149407fbcfc214940 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c60134007fb7c6013400, - FFF7c6013af07fb7c6013af0, - FFF7c60141e07fb7c60141e0, - FFF7c60148d07fb7c60148d0, + FFF7fa1daa007fbcfa1daa00, + FFF7fa1db0f07fbcfa1db0f0, + FFF7fa1db7e07fbcfa1db7e0, + FFF7fa1dbed07fbcfa1dbed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c4b829a07fb7c4b829a0 = { + FFF6fc0657b07fbcfc0657b0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c681fa007fb7c681fa00, - FFF7c68200f07fb7c68200f0, - FFF7c68207e07fb7c68207e0, - FFF7c6820ed07fb7c6820ed0, + FFF7fc82d6007fbcfc82d600, + FFF7fc82dcf07fbcfc82dcf0, + FFF7fc82e3e07fbcfc82e3e0, + FFF7fc82ead07fbcfc82ead0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c341f7207fb7c341f720 = { + FFF6f9c822807fbcf9c82280 = { isa = XCConfigurationList; buildConfigurations = ( - FFF3c58a34007fb7c58a3400 /* release */, - FFF3c58a3af07fb7c58a3af0 /* debug */, - FFF3c58a41e07fb7c58a41e0 /* checked */, - FFF3c58a48d07fb7c58a48d0 /* profile */, + FFF3fc8530007fbcfc853000 /* release */, + FFF3fc8536f07fbcfc8536f0 /* debug */, + FFF3fc853de07fbcfc853de0 /* checked */, + FFF3fc8544d07fbcfc8544d0 /* profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; /* End XCConfigurationList section */ /* Begin XCBuildConfiguration section */ - FFF7c58a34007fb7c58a3400 /* release */ = { + FFF7fc8530007fbcfc853000 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5533,7 +5533,7 @@ }; name = "release"; }; - FFF7c58a3af07fb7c58a3af0 /* debug */ = { + FFF7fc8536f07fbcfc8536f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5563,7 +5563,7 @@ }; name = "debug"; }; - FFF7c58a41e07fb7c58a41e0 /* checked */ = { + FFF7fc853de07fbcfc853de0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5593,7 +5593,7 @@ }; name = "checked"; }; - FFF7c58a48d07fb7c58a48d0 /* profile */ = { + FFF7fc8544d07fbcfc8544d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5623,7 +5623,7 @@ }; name = "profile"; }; - FFF7c4034a007fb7c4034a00 /* debug */ = { + FFF7fc854c007fbcfc854c00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5653,7 +5653,7 @@ }; name = "debug"; }; - FFF7c40350f07fb7c40350f0 /* checked */ = { + FFF7fc8552f07fbcfc8552f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5683,7 +5683,7 @@ }; name = "checked"; }; - FFF7c40357e07fb7c40357e0 /* profile */ = { + FFF7fc8559e07fbcfc8559e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5713,7 +5713,7 @@ }; name = "profile"; }; - FFF7c4035ed07fb7c4035ed0 /* release */ = { + FFF7fc8560d07fbcfc8560d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5743,7 +5743,7 @@ }; name = "release"; }; - FFF7c780c2007fb7c780c200 /* debug */ = { + FFF7fc8568007fbcfc856800 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5773,7 +5773,7 @@ }; name = "debug"; }; - FFF7c780c8f07fb7c780c8f0 /* checked */ = { + FFF7fc856ef07fbcfc856ef0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5803,7 +5803,7 @@ }; name = "checked"; }; - FFF7c780cfe07fb7c780cfe0 /* profile */ = { + FFF7fc8575e07fbcfc8575e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5833,7 +5833,7 @@ }; name = "profile"; }; - FFF7c780d6d07fb7c780d6d0 /* release */ = { + FFF7fc857cd07fbcfc857cd0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5863,7 +5863,7 @@ }; name = "release"; }; - FFF7c780ec007fb7c780ec00 /* debug */ = { + FFF7fc8584007fbcfc858400 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5871,7 +5871,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5893,7 +5893,7 @@ }; name = "debug"; }; - FFF7c780f2f07fb7c780f2f0 /* checked */ = { + FFF7fc858af07fbcfc858af0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5901,7 +5901,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5923,7 +5923,7 @@ }; name = "checked"; }; - FFF7c780f9e07fb7c780f9e0 /* profile */ = { + FFF7fc8591e07fbcfc8591e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5931,7 +5931,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5953,7 +5953,7 @@ }; name = "profile"; }; - FFF7c78100d07fb7c78100d0 /* release */ = { + FFF7fc8598d07fbcfc8598d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5961,7 +5961,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5983,7 +5983,7 @@ }; name = "release"; }; - FFF7c68240007fb7c6824000 /* debug */ = { + FFF7fc85a0007fbcfc85a000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6013,7 +6013,7 @@ }; name = "debug"; }; - FFF7c68246f07fb7c68246f0 /* checked */ = { + FFF7fc85a6f07fbcfc85a6f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6043,7 +6043,7 @@ }; name = "checked"; }; - FFF7c6824de07fb7c6824de0 /* profile */ = { + FFF7fc85ade07fbcfc85ade0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6073,7 +6073,7 @@ }; name = "profile"; }; - FFF7c68254d07fb7c68254d0 /* release */ = { + FFF7fc85b4d07fbcfc85b4d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6103,7 +6103,7 @@ }; name = "release"; }; - FFF7c6017e007fb7c6017e00 /* debug */ = { + FFF7fc85bc007fbcfc85bc00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6133,7 +6133,7 @@ }; name = "debug"; }; - FFF7c60184f07fb7c60184f0 /* checked */ = { + FFF7fc85c2f07fbcfc85c2f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6163,7 +6163,7 @@ }; name = "checked"; }; - FFF7c6018be07fb7c6018be0 /* profile */ = { + FFF7fc85c9e07fbcfc85c9e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6193,7 +6193,7 @@ }; name = "profile"; }; - FFF7c60192d07fb7c60192d0 /* release */ = { + FFF7fc85d0d07fbcfc85d0d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6223,7 +6223,7 @@ }; name = "release"; }; - FFF7c78108007fb7c7810800 /* release */ = { + FFF7fc85d8007fbcfc85d800 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6253,7 +6253,7 @@ }; name = "release"; }; - FFF7c7810ef07fb7c7810ef0 /* debug */ = { + FFF7fc85def07fbcfc85def0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6283,7 +6283,7 @@ }; name = "debug"; }; - FFF7c78115e07fb7c78115e0 /* checked */ = { + FFF7fc85e5e07fbcfc85e5e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6313,7 +6313,7 @@ }; name = "checked"; }; - FFF7c7811cd07fb7c7811cd0 /* profile */ = { + FFF7fc85ecd07fbcfc85ecd0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6343,7 +6343,7 @@ }; name = "profile"; }; - FFF7c40214007fb7c4021400 /* release */ = { + FFF7fb0110007fbcfb011000 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6373,7 +6373,7 @@ }; name = "release"; }; - FFF7c4021af07fb7c4021af0 /* debug */ = { + FFF7fb0116f07fbcfb0116f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6403,7 +6403,7 @@ }; name = "debug"; }; - FFF7c40221e07fb7c40221e0 /* checked */ = { + FFF7fb011de07fbcfb011de0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6433,7 +6433,7 @@ }; name = "checked"; }; - FFF7c40228d07fb7c40228d0 /* profile */ = { + FFF7fb0124d07fbcfb0124d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6463,7 +6463,7 @@ }; name = "profile"; }; - FFF7c380a4007fb7c380a400 /* debug */ = { + FFF7fa18d2007fbcfa18d200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6493,7 +6493,7 @@ }; name = "debug"; }; - FFF7c380aaf07fb7c380aaf0 /* release */ = { + FFF7fa18d8f07fbcfa18d8f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6523,7 +6523,7 @@ }; name = "release"; }; - FFF7c380b1e07fb7c380b1e0 /* checked */ = { + FFF7fa18dfe07fbcfa18dfe0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6553,7 +6553,7 @@ }; name = "checked"; }; - FFF7c380b8d07fb7c380b8d0 /* profile */ = { + FFF7fa18e6d07fbcfa18e6d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6583,7 +6583,7 @@ }; name = "profile"; }; - FFF7c70148007fb7c7014800 /* debug */ = { + FFF7fa1b12007fbcfa1b1200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6613,7 +6613,7 @@ }; name = "debug"; }; - FFF7c7014ef07fb7c7014ef0 /* release */ = { + FFF7fa1b18f07fbcfa1b18f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6643,7 +6643,7 @@ }; name = "release"; }; - FFF7c70155e07fb7c70155e0 /* checked */ = { + FFF7fa1b1fe07fbcfa1b1fe0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6673,7 +6673,7 @@ }; name = "checked"; }; - FFF7c7015cd07fb7c7015cd0 /* profile */ = { + FFF7fa1b26d07fbcfa1b26d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6703,7 +6703,7 @@ }; name = "profile"; }; - FFF7c78048007fb7c7804800 /* debug */ = { + FFF7fa1bf6007fbcfa1bf600 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6733,7 +6733,7 @@ }; name = "debug"; }; - FFF7c7804ef07fb7c7804ef0 /* checked */ = { + FFF7fa1bfcf07fbcfa1bfcf0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6763,7 +6763,7 @@ }; name = "checked"; }; - FFF7c78055e07fb7c78055e0 /* profile */ = { + FFF7fa1c03e07fbcfa1c03e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6793,7 +6793,7 @@ }; name = "profile"; }; - FFF7c7805cd07fb7c7805cd0 /* release */ = { + FFF7fa1c0ad07fbcfa1c0ad0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6823,7 +6823,7 @@ }; name = "release"; }; - FFF7c402c0007fb7c402c000 /* debug */ = { + FFF7fa1c82007fbcfa1c8200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6853,7 +6853,7 @@ }; name = "debug"; }; - FFF7c402c6f07fb7c402c6f0 /* checked */ = { + FFF7fa1c88f07fbcfa1c88f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6883,7 +6883,7 @@ }; name = "checked"; }; - FFF7c402cde07fb7c402cde0 /* profile */ = { + FFF7fa1c8fe07fbcfa1c8fe0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6913,7 +6913,7 @@ }; name = "profile"; }; - FFF7c402d4d07fb7c402d4d0 /* release */ = { + FFF7fa1c96d07fbcfa1c96d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6943,7 +6943,7 @@ }; name = "release"; }; - FFF7c38140007fb7c3814000 /* debug */ = { + FFF7fb823a007fbcfb823a00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6973,7 +6973,7 @@ }; name = "debug"; }; - FFF7c38146f07fb7c38146f0 /* checked */ = { + FFF7fb8240f07fbcfb8240f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7003,7 +7003,7 @@ }; name = "checked"; }; - FFF7c3814de07fb7c3814de0 /* profile */ = { + FFF7fb8247e07fbcfb8247e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7033,7 +7033,7 @@ }; name = "profile"; }; - FFF7c38154d07fb7c38154d0 /* release */ = { + FFF7fb824ed07fbcfb824ed0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7063,7 +7063,7 @@ }; name = "release"; }; - FFF7c5053c007fb7c5053c00 /* debug */ = { + FFF7fa1d1c007fbcfa1d1c00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7093,7 +7093,7 @@ }; name = "debug"; }; - FFF7c50542f07fb7c50542f0 /* checked */ = { + FFF7fa1d22f07fbcfa1d22f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7123,7 +7123,7 @@ }; name = "checked"; }; - FFF7c50549e07fb7c50549e0 /* profile */ = { + FFF7fa1d29e07fbcfa1d29e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7153,7 +7153,7 @@ }; name = "profile"; }; - FFF7c50550d07fb7c50550d0 /* release */ = { + FFF7fa1d30d07fbcfa1d30d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7183,7 +7183,7 @@ }; name = "release"; }; - FFF7c402fa007fb7c402fa00 /* debug */ = { + FFF7fc80a8007fbcfc80a800 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7213,7 +7213,7 @@ }; name = "debug"; }; - FFF7c40300f07fb7c40300f0 /* checked */ = { + FFF7fc80aef07fbcfc80aef0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7243,7 +7243,7 @@ }; name = "checked"; }; - FFF7c40307e07fb7c40307e0 /* profile */ = { + FFF7fc80b5e07fbcfc80b5e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7273,7 +7273,7 @@ }; name = "profile"; }; - FFF7c4030ed07fb7c4030ed0 /* release */ = { + FFF7fc80bcd07fbcfc80bcd0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7303,7 +7303,7 @@ }; name = "release"; }; - FFF7c60134007fb7c6013400 /* debug */ = { + FFF7fa1daa007fbcfa1daa00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7333,7 +7333,7 @@ }; name = "debug"; }; - FFF7c6013af07fb7c6013af0 /* release */ = { + FFF7fa1db0f07fbcfa1db0f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7363,7 +7363,7 @@ }; name = "release"; }; - FFF7c60141e07fb7c60141e0 /* checked */ = { + FFF7fa1db7e07fbcfa1db7e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7393,7 +7393,7 @@ }; name = "checked"; }; - FFF7c60148d07fb7c60148d0 /* profile */ = { + FFF7fa1dbed07fbcfa1dbed0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7423,7 +7423,7 @@ }; name = "profile"; }; - FFF7c681fa007fb7c681fa00 /* debug */ = { + FFF7fc82d6007fbcfc82d600 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7453,7 +7453,7 @@ }; name = "debug"; }; - FFF7c68200f07fb7c68200f0 /* release */ = { + FFF7fc82dcf07fbcfc82dcf0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7483,7 +7483,7 @@ }; name = "release"; }; - FFF7c68207e07fb7c68207e0 /* checked */ = { + FFF7fc82e3e07fbcfc82e3e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7513,7 +7513,7 @@ }; name = "checked"; }; - FFF7c6820ed07fb7c6820ed0 /* profile */ = { + FFF7fc82ead07fbcfc82ead0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7543,25 +7543,25 @@ }; name = "profile"; }; - FFF3c58a34007fb7c58a3400 /* release */ = { + FFF3fc8530007fbcfc853000 /* release */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "release"; }; - FFF3c58a3af07fb7c58a3af0 /* debug */ = { + FFF3fc8536f07fbcfc8536f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "debug"; }; - FFF3c58a41e07fb7c58a41e0 /* checked */ = { + FFF3fc853de07fbcfc853de0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "checked"; }; - FFF3c58a48d07fb7c58a48d0 /* profile */ = { + FFF3fc8544d07fbcfc8544d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { }; @@ -7570,34 +7570,34 @@ /* End XCBuildConfiguration section */ /* Begin PBXProject section */ - FFF9c341f7207fb7c341f720 /* Project object */ = { + FFF9f9c822807fbcf9c82280 /* Project object */ = { isa = PBXProject; - buildConfigurationList = FFF6c341f7207fb7c341f720 /* Build configuration list for PBXProject PhysX */; + buildConfigurationList = FFF6f9c822807fbcf9c82280 /* Build configuration list for PBXProject PhysX */; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; - mainGroup = FFFBc341f7887fb7c341f788 /* PhysX */; + mainGroup = FFFBf9c822e87fbcf9c822e8 /* PhysX */; targets = ( - FFFAc4e60af07fb7c4e60af0, - FFFAc342d6907fb7c342d690, - FFFAc36831307fb7c3683130, - FFFAc80a0d007fb7c80a0d00, - FFFAc4e529207fb7c4e52920, - FFFAc4e56c807fb7c4e56c80, - FFFAc342e0007fb7c342e000, - FFFAc4b0e1607fb7c4b0e160, - FFFAc37144b07fb7c37144b0, - FFFAc4a2a3107fb7c4a2a310, - FFFAc81162307fb7c8116230, - FFFAc811f6607fb7c811f660, - FFFAc4a1ce107fb7c4a1ce10, - FFFAc812c3507fb7c812c350, - FFFAc80807f07fb7c80807f0, - FFFAc3662bc07fb7c3662bc0, - FFFAc4b829a07fb7c4b829a0, + FFFAfc0690807fbcfc069080, + FFFAfc0717b07fbcfc0717b0, + FFFAfc0771907fbcfc077190, + FFFAfc0c74907fbcfc0c7490, + FFFAfc0985207fbcfc098520, + FFFAfc08d4e07fbcfc08d4e0, + FFFAfc07fd407fbcfc07fd40, + FFFAfa8913407fbcfa891340, + FFFAfa87f5207fbcfa87f520, + FFFAfab095c07fbcfab095c0, + FFFAfab277107fbcfab27710, + FFFAfab514407fbcfab51440, + FFFAfaef20807fbcfaef2080, + FFFAfab48c407fbcfab48c40, + FFFAfc003cb07fbcfc003cb0, + FFFAfc2149407fbcfc214940, + FFFAfc0657b07fbcfc0657b0, ); }; /* End PBXProject section */ }; - rootObject = FFF9c341f7207fb7c341f720 /* Project object */; + rootObject = FFF9f9c822807fbcf9c82280 /* Project object */; } diff --git a/PhysX_3.4/Source/compiler/xcode_osx64/PhysX.xcodeproj/project.pbxproj b/PhysX_3.4/Source/compiler/xcode_osx64/PhysX.xcodeproj/project.pbxproj index 220fd8fd..5051d0ce 100644 --- a/PhysX_3.4/Source/compiler/xcode_osx64/PhysX.xcodeproj/project.pbxproj +++ b/PhysX_3.4/Source/compiler/xcode_osx64/PhysX.xcodeproj/project.pbxproj @@ -7,223 +7,223 @@ objects = { /* Begin PBXBuildFile section of PhysX */ - FFFFc49048007fd8c4904800 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDc491f0907fd8c491f090 /* SceneQuery */; }; - FFFFc49048607fd8c4904860 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDc49236207fd8c4923620 /* SimulationController */; }; - FFFFc28520387fd8c2852038 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28520387fd8c2852038 /* NpActor.cpp */; }; - FFFFc28520a07fd8c28520a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28520a07fd8c28520a0 /* NpAggregate.cpp */; }; - FFFFc28521087fd8c2852108 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28521087fd8c2852108 /* NpArticulation.cpp */; }; - FFFFc28521707fd8c2852170 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28521707fd8c2852170 /* NpArticulationJoint.cpp */; }; - FFFFc28521d87fd8c28521d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28521d87fd8c28521d8 /* NpArticulationLink.cpp */; }; - FFFFc28522407fd8c2852240 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28522407fd8c2852240 /* NpBatchQuery.cpp */; }; - FFFFc28522a87fd8c28522a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28522a87fd8c28522a8 /* NpConstraint.cpp */; }; - FFFFc28523107fd8c2852310 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28523107fd8c2852310 /* NpFactory.cpp */; }; - FFFFc28523787fd8c2852378 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28523787fd8c2852378 /* NpMaterial.cpp */; }; - FFFFc28523e07fd8c28523e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28523e07fd8c28523e0 /* NpMetaData.cpp */; }; - FFFFc28524487fd8c2852448 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28524487fd8c2852448 /* NpPhysics.cpp */; }; - FFFFc28524b07fd8c28524b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28524b07fd8c28524b0 /* NpPvdSceneQueryCollector.cpp */; }; - FFFFc28525187fd8c2852518 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28525187fd8c2852518 /* NpReadCheck.cpp */; }; - FFFFc28525807fd8c2852580 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28525807fd8c2852580 /* NpRigidDynamic.cpp */; }; - FFFFc28525e87fd8c28525e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28525e87fd8c28525e8 /* NpRigidStatic.cpp */; }; - FFFFc28526507fd8c2852650 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28526507fd8c2852650 /* NpScene.cpp */; }; - FFFFc28526b87fd8c28526b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28526b87fd8c28526b8 /* NpSceneQueries.cpp */; }; - FFFFc28527207fd8c2852720 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28527207fd8c2852720 /* NpSerializerAdapter.cpp */; }; - FFFFc28527887fd8c2852788 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28527887fd8c2852788 /* NpShape.cpp */; }; - FFFFc28527f07fd8c28527f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28527f07fd8c28527f0 /* NpShapeManager.cpp */; }; - FFFFc28528587fd8c2852858 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28528587fd8c2852858 /* NpSpatialIndex.cpp */; }; - FFFFc28528c07fd8c28528c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28528c07fd8c28528c0 /* NpVolumeCache.cpp */; }; - FFFFc28529287fd8c2852928 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28529287fd8c2852928 /* NpWriteCheck.cpp */; }; - FFFFc28529907fd8c2852990 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28529907fd8c2852990 /* PvdMetaDataPvdBinding.cpp */; }; - FFFFc28529f87fd8c28529f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28529f87fd8c28529f8 /* PvdPhysicsClient.cpp */; }; - FFFFc2852c007fd8c2852c00 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2852c007fd8c2852c00 /* particles/NpParticleFluid.cpp */; }; - FFFFc2852c687fd8c2852c68 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2852c687fd8c2852c68 /* particles/NpParticleSystem.cpp */; }; - FFFFc28534207fd8c2853420 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28534207fd8c2853420 /* buffering/ScbActor.cpp */; }; - FFFFc28534887fd8c2853488 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28534887fd8c2853488 /* buffering/ScbAggregate.cpp */; }; - FFFFc28534f07fd8c28534f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28534f07fd8c28534f0 /* buffering/ScbBase.cpp */; }; - FFFFc28535587fd8c2853558 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28535587fd8c2853558 /* buffering/ScbCloth.cpp */; }; - FFFFc28535c07fd8c28535c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28535c07fd8c28535c0 /* buffering/ScbMetaData.cpp */; }; - FFFFc28536287fd8c2853628 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28536287fd8c2853628 /* buffering/ScbParticleSystem.cpp */; }; - FFFFc28536907fd8c2853690 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28536907fd8c2853690 /* buffering/ScbScene.cpp */; }; - FFFFc28536f87fd8c28536f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28536f87fd8c28536f8 /* buffering/ScbScenePvdClient.cpp */; }; - FFFFc28537607fd8c2853760 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28537607fd8c2853760 /* buffering/ScbShape.cpp */; }; - FFFFc28539007fd8c2853900 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28539007fd8c2853900 /* cloth/NpCloth.cpp */; }; - FFFFc28539687fd8c2853968 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28539687fd8c2853968 /* cloth/NpClothFabric.cpp */; }; - FFFFc28539d07fd8c28539d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28539d07fd8c28539d0 /* cloth/NpClothParticleData.cpp */; }; - FFFFc2853a387fd8c2853a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2853a387fd8c2853a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; - FFFFc284dda87fd8c284dda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDc284dda87fd8c284dda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; - FFFFc284de107fd8c284de10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDc284de107fd8c284de10 /* core/src/PxMetaDataObjects.cpp */; }; + FFFF126754407fe812675440 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD12694cb07fe812694cb0 /* SceneQuery */; }; + FFFF126754a07fe8126754a0 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD126992107fe812699210 /* SimulationController */; }; + FFFF12828c387fe812828c38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828c387fe812828c38 /* NpActor.cpp */; }; + FFFF12828ca07fe812828ca0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828ca07fe812828ca0 /* NpAggregate.cpp */; }; + FFFF12828d087fe812828d08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828d087fe812828d08 /* NpArticulation.cpp */; }; + FFFF12828d707fe812828d70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828d707fe812828d70 /* NpArticulationJoint.cpp */; }; + FFFF12828dd87fe812828dd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828dd87fe812828dd8 /* NpArticulationLink.cpp */; }; + FFFF12828e407fe812828e40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828e407fe812828e40 /* NpBatchQuery.cpp */; }; + FFFF12828ea87fe812828ea8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828ea87fe812828ea8 /* NpConstraint.cpp */; }; + FFFF12828f107fe812828f10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828f107fe812828f10 /* NpFactory.cpp */; }; + FFFF12828f787fe812828f78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828f787fe812828f78 /* NpMaterial.cpp */; }; + FFFF12828fe07fe812828fe0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828fe07fe812828fe0 /* NpMetaData.cpp */; }; + FFFF128290487fe812829048 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128290487fe812829048 /* NpPhysics.cpp */; }; + FFFF128290b07fe8128290b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128290b07fe8128290b0 /* NpPvdSceneQueryCollector.cpp */; }; + FFFF128291187fe812829118 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128291187fe812829118 /* NpReadCheck.cpp */; }; + FFFF128291807fe812829180 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128291807fe812829180 /* NpRigidDynamic.cpp */; }; + FFFF128291e87fe8128291e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128291e87fe8128291e8 /* NpRigidStatic.cpp */; }; + FFFF128292507fe812829250 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128292507fe812829250 /* NpScene.cpp */; }; + FFFF128292b87fe8128292b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128292b87fe8128292b8 /* NpSceneQueries.cpp */; }; + FFFF128293207fe812829320 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128293207fe812829320 /* NpSerializerAdapter.cpp */; }; + FFFF128293887fe812829388 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128293887fe812829388 /* NpShape.cpp */; }; + FFFF128293f07fe8128293f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128293f07fe8128293f0 /* NpShapeManager.cpp */; }; + FFFF128294587fe812829458 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128294587fe812829458 /* NpSpatialIndex.cpp */; }; + FFFF128294c07fe8128294c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128294c07fe8128294c0 /* NpVolumeCache.cpp */; }; + FFFF128295287fe812829528 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128295287fe812829528 /* NpWriteCheck.cpp */; }; + FFFF128295907fe812829590 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128295907fe812829590 /* PvdMetaDataPvdBinding.cpp */; }; + FFFF128295f87fe8128295f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128295f87fe8128295f8 /* PvdPhysicsClient.cpp */; }; + FFFF128298007fe812829800 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128298007fe812829800 /* particles/NpParticleFluid.cpp */; }; + FFFF128298687fe812829868 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128298687fe812829868 /* particles/NpParticleSystem.cpp */; }; + FFFF1282a0207fe81282a020 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a0207fe81282a020 /* buffering/ScbActor.cpp */; }; + FFFF1282a0887fe81282a088 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a0887fe81282a088 /* buffering/ScbAggregate.cpp */; }; + FFFF1282a0f07fe81282a0f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a0f07fe81282a0f0 /* buffering/ScbBase.cpp */; }; + FFFF1282a1587fe81282a158 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a1587fe81282a158 /* buffering/ScbCloth.cpp */; }; + FFFF1282a1c07fe81282a1c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a1c07fe81282a1c0 /* buffering/ScbMetaData.cpp */; }; + FFFF1282a2287fe81282a228 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a2287fe81282a228 /* buffering/ScbParticleSystem.cpp */; }; + FFFF1282a2907fe81282a290 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a2907fe81282a290 /* buffering/ScbScene.cpp */; }; + FFFF1282a2f87fe81282a2f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a2f87fe81282a2f8 /* buffering/ScbScenePvdClient.cpp */; }; + FFFF1282a3607fe81282a360 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a3607fe81282a360 /* buffering/ScbShape.cpp */; }; + FFFF1282a5007fe81282a500 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a5007fe81282a500 /* cloth/NpCloth.cpp */; }; + FFFF1282a5687fe81282a568 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a5687fe81282a568 /* cloth/NpClothFabric.cpp */; }; + FFFF1282a5d07fe81282a5d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a5d07fe81282a5d0 /* cloth/NpClothParticleData.cpp */; }; + FFFF1282a6387fe81282a638 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a6387fe81282a638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; + FFFF12822da87fe812822da8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD12822da87fe812822da8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; + FFFF12822e107fe812822e10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD12822e107fe812822e10 /* core/src/PxMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc4a8bb607fd8c4a8bb60 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc28512007fd8c2851200 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28512687fd8c2851268 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28512d07fd8c28512d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28513387fd8c2851338 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28513a07fd8c28513a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28514087fd8c2851408 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28514707fd8c2851470 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28514d87fd8c28514d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28515407fd8c2851540 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28515a87fd8c28515a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28516107fd8c2851610 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28516787fd8c2851678 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28516e07fd8c28516e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28517487fd8c2851748 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28517b07fd8c28517b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28518187fd8c2851818 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28518807fd8c2851880 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28518e87fd8c28518e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28519507fd8c2851950 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28519b87fd8c28519b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851a207fd8c2851a20 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851a887fd8c2851a88 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851af07fd8c2851af0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851b587fd8c2851b58 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851bc07fd8c2851bc0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851c287fd8c2851c28 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851c907fd8c2851c90 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851cf87fd8c2851cf8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851d607fd8c2851d60 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851dc87fd8c2851dc8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851e307fd8c2851e30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851e987fd8c2851e98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851f007fd8c2851f00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851f687fd8c2851f68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2851fd07fd8c2851fd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28520387fd8c2852038 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28520a07fd8c28520a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28521087fd8c2852108 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28521707fd8c2852170 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28521d87fd8c28521d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28522407fd8c2852240 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28522a87fd8c28522a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28523107fd8c2852310 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28523787fd8c2852378 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28523e07fd8c28523e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28524487fd8c2852448 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28524b07fd8c28524b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28525187fd8c2852518 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28525807fd8c2852580 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28525e87fd8c28525e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28526507fd8c2852650 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28526b87fd8c28526b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28527207fd8c2852720 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28527887fd8c2852788 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28527f07fd8c28527f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28528587fd8c2852858 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28528c07fd8c28528c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28529287fd8c2852928 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28529907fd8c2852990 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28529f87fd8c28529f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2852a607fd8c2852a60 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2852ac87fd8c2852ac8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2852b307fd8c2852b30 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2852b987fd8c2852b98 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2852c007fd8c2852c00 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2852c687fd8c2852c68 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2852cd07fd8c2852cd0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2852d387fd8c2852d38 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2852da07fd8c2852da0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2852e087fd8c2852e08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2852e707fd8c2852e70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2852ed87fd8c2852ed8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2852f407fd8c2852f40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2852fa87fd8c2852fa8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28530107fd8c2853010 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28530787fd8c2853078 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28530e07fd8c28530e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28531487fd8c2853148 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28531b07fd8c28531b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28532187fd8c2853218 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28532807fd8c2853280 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28532e87fd8c28532e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28533507fd8c2853350 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28533b87fd8c28533b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28534207fd8c2853420 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28534887fd8c2853488 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28534f07fd8c28534f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28535587fd8c2853558 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28535c07fd8c28535c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28536287fd8c2853628 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28536907fd8c2853690 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28536f87fd8c28536f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28537607fd8c2853760 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28537c87fd8c28537c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28538307fd8c2853830 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28538987fd8c2853898 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28539007fd8c2853900 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28539687fd8c2853968 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28539d07fd8c28539d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2853a387fd8c2853a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2853c007fd8c2853c00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2853c687fd8c2853c68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2853cd07fd8c2853cd0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2853d387fd8c2853d38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2853da07fd8c2853da0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2853e087fd8c2853e08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2853e707fd8c2853e70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2853ed87fd8c2853ed8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2853f407fd8c2853f40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2853fa87fd8c2853fa8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28540107fd8c2854010 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28540787fd8c2854078 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28540e07fd8c28540e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28541487fd8c2854148 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28541b07fd8c28541b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28542187fd8c2854218 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28542807fd8c2854280 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28542e87fd8c28542e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28543507fd8c2854350 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28543b87fd8c28543b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28544207fd8c2854420 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28544887fd8c2854488 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28544f07fd8c28544f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28545587fd8c2854558 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28545c07fd8c28545c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28546287fd8c2854628 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28546907fd8c2854690 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28546f87fd8c28546f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28547607fd8c2854760 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28547c87fd8c28547c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28548307fd8c2854830 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28548987fd8c2854898 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28549007fd8c2854900 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28549687fd8c2854968 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28549d07fd8c28549d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854a387fd8c2854a38 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854aa07fd8c2854aa0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854b087fd8c2854b08 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854b707fd8c2854b70 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854bd87fd8c2854bd8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854c407fd8c2854c40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854ca87fd8c2854ca8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854d107fd8c2854d10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854d787fd8c2854d78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854de07fd8c2854de0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854e487fd8c2854e48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854eb07fd8c2854eb0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854f187fd8c2854f18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854f807fd8c2854f80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2854fe87fd8c2854fe8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28550507fd8c2855050 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28550b87fd8c28550b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28551207fd8c2855120 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28551887fd8c2855188 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc284da007fd8c284da00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDc284da687fd8c284da68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDc284dad07fd8c284dad0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc284db387fd8c284db38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDc284dba07fd8c284dba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc284dc087fd8c284dc08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFDc284dc707fd8c284dc70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFDc284dcd87fd8c284dcd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc284dd407fd8c284dd40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc284dda87fd8c284dda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc284de107fd8c284de10 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1266ac007fe81266ac00 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD12827e007fe812827e00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD12827e687fe812827e68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD12827ed07fe812827ed0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD12827f387fe812827f38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD12827fa07fe812827fa0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD128280087fe812828008 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD128280707fe812828070 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD128280d87fe8128280d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD128281407fe812828140 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; + FFFD128281a87fe8128281a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD128282107fe812828210 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD128282787fe812828278 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD128282e07fe8128282e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD128283487fe812828348 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD128283b07fe8128283b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD128284187fe812828418 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD128284807fe812828480 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; + FFFD128284e87fe8128284e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD128285507fe812828550 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD128285b87fe8128285b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD128286207fe812828620 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD128286887fe812828688 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD128286f07fe8128286f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD128287587fe812828758 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD128287c07fe8128287c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD128288287fe812828828 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; + FFFD128288907fe812828890 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD128288f87fe8128288f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD128289607fe812828960 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD128289c87fe8128289c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD12828a307fe812828a30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD12828a987fe812828a98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; + FFFD12828b007fe812828b00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; + FFFD12828b687fe812828b68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD12828bd07fe812828bd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD12828c387fe812828c38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12828ca07fe812828ca0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12828d087fe812828d08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12828d707fe812828d70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12828dd87fe812828dd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12828e407fe812828e40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12828ea87fe812828ea8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12828f107fe812828f10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12828f787fe812828f78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12828fe07fe812828fe0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128290487fe812829048 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128290b07fe8128290b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128291187fe812829118 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128291807fe812829180 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128291e87fe8128291e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128292507fe812829250 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128292b87fe8128292b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128293207fe812829320 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128293887fe812829388 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128293f07fe8128293f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128294587fe812829458 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128294c07fe8128294c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128295287fe812829528 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128295907fe812829590 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128295f87fe8128295f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128296607fe812829660 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD128296c87fe8128296c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD128297307fe812829730 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD128297987fe812829798 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD128298007fe812829800 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128298687fe812829868 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128298d07fe8128298d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD128299387fe812829938 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD128299a07fe8128299a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829a087fe812829a08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829a707fe812829a70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829ad87fe812829ad8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829b407fe812829b40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829ba87fe812829ba8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829c107fe812829c10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829c787fe812829c78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829ce07fe812829ce0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829d487fe812829d48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829db07fe812829db0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829e187fe812829e18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829e807fe812829e80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829ee87fe812829ee8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829f507fe812829f50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD12829fb87fe812829fb8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282a0207fe81282a020 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a0887fe81282a088 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a0f07fe81282a0f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a1587fe81282a158 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a1c07fe81282a1c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a2287fe81282a228 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a2907fe81282a290 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a2f87fe81282a2f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a3607fe81282a360 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a3c87fe81282a3c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282a4307fe81282a430 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282a4987fe81282a498 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282a5007fe81282a500 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a5687fe81282a568 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a5d07fe81282a5d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a6387fe81282a638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1282a8007fe81282a800 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282a8687fe81282a868 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282a8d07fe81282a8d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282a9387fe81282a938 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282a9a07fe81282a9a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282aa087fe81282aa08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282aa707fe81282aa70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282aad87fe81282aad8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282ab407fe81282ab40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282aba87fe81282aba8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282ac107fe81282ac10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282ac787fe81282ac78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282ace07fe81282ace0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282ad487fe81282ad48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282adb07fe81282adb0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282ae187fe81282ae18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282ae807fe81282ae80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282aee87fe81282aee8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282af507fe81282af50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282afb87fe81282afb8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b0207fe81282b020 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b0887fe81282b088 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b0f07fe81282b0f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b1587fe81282b158 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b1c07fe81282b1c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b2287fe81282b228 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b2907fe81282b290 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b2f87fe81282b2f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b3607fe81282b360 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b3c87fe81282b3c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b4307fe81282b430 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b4987fe81282b498 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b5007fe81282b500 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b5687fe81282b568 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b5d07fe81282b5d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b6387fe81282b638 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b6a07fe81282b6a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b7087fe81282b708 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b7707fe81282b770 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b7d87fe81282b7d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b8407fe81282b840 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b8a87fe81282b8a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b9107fe81282b910 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b9787fe81282b978 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282b9e07fe81282b9e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282ba487fe81282ba48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282bab07fe81282bab0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282bb187fe81282bb18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282bb807fe81282bb80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282bbe87fe81282bbe8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282bc507fe81282bc50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282bcb87fe81282bcb8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282bd207fe81282bd20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD1282bd887fe81282bd88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD12822a007fe812822a00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD12822a687fe812822a68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD12822ad07fe812822ad0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD12822b387fe812822b38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD12822ba07fe812822ba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD12822c087fe812822c08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD12822c707fe812822c70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD12822cd87fe812822cd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD12822d407fe812822d40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD12822da87fe812822da8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12822e107fe812822e10 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c4a8bb607fd8c4a8bb60 /* Resources */ = { + FFF21266ac007fe81266ac00 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -233,7 +233,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc4a8bb607fd8c4a8bb60 /* Frameworks */ = { + FFFC1266ac007fe81266ac00 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -243,52 +243,52 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c4a8bb607fd8c4a8bb60 /* Sources */ = { + FFF81266ac007fe81266ac00 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc28520387fd8c2852038, - FFFFc28520a07fd8c28520a0, - FFFFc28521087fd8c2852108, - FFFFc28521707fd8c2852170, - FFFFc28521d87fd8c28521d8, - FFFFc28522407fd8c2852240, - FFFFc28522a87fd8c28522a8, - FFFFc28523107fd8c2852310, - FFFFc28523787fd8c2852378, - FFFFc28523e07fd8c28523e0, - FFFFc28524487fd8c2852448, - FFFFc28524b07fd8c28524b0, - FFFFc28525187fd8c2852518, - FFFFc28525807fd8c2852580, - FFFFc28525e87fd8c28525e8, - FFFFc28526507fd8c2852650, - FFFFc28526b87fd8c28526b8, - FFFFc28527207fd8c2852720, - FFFFc28527887fd8c2852788, - FFFFc28527f07fd8c28527f0, - FFFFc28528587fd8c2852858, - FFFFc28528c07fd8c28528c0, - FFFFc28529287fd8c2852928, - FFFFc28529907fd8c2852990, - FFFFc28529f87fd8c28529f8, - FFFFc2852c007fd8c2852c00, - FFFFc2852c687fd8c2852c68, - FFFFc28534207fd8c2853420, - FFFFc28534887fd8c2853488, - FFFFc28534f07fd8c28534f0, - FFFFc28535587fd8c2853558, - FFFFc28535c07fd8c28535c0, - FFFFc28536287fd8c2853628, - FFFFc28536907fd8c2853690, - FFFFc28536f87fd8c28536f8, - FFFFc28537607fd8c2853760, - FFFFc28539007fd8c2853900, - FFFFc28539687fd8c2853968, - FFFFc28539d07fd8c28539d0, - FFFFc2853a387fd8c2853a38, - FFFFc284dda87fd8c284dda8, - FFFFc284de107fd8c284de10, + FFFF12828c387fe812828c38, + FFFF12828ca07fe812828ca0, + FFFF12828d087fe812828d08, + FFFF12828d707fe812828d70, + FFFF12828dd87fe812828dd8, + FFFF12828e407fe812828e40, + FFFF12828ea87fe812828ea8, + FFFF12828f107fe812828f10, + FFFF12828f787fe812828f78, + FFFF12828fe07fe812828fe0, + FFFF128290487fe812829048, + FFFF128290b07fe8128290b0, + FFFF128291187fe812829118, + FFFF128291807fe812829180, + FFFF128291e87fe8128291e8, + FFFF128292507fe812829250, + FFFF128292b87fe8128292b8, + FFFF128293207fe812829320, + FFFF128293887fe812829388, + FFFF128293f07fe8128293f0, + FFFF128294587fe812829458, + FFFF128294c07fe8128294c0, + FFFF128295287fe812829528, + FFFF128295907fe812829590, + FFFF128295f87fe8128295f8, + FFFF128298007fe812829800, + FFFF128298687fe812829868, + FFFF1282a0207fe81282a020, + FFFF1282a0887fe81282a088, + FFFF1282a0f07fe81282a0f0, + FFFF1282a1587fe81282a158, + FFFF1282a1c07fe81282a1c0, + FFFF1282a2287fe81282a228, + FFFF1282a2907fe81282a290, + FFFF1282a2f87fe81282a2f8, + FFFF1282a3607fe81282a360, + FFFF1282a5007fe81282a500, + FFFF1282a5687fe81282a568, + FFFF1282a5d07fe81282a5d0, + FFFF1282a6387fe81282a638, + FFFF12822da87fe812822da8, + FFFF12822e107fe812822e10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -297,112 +297,112 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4c171ecd07fd8c171ecd0 /* PBXTargetDependency */ = { + FFF4126713b07fe8126713b0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc10c0f007fd8c10c0f00 /* LowLevel */; - targetProxy = FFF5c10c0f007fd8c10c0f00 /* PBXContainerItemProxy */; + target = FFFA125b5b707fe8125b5b70 /* LowLevel */; + targetProxy = FFF5125b5b707fe8125b5b70 /* PBXContainerItemProxy */; }; - FFF4c171ed307fd8c171ed30 /* PBXTargetDependency */ = { + FFF4126714107fe812671410 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc17390207fd8c1739020 /* LowLevelAABB */; - targetProxy = FFF5c17390207fd8c1739020 /* PBXContainerItemProxy */; + target = FFFA1261e8907fe81261e890 /* LowLevelAABB */; + targetProxy = FFF51261e8907fe81261e890 /* PBXContainerItemProxy */; }; - FFF4c1727c607fd8c1727c60 /* PBXTargetDependency */ = { + FFF412670fd07fe812670fd0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc172f9207fd8c172f920 /* LowLevelCloth */; - targetProxy = FFF5c172f9207fd8c172f920 /* PBXContainerItemProxy */; + target = FFFA130090807fe813009080 /* LowLevelCloth */; + targetProxy = FFF5130090807fe813009080 /* PBXContainerItemProxy */; }; - FFF4c1723e007fd8c1723e00 /* PBXTargetDependency */ = { + FFF412670f707fe812670f70 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc10c8d107fd8c10c8d10 /* LowLevelDynamics */; - targetProxy = FFF5c10c8d107fd8c10c8d10 /* PBXContainerItemProxy */; + target = FFFA125e9ce07fe8125e9ce0 /* LowLevelDynamics */; + targetProxy = FFF5125e9ce07fe8125e9ce0 /* PBXContainerItemProxy */; }; - FFF4c1727cc07fd8c1727cc0 /* PBXTargetDependency */ = { + FFF4126710307fe812671030 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc133d4f07fd8c133d4f0 /* LowLevelParticles */; - targetProxy = FFF5c133d4f07fd8c133d4f0 /* PBXContainerItemProxy */; + target = FFFA12708bc07fe812708bc0 /* LowLevelParticles */; + targetProxy = FFF512708bc07fe812708bc0 /* PBXContainerItemProxy */; }; - FFF4c171e4607fd8c171e460 /* PBXTargetDependency */ = { + FFF4126750107fe812675010 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc1414ed07fd8c1414ed0 /* PhysXCommon */; - targetProxy = FFF5c1414ed07fd8c1414ed0 /* PBXContainerItemProxy */; + target = FFFA12128d507fe812128d50 /* PhysXCommon */; + targetProxy = FFF512128d507fe812128d50 /* PBXContainerItemProxy */; }; - FFF4c4a8be907fd8c4a8be90 /* PBXTargetDependency */ = { + FFF41266aef07fe81266aef0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc141af507fd8c141af50 /* PxFoundation */; - targetProxy = FFF5c141af507fd8c141af50 /* PBXContainerItemProxy */; + target = FFFA121657c07fe8121657c0 /* PxFoundation */; + targetProxy = FFF5121657c07fe8121657c0 /* PBXContainerItemProxy */; }; - FFF4c4a8bd707fd8c4a8bd70 /* PBXTargetDependency */ = { + FFF41266aba07fe81266aba0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc173fd607fd8c173fd60 /* PxPvdSDK */; - targetProxy = FFF5c173fd607fd8c173fd60 /* PBXContainerItemProxy */; + target = FFFA12609f207fe812609f20 /* PxPvdSDK */; + targetProxy = FFF512609f207fe812609f20 /* PBXContainerItemProxy */; }; - FFF4c49048907fd8c4904890 /* PBXTargetDependency */ = { + FFF4126754d07fe8126754d0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc13406907fd8c1340690 /* PxTask */; - targetProxy = FFF5c13406907fd8c1340690 /* PBXContainerItemProxy */; + target = FFFA132a0da07fe8132a0da0 /* PxTask */; + targetProxy = FFF5132a0da07fe8132a0da0 /* PBXContainerItemProxy */; }; - FFF4c49048007fd8c4904800 /* PBXTargetDependency */ = { + FFF4126754407fe812675440 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc491f0907fd8c491f090 /* SceneQuery */; - targetProxy = FFF5c491f0907fd8c491f090 /* PBXContainerItemProxy */; + target = FFFA12694cb07fe812694cb0 /* SceneQuery */; + targetProxy = FFF512694cb07fe812694cb0 /* PBXContainerItemProxy */; }; - FFF4c49048607fd8c4904860 /* PBXTargetDependency */ = { + FFF4126754a07fe8126754a0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc49236207fd8c4923620 /* SimulationController */; - targetProxy = FFF5c49236207fd8c4923620 /* PBXContainerItemProxy */; + target = FFFA126992107fe812699210 /* SimulationController */; + targetProxy = FFF5126992107fe812699210 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCharacterKinematic */ - FFFFc490d8907fd8c490d890 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDc4912c607fd8c4912c60 /* PhysXExtensions */; }; - FFFFc28566787fd8c2856678 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28566787fd8c2856678 /* CctBoxController.cpp */; }; - FFFFc28566e07fd8c28566e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28566e07fd8c28566e0 /* CctCapsuleController.cpp */; }; - FFFFc28567487fd8c2856748 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28567487fd8c2856748 /* CctCharacterController.cpp */; }; - FFFFc28567b07fd8c28567b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28567b07fd8c28567b0 /* CctCharacterControllerCallbacks.cpp */; }; - FFFFc28568187fd8c2856818 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28568187fd8c2856818 /* CctCharacterControllerManager.cpp */; }; - FFFFc28568807fd8c2856880 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28568807fd8c2856880 /* CctController.cpp */; }; - FFFFc28568e87fd8c28568e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28568e87fd8c28568e8 /* CctObstacleContext.cpp */; }; - FFFFc28569507fd8c2856950 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28569507fd8c2856950 /* CctSweptBox.cpp */; }; - FFFFc28569b87fd8c28569b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28569b87fd8c28569b8 /* CctSweptCapsule.cpp */; }; - FFFFc2856a207fd8c2856a20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2856a207fd8c2856a20 /* CctSweptVolume.cpp */; }; + FFFF12675e107fe812675e10 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD12683c607fe812683c60 /* PhysXExtensions */; }; + FFFF128246787fe812824678 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128246787fe812824678 /* CctBoxController.cpp */; }; + FFFF128246e07fe8128246e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128246e07fe8128246e0 /* CctCapsuleController.cpp */; }; + FFFF128247487fe812824748 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128247487fe812824748 /* CctCharacterController.cpp */; }; + FFFF128247b07fe8128247b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128247b07fe8128247b0 /* CctCharacterControllerCallbacks.cpp */; }; + FFFF128248187fe812824818 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128248187fe812824818 /* CctCharacterControllerManager.cpp */; }; + FFFF128248807fe812824880 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128248807fe812824880 /* CctController.cpp */; }; + FFFF128248e87fe8128248e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128248e87fe8128248e8 /* CctObstacleContext.cpp */; }; + FFFF128249507fe812824950 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128249507fe812824950 /* CctSweptBox.cpp */; }; + FFFF128249b87fe8128249b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128249b87fe8128249b8 /* CctSweptCapsule.cpp */; }; + FFFF12824a207fe812824a20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12824a207fe812824a20 /* CctSweptVolume.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc49045107fd8c4904510 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc490bfb07fd8c490bfb0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc490c0187fd8c490c018 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc490c0807fd8c490c080 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc490c0e87fd8c490c0e8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc490c1507fd8c490c150 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; - FFFDc490c1b87fd8c490c1b8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc490c2207fd8c490c220 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; - FFFDc490c2887fd8c490c288 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28562007fd8c2856200 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28562687fd8c2856268 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28562d07fd8c28562d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28563387fd8c2856338 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28563a07fd8c28563a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28564087fd8c2856408 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28564707fd8c2856470 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28564d87fd8c28564d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28565407fd8c2856540 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28565a87fd8c28565a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28566107fd8c2856610 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28566787fd8c2856678 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28566e07fd8c28566e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28567487fd8c2856748 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28567b07fd8c28567b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28568187fd8c2856818 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28568807fd8c2856880 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28568e87fd8c28568e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28569507fd8c2856950 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28569b87fd8c28569b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2856a207fd8c2856a20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD126754e07fe8126754e0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD126783e07fe8126783e0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD126784487fe812678448 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD126784b07fe8126784b0 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; + FFFD126785187fe812678518 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD126785807fe812678580 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; + FFFD126785e87fe8126785e8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD126786507fe812678650 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; + FFFD126786b87fe8126786b8 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; + FFFD128242007fe812824200 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD128242687fe812824268 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD128242d07fe8128242d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; + FFFD128243387fe812824338 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD128243a07fe8128243a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; + FFFD128244087fe812824408 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; + FFFD128244707fe812824470 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD128244d87fe8128244d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD128245407fe812824540 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD128245a87fe8128245a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; + FFFD128246107fe812824610 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD128246787fe812824678 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128246e07fe8128246e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128247487fe812824748 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128247b07fe8128247b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128248187fe812824818 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128248807fe812824880 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128248e87fe8128248e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128249507fe812824950 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128249b87fe8128249b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12824a207fe812824a20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c49045107fd8c4904510 /* Resources */ = { + FFF2126754e07fe8126754e0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -412,7 +412,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc49045107fd8c4904510 /* Frameworks */ = { + FFFC126754e07fe8126754e0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -422,20 +422,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c49045107fd8c4904510 /* Sources */ = { + FFF8126754e07fe8126754e0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc28566787fd8c2856678, - FFFFc28566e07fd8c28566e0, - FFFFc28567487fd8c2856748, - FFFFc28567b07fd8c28567b0, - FFFFc28568187fd8c2856818, - FFFFc28568807fd8c2856880, - FFFFc28568e87fd8c28568e8, - FFFFc28569507fd8c2856950, - FFFFc28569b87fd8c28569b8, - FFFFc2856a207fd8c2856a20, + FFFF128246787fe812824678, + FFFF128246e07fe8128246e0, + FFFF128247487fe812824748, + FFFF128247b07fe8128247b0, + FFFF128248187fe812824818, + FFFF128248807fe812824880, + FFFF128248e87fe8128248e8, + FFFF128249507fe812824950, + FFFF128249b87fe8128249b8, + FFFF12824a207fe812824a20, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -444,91 +444,91 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4c490a3d07fd8c490a3d0 /* PBXTargetDependency */ = { + FFF412677ec07fe812677ec0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc1414ed07fd8c1414ed0 /* PhysXCommon */; - targetProxy = FFF5c1414ed07fd8c1414ed0 /* PBXContainerItemProxy */; + target = FFFA12128d507fe812128d50 /* PhysXCommon */; + targetProxy = FFF512128d507fe812128d50 /* PBXContainerItemProxy */; }; - FFF4c490d8907fd8c490d890 /* PBXTargetDependency */ = { + FFF412675e107fe812675e10 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc4912c607fd8c4912c60 /* PhysXExtensions */; - targetProxy = FFF5c4912c607fd8c4912c60 /* PBXContainerItemProxy */; + target = FFFA12683c607fe812683c60 /* PhysXExtensions */; + targetProxy = FFF512683c607fe812683c60 /* PBXContainerItemProxy */; }; - FFF4c490b9507fd8c490b950 /* PBXTargetDependency */ = { + FFF4126724907fe812672490 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc141af507fd8c141af50 /* PxFoundation */; - targetProxy = FFF5c141af507fd8c141af50 /* PBXContainerItemProxy */; + target = FFFA121657c07fe8121657c0 /* PxFoundation */; + targetProxy = FFF5121657c07fe8121657c0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXVehicle */ - FFFFc285b0087fd8c285b008 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b0087fd8c285b008 /* PxVehicleComponents.cpp */; }; - FFFFc285b0707fd8c285b070 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b0707fd8c285b070 /* PxVehicleDrive.cpp */; }; - FFFFc285b0d87fd8c285b0d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b0d87fd8c285b0d8 /* PxVehicleDrive4W.cpp */; }; - FFFFc285b1407fd8c285b140 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b1407fd8c285b140 /* PxVehicleDriveNW.cpp */; }; - FFFFc285b1a87fd8c285b1a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b1a87fd8c285b1a8 /* PxVehicleDriveTank.cpp */; }; - FFFFc285b2107fd8c285b210 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b2107fd8c285b210 /* PxVehicleMetaData.cpp */; }; - FFFFc285b2787fd8c285b278 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b2787fd8c285b278 /* PxVehicleNoDrive.cpp */; }; - FFFFc285b2e07fd8c285b2e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b2e07fd8c285b2e0 /* PxVehicleSDK.cpp */; }; - FFFFc285b3487fd8c285b348 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b3487fd8c285b348 /* PxVehicleSerialization.cpp */; }; - FFFFc285b3b07fd8c285b3b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b3b07fd8c285b3b0 /* PxVehicleSuspWheelTire4.cpp */; }; - FFFFc285b4187fd8c285b418 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b4187fd8c285b418 /* PxVehicleTireFriction.cpp */; }; - FFFFc285b4807fd8c285b480 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b4807fd8c285b480 /* PxVehicleUpdate.cpp */; }; - FFFFc285b4e87fd8c285b4e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b4e87fd8c285b4e8 /* PxVehicleWheels.cpp */; }; - FFFFc285b5507fd8c285b550 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b5507fd8c285b550 /* VehicleUtilControl.cpp */; }; - FFFFc285b5b87fd8c285b5b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b5b87fd8c285b5b8 /* VehicleUtilSetup.cpp */; }; - FFFFc285b6207fd8c285b620 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285b6207fd8c285b620 /* VehicleUtilTelemetry.cpp */; }; - FFFFc49130e87fd8c49130e8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDc49130e87fd8c49130e8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; - FFFFc49131507fd8c4913150 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDc49131507fd8c4913150 /* src/PxVehicleMetaDataObjects.cpp */; }; + FFFF128308087fe812830808 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128308087fe812830808 /* PxVehicleComponents.cpp */; }; + FFFF128308707fe812830870 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128308707fe812830870 /* PxVehicleDrive.cpp */; }; + FFFF128308d87fe8128308d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128308d87fe8128308d8 /* PxVehicleDrive4W.cpp */; }; + FFFF128309407fe812830940 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128309407fe812830940 /* PxVehicleDriveNW.cpp */; }; + FFFF128309a87fe8128309a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128309a87fe8128309a8 /* PxVehicleDriveTank.cpp */; }; + FFFF12830a107fe812830a10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830a107fe812830a10 /* PxVehicleMetaData.cpp */; }; + FFFF12830a787fe812830a78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830a787fe812830a78 /* PxVehicleNoDrive.cpp */; }; + FFFF12830ae07fe812830ae0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830ae07fe812830ae0 /* PxVehicleSDK.cpp */; }; + FFFF12830b487fe812830b48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830b487fe812830b48 /* PxVehicleSerialization.cpp */; }; + FFFF12830bb07fe812830bb0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830bb07fe812830bb0 /* PxVehicleSuspWheelTire4.cpp */; }; + FFFF12830c187fe812830c18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830c187fe812830c18 /* PxVehicleTireFriction.cpp */; }; + FFFF12830c807fe812830c80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830c807fe812830c80 /* PxVehicleUpdate.cpp */; }; + FFFF12830ce87fe812830ce8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830ce87fe812830ce8 /* PxVehicleWheels.cpp */; }; + FFFF12830d507fe812830d50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830d507fe812830d50 /* VehicleUtilControl.cpp */; }; + FFFF12830db87fe812830db8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830db87fe812830db8 /* VehicleUtilSetup.cpp */; }; + FFFF12830e207fe812830e20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830e207fe812830e20 /* VehicleUtilTelemetry.cpp */; }; + FFFF126823387fe812682338 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD126823387fe812682338 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; + FFFF126823a07fe8126823a0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD126823a07fe8126823a0 /* src/PxVehicleMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc490d1007fd8c490d100 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc28590007fd8c2859000 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28590687fd8c2859068 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28590d07fd8c28590d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28591387fd8c2859138 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28591a07fd8c28591a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28592087fd8c2859208 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28592707fd8c2859270 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28592d87fd8c28592d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28593407fd8c2859340 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28593a87fd8c28593a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28594107fd8c2859410 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28594787fd8c2859478 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28594e07fd8c28594e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28595487fd8c2859548 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28595b07fd8c28595b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285ae007fd8c285ae00 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285ae687fd8c285ae68 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285aed07fd8c285aed0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285af387fd8c285af38 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285afa07fd8c285afa0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285b0087fd8c285b008 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b0707fd8c285b070 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b0d87fd8c285b0d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b1407fd8c285b140 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b1a87fd8c285b1a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b2107fd8c285b210 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b2787fd8c285b278 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b2e07fd8c285b2e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b3487fd8c285b348 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b3b07fd8c285b3b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b4187fd8c285b418 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b4807fd8c285b480 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b4e87fd8c285b4e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b5507fd8c285b550 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b5b87fd8c285b5b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285b6207fd8c285b620 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4912fb07fd8c4912fb0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDc49130187fd8c4913018 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc49130807fd8c4913080 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc49130e87fd8c49130e8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc49131507fd8c4913150 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD126728307fe812672830 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD128268007fe812826800 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; + FFFD128268687fe812826868 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD128268d07fe8128268d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; + FFFD128269387fe812826938 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; + FFFD128269a07fe8128269a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; + FFFD12826a087fe812826a08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD12826a707fe812826a70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; + FFFD12826ad87fe812826ad8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; + FFFD12826b407fe812826b40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; + FFFD12826ba87fe812826ba8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD12826c107fe812826c10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD12826c787fe812826c78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD12826ce07fe812826ce0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; + FFFD12826d487fe812826d48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; + FFFD12826db07fe812826db0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; + FFFD128306007fe812830600 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD128306687fe812830668 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD128306d07fe8128306d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD128307387fe812830738 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD128307a07fe8128307a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; + FFFD128308087fe812830808 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128308707fe812830870 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128308d87fe8128308d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128309407fe812830940 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128309a87fe8128309a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12830a107fe812830a10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12830a787fe812830a78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12830ae07fe812830ae0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12830b487fe812830b48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12830bb07fe812830bb0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12830c187fe812830c18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12830c807fe812830c80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12830ce87fe812830ce8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12830d507fe812830d50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12830db87fe812830db8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12830e207fe812830e20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD126822007fe812682200 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD126822687fe812682268 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD126822d07fe8126822d0 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD126823387fe812682338 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD126823a07fe8126823a0 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c490d1007fd8c490d100 /* Resources */ = { + FFF2126728307fe812672830 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -538,7 +538,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc490d1007fd8c490d100 /* Frameworks */ = { + FFFC126728307fe812672830 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -548,28 +548,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c490d1007fd8c490d100 /* Sources */ = { + FFF8126728307fe812672830 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc285b0087fd8c285b008, - FFFFc285b0707fd8c285b070, - FFFFc285b0d87fd8c285b0d8, - FFFFc285b1407fd8c285b140, - FFFFc285b1a87fd8c285b1a8, - FFFFc285b2107fd8c285b210, - FFFFc285b2787fd8c285b278, - FFFFc285b2e07fd8c285b2e0, - FFFFc285b3487fd8c285b348, - FFFFc285b3b07fd8c285b3b0, - FFFFc285b4187fd8c285b418, - FFFFc285b4807fd8c285b480, - FFFFc285b4e87fd8c285b4e8, - FFFFc285b5507fd8c285b550, - FFFFc285b5b87fd8c285b5b8, - FFFFc285b6207fd8c285b620, - FFFFc49130e87fd8c49130e8, - FFFFc49131507fd8c4913150, + FFFF128308087fe812830808, + FFFF128308707fe812830870, + FFFF128308d87fe8128308d8, + FFFF128309407fe812830940, + FFFF128309a87fe8128309a8, + FFFF12830a107fe812830a10, + FFFF12830a787fe812830a78, + FFFF12830ae07fe812830ae0, + FFFF12830b487fe812830b48, + FFFF12830bb07fe812830bb0, + FFFF12830c187fe812830c18, + FFFF12830c807fe812830c80, + FFFF12830ce87fe812830ce8, + FFFF12830d507fe812830d50, + FFFF12830db87fe812830db8, + FFFF12830e207fe812830e20, + FFFF126823387fe812682338, + FFFF126823a07fe8126823a0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -581,220 +581,220 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXExtensions */ - FFFFc285d6e87fd8c285d6e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285d6e87fd8c285d6e8 /* ExtBroadPhase.cpp */; }; - FFFFc285d7507fd8c285d750 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285d7507fd8c285d750 /* ExtClothFabricCooker.cpp */; }; - FFFFc285d7b87fd8c285d7b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285d7b87fd8c285d7b8 /* ExtClothGeodesicTetherCooker.cpp */; }; - FFFFc285d8207fd8c285d820 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285d8207fd8c285d820 /* ExtClothMeshQuadifier.cpp */; }; - FFFFc285d8887fd8c285d888 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285d8887fd8c285d888 /* ExtClothSimpleTetherCooker.cpp */; }; - FFFFc285d8f07fd8c285d8f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285d8f07fd8c285d8f0 /* ExtCollection.cpp */; }; - FFFFc285d9587fd8c285d958 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285d9587fd8c285d958 /* ExtConvexMeshExt.cpp */; }; - FFFFc285d9c07fd8c285d9c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285d9c07fd8c285d9c0 /* ExtCpuWorkerThread.cpp */; }; - FFFFc285da287fd8c285da28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285da287fd8c285da28 /* ExtD6Joint.cpp */; }; - FFFFc285da907fd8c285da90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285da907fd8c285da90 /* ExtD6JointSolverPrep.cpp */; }; - FFFFc285daf87fd8c285daf8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285daf87fd8c285daf8 /* ExtDefaultCpuDispatcher.cpp */; }; - FFFFc285db607fd8c285db60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285db607fd8c285db60 /* ExtDefaultErrorCallback.cpp */; }; - FFFFc285dbc87fd8c285dbc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285dbc87fd8c285dbc8 /* ExtDefaultSimulationFilterShader.cpp */; }; - FFFFc285dc307fd8c285dc30 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285dc307fd8c285dc30 /* ExtDefaultStreams.cpp */; }; - FFFFc285dc987fd8c285dc98 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285dc987fd8c285dc98 /* ExtDistanceJoint.cpp */; }; - FFFFc285dd007fd8c285dd00 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285dd007fd8c285dd00 /* ExtDistanceJointSolverPrep.cpp */; }; - FFFFc285dd687fd8c285dd68 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285dd687fd8c285dd68 /* ExtExtensions.cpp */; }; - FFFFc285ddd07fd8c285ddd0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285ddd07fd8c285ddd0 /* ExtFixedJoint.cpp */; }; - FFFFc285de387fd8c285de38 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285de387fd8c285de38 /* ExtFixedJointSolverPrep.cpp */; }; - FFFFc285dea07fd8c285dea0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285dea07fd8c285dea0 /* ExtJoint.cpp */; }; - FFFFc285df087fd8c285df08 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285df087fd8c285df08 /* ExtMetaData.cpp */; }; - FFFFc285df707fd8c285df70 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285df707fd8c285df70 /* ExtParticleExt.cpp */; }; - FFFFc285dfd87fd8c285dfd8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285dfd87fd8c285dfd8 /* ExtPrismaticJoint.cpp */; }; - FFFFc285e0407fd8c285e040 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e0407fd8c285e040 /* ExtPrismaticJointSolverPrep.cpp */; }; - FFFFc285e0a87fd8c285e0a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e0a87fd8c285e0a8 /* ExtPvd.cpp */; }; - FFFFc285e1107fd8c285e110 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e1107fd8c285e110 /* ExtPxStringTable.cpp */; }; - FFFFc285e1787fd8c285e178 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e1787fd8c285e178 /* ExtRaycastCCD.cpp */; }; - FFFFc285e1e07fd8c285e1e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e1e07fd8c285e1e0 /* ExtRevoluteJoint.cpp */; }; - FFFFc285e2487fd8c285e248 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e2487fd8c285e248 /* ExtRevoluteJointSolverPrep.cpp */; }; - FFFFc285e2b07fd8c285e2b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e2b07fd8c285e2b0 /* ExtRigidBodyExt.cpp */; }; - FFFFc285e3187fd8c285e318 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e3187fd8c285e318 /* ExtSceneQueryExt.cpp */; }; - FFFFc285e3807fd8c285e380 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e3807fd8c285e380 /* ExtSimpleFactory.cpp */; }; - FFFFc285e3e87fd8c285e3e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e3e87fd8c285e3e8 /* ExtSmoothNormals.cpp */; }; - FFFFc285e4507fd8c285e450 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e4507fd8c285e450 /* ExtSphericalJoint.cpp */; }; - FFFFc285e4b87fd8c285e4b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e4b87fd8c285e4b8 /* ExtSphericalJointSolverPrep.cpp */; }; - FFFFc285e5207fd8c285e520 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc285e5207fd8c285e520 /* ExtTriangleMeshExt.cpp */; }; - FFFFc2860cd07fd8c2860cd0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc2860cd07fd8c2860cd0 /* SnSerialUtils.cpp */; }; - FFFFc2860d387fd8c2860d38 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc2860d387fd8c2860d38 /* SnSerialization.cpp */; }; - FFFFc2860da07fd8c2860da0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc2860da07fd8c2860da0 /* SnSerializationRegistry.cpp */; }; - FFFFc28610e07fd8c28610e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc28610e07fd8c28610e0 /* Binary/SnBinaryDeserialization.cpp */; }; - FFFFc28611487fd8c2861148 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc28611487fd8c2861148 /* Binary/SnBinarySerialization.cpp */; }; - FFFFc28611b07fd8c28611b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc28611b07fd8c28611b0 /* Binary/SnConvX.cpp */; }; - FFFFc28612187fd8c2861218 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc28612187fd8c2861218 /* Binary/SnConvX_Align.cpp */; }; - FFFFc28612807fd8c2861280 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc28612807fd8c2861280 /* Binary/SnConvX_Convert.cpp */; }; - FFFFc28612e87fd8c28612e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc28612e87fd8c28612e8 /* Binary/SnConvX_Error.cpp */; }; - FFFFc28613507fd8c2861350 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc28613507fd8c2861350 /* Binary/SnConvX_MetaData.cpp */; }; - FFFFc28613b87fd8c28613b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc28613b87fd8c28613b8 /* Binary/SnConvX_Output.cpp */; }; - FFFFc28614207fd8c2861420 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc28614207fd8c2861420 /* Binary/SnConvX_Union.cpp */; }; - FFFFc28614887fd8c2861488 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc28614887fd8c2861488 /* Binary/SnSerializationContext.cpp */; }; - FFFFc2861d787fd8c2861d78 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc2861d787fd8c2861d78 /* Xml/SnJointRepXSerializer.cpp */; }; - FFFFc2861de07fd8c2861de0 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc2861de07fd8c2861de0 /* Xml/SnRepXCoreSerializer.cpp */; }; - FFFFc2861e487fd8c2861e48 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc2861e487fd8c2861e48 /* Xml/SnRepXUpgrader.cpp */; }; - FFFFc2861eb07fd8c2861eb0 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDc2861eb07fd8c2861eb0 /* Xml/SnXmlSerialization.cpp */; }; - FFFFc285fae07fd8c285fae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDc285fae07fd8c285fae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; + FFFF128326e87fe8128326e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128326e87fe8128326e8 /* ExtBroadPhase.cpp */; }; + FFFF128327507fe812832750 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128327507fe812832750 /* ExtClothFabricCooker.cpp */; }; + FFFF128327b87fe8128327b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128327b87fe8128327b8 /* ExtClothGeodesicTetherCooker.cpp */; }; + FFFF128328207fe812832820 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128328207fe812832820 /* ExtClothMeshQuadifier.cpp */; }; + FFFF128328887fe812832888 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128328887fe812832888 /* ExtClothSimpleTetherCooker.cpp */; }; + FFFF128328f07fe8128328f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128328f07fe8128328f0 /* ExtCollection.cpp */; }; + FFFF128329587fe812832958 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128329587fe812832958 /* ExtConvexMeshExt.cpp */; }; + FFFF128329c07fe8128329c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128329c07fe8128329c0 /* ExtCpuWorkerThread.cpp */; }; + FFFF12832a287fe812832a28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832a287fe812832a28 /* ExtD6Joint.cpp */; }; + FFFF12832a907fe812832a90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832a907fe812832a90 /* ExtD6JointSolverPrep.cpp */; }; + FFFF12832af87fe812832af8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832af87fe812832af8 /* ExtDefaultCpuDispatcher.cpp */; }; + FFFF12832b607fe812832b60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832b607fe812832b60 /* ExtDefaultErrorCallback.cpp */; }; + FFFF12832bc87fe812832bc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832bc87fe812832bc8 /* ExtDefaultSimulationFilterShader.cpp */; }; + FFFF12832c307fe812832c30 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832c307fe812832c30 /* ExtDefaultStreams.cpp */; }; + FFFF12832c987fe812832c98 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832c987fe812832c98 /* ExtDistanceJoint.cpp */; }; + FFFF12832d007fe812832d00 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832d007fe812832d00 /* ExtDistanceJointSolverPrep.cpp */; }; + FFFF12832d687fe812832d68 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832d687fe812832d68 /* ExtExtensions.cpp */; }; + FFFF12832dd07fe812832dd0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832dd07fe812832dd0 /* ExtFixedJoint.cpp */; }; + FFFF12832e387fe812832e38 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832e387fe812832e38 /* ExtFixedJointSolverPrep.cpp */; }; + FFFF12832ea07fe812832ea0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832ea07fe812832ea0 /* ExtJoint.cpp */; }; + FFFF12832f087fe812832f08 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832f087fe812832f08 /* ExtMetaData.cpp */; }; + FFFF12832f707fe812832f70 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832f707fe812832f70 /* ExtParticleExt.cpp */; }; + FFFF12832fd87fe812832fd8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832fd87fe812832fd8 /* ExtPrismaticJoint.cpp */; }; + FFFF128330407fe812833040 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128330407fe812833040 /* ExtPrismaticJointSolverPrep.cpp */; }; + FFFF128330a87fe8128330a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128330a87fe8128330a8 /* ExtPvd.cpp */; }; + FFFF128331107fe812833110 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128331107fe812833110 /* ExtPxStringTable.cpp */; }; + FFFF128331787fe812833178 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128331787fe812833178 /* ExtRaycastCCD.cpp */; }; + FFFF128331e07fe8128331e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128331e07fe8128331e0 /* ExtRevoluteJoint.cpp */; }; + FFFF128332487fe812833248 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128332487fe812833248 /* ExtRevoluteJointSolverPrep.cpp */; }; + FFFF128332b07fe8128332b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128332b07fe8128332b0 /* ExtRigidBodyExt.cpp */; }; + FFFF128333187fe812833318 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128333187fe812833318 /* ExtSceneQueryExt.cpp */; }; + FFFF128333807fe812833380 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128333807fe812833380 /* ExtSimpleFactory.cpp */; }; + FFFF128333e87fe8128333e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128333e87fe8128333e8 /* ExtSmoothNormals.cpp */; }; + FFFF128334507fe812833450 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128334507fe812833450 /* ExtSphericalJoint.cpp */; }; + FFFF128334b87fe8128334b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128334b87fe8128334b8 /* ExtSphericalJointSolverPrep.cpp */; }; + FFFF128335207fe812833520 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128335207fe812833520 /* ExtTriangleMeshExt.cpp */; }; + FFFF12836ad07fe812836ad0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12836ad07fe812836ad0 /* SnSerialUtils.cpp */; }; + FFFF12836b387fe812836b38 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12836b387fe812836b38 /* SnSerialization.cpp */; }; + FFFF12836ba07fe812836ba0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12836ba07fe812836ba0 /* SnSerializationRegistry.cpp */; }; + FFFF12836ee07fe812836ee0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12836ee07fe812836ee0 /* Binary/SnBinaryDeserialization.cpp */; }; + FFFF12836f487fe812836f48 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12836f487fe812836f48 /* Binary/SnBinarySerialization.cpp */; }; + FFFF12836fb07fe812836fb0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12836fb07fe812836fb0 /* Binary/SnConvX.cpp */; }; + FFFF128370187fe812837018 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128370187fe812837018 /* Binary/SnConvX_Align.cpp */; }; + FFFF128370807fe812837080 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128370807fe812837080 /* Binary/SnConvX_Convert.cpp */; }; + FFFF128370e87fe8128370e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128370e87fe8128370e8 /* Binary/SnConvX_Error.cpp */; }; + FFFF128371507fe812837150 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128371507fe812837150 /* Binary/SnConvX_MetaData.cpp */; }; + FFFF128371b87fe8128371b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128371b87fe8128371b8 /* Binary/SnConvX_Output.cpp */; }; + FFFF128372207fe812837220 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128372207fe812837220 /* Binary/SnConvX_Union.cpp */; }; + FFFF128372887fe812837288 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128372887fe812837288 /* Binary/SnSerializationContext.cpp */; }; + FFFF12837b787fe812837b78 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12837b787fe812837b78 /* Xml/SnJointRepXSerializer.cpp */; }; + FFFF12837be07fe812837be0 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12837be07fe812837be0 /* Xml/SnRepXCoreSerializer.cpp */; }; + FFFF12837c487fe812837c48 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12837c487fe812837c48 /* Xml/SnRepXUpgrader.cpp */; }; + FFFF12837cb07fe812837cb0 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12837cb07fe812837cb0 /* Xml/SnXmlSerialization.cpp */; }; + FFFF12834ae07fe812834ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD12834ae07fe812834ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc4912c607fd8c4912c60 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc28580007fd8c2858000 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28580687fd8c2858068 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28580d07fd8c28580d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28581387fd8c2858138 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28581a07fd8c28581a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28582087fd8c2858208 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28582707fd8c2858270 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28582d87fd8c28582d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28583407fd8c2858340 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28583a87fd8c28583a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28584107fd8c2858410 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28584787fd8c2858478 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28584e07fd8c28584e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28585487fd8c2858548 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28585b07fd8c28585b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28586187fd8c2858618 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28586807fd8c2858680 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28586e87fd8c28586e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28587507fd8c2858750 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28587b87fd8c28587b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28588207fd8c2858820 /* PxJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointRepXSerializer.h"; path = "../../../Include/extensions/PxJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28588887fd8c2858888 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28588f07fd8c28588f0 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28589587fd8c2858958 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28589c07fd8c28589c0 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858a287fd8c2858a28 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858a907fd8c2858a90 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858af87fd8c2858af8 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858b607fd8c2858b60 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858bc87fd8c2858bc8 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858c307fd8c2858c30 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858c987fd8c2858c98 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858d007fd8c2858d00 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858d687fd8c2858d68 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858dd07fd8c2858dd0 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858e387fd8c2858e38 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858ea07fd8c2858ea0 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2858f087fd8c2858f08 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d0007fd8c285d000 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d0687fd8c285d068 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d0d07fd8c285d0d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d1387fd8c285d138 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d1a07fd8c285d1a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d2087fd8c285d208 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d2707fd8c285d270 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d2d87fd8c285d2d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d3407fd8c285d340 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d3a87fd8c285d3a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d4107fd8c285d410 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d4787fd8c285d478 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d4e07fd8c285d4e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d5487fd8c285d548 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d5b07fd8c285d5b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d6187fd8c285d618 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d6807fd8c285d680 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285d6e87fd8c285d6e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285d7507fd8c285d750 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285d7b87fd8c285d7b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285d8207fd8c285d820 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285d8887fd8c285d888 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285d8f07fd8c285d8f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285d9587fd8c285d958 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285d9c07fd8c285d9c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285da287fd8c285da28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285da907fd8c285da90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285daf87fd8c285daf8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285db607fd8c285db60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285dbc87fd8c285dbc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285dc307fd8c285dc30 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285dc987fd8c285dc98 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285dd007fd8c285dd00 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285dd687fd8c285dd68 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285ddd07fd8c285ddd0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285de387fd8c285de38 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285dea07fd8c285dea0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285df087fd8c285df08 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285df707fd8c285df70 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285dfd87fd8c285dfd8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e0407fd8c285e040 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e0a87fd8c285e0a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e1107fd8c285e110 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e1787fd8c285e178 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e1e07fd8c285e1e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e2487fd8c285e248 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e2b07fd8c285e2b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e3187fd8c285e318 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e3807fd8c285e380 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e3e87fd8c285e3e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e4507fd8c285e450 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e4b87fd8c285e4b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc285e5207fd8c285e520 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2860c007fd8c2860c00 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2860c687fd8c2860c68 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2860cd07fd8c2860cd0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2860d387fd8c2860d38 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2860da07fd8c2860da0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2860e087fd8c2860e08 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2860e707fd8c2860e70 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2860ed87fd8c2860ed8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2860f407fd8c2860f40 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2860fa87fd8c2860fa8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28610107fd8c2861010 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28610787fd8c2861078 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28610e07fd8c28610e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28611487fd8c2861148 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28611b07fd8c28611b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28612187fd8c2861218 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28612807fd8c2861280 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28612e87fd8c28612e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28613507fd8c2861350 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28613b87fd8c28613b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28614207fd8c2861420 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28614887fd8c2861488 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28614f07fd8c28614f0 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28615587fd8c2861558 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28615c07fd8c28615c0 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28616287fd8c2861628 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28616907fd8c2861690 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28616f87fd8c28616f8 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28617607fd8c2861760 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28617c87fd8c28617c8 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28618307fd8c2861830 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28618987fd8c2861898 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28619007fd8c2861900 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28619687fd8c2861968 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28619d07fd8c28619d0 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2861a387fd8c2861a38 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2861aa07fd8c2861aa0 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2861b087fd8c2861b08 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2861b707fd8c2861b70 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2861bd87fd8c2861bd8 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2861c407fd8c2861c40 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2861ca87fd8c2861ca8 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2861d107fd8c2861d10 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2861d787fd8c2861d78 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2861de07fd8c2861de0 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2861e487fd8c2861e48 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2861eb07fd8c2861eb0 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2861f187fd8c2861f18 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285f6007fd8c285f600 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285f6687fd8c285f668 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285f6d07fd8c285f6d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285f7387fd8c285f738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285f7a07fd8c285f7a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285f8087fd8c285f808 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285f8707fd8c285f870 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285f8d87fd8c285f8d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285f9407fd8c285f940 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285f9a87fd8c285f9a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285fa107fd8c285fa10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285fa787fd8c285fa78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDc285fae07fd8c285fae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12683c607fe812683c60 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD128336007fe812833600 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; + FFFD128336687fe812833668 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD128336d07fe8128336d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD128337387fe812833738 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD128337a07fe8128337a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; + FFFD128338087fe812833808 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD128338707fe812833870 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD128338d87fe8128338d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD128339407fe812833940 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD128339a87fe8128339a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833a107fe812833a10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833a787fe812833a78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833ae07fe812833ae0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833b487fe812833b48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833bb07fe812833bb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833c187fe812833c18 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833c807fe812833c80 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833ce87fe812833ce8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833d507fe812833d50 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833db87fe812833db8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833e207fe812833e20 /* PxJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointRepXSerializer.h"; path = "../../../Include/extensions/PxJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833e887fe812833e88 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833ef07fe812833ef0 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833f587fe812833f58 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD12833fc07fe812833fc0 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD128340287fe812834028 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD128340907fe812834090 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; + FFFD128340f87fe8128340f8 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD128341607fe812834160 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD128341c87fe8128341c8 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD128342307fe812834230 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD128342987fe812834298 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD128343007fe812834300 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD128343687fe812834368 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD128343d07fe8128343d0 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; + FFFD128344387fe812834438 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD128344a07fe8128344a0 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD128345087fe812834508 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD128320007fe812832000 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD128320687fe812832068 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD128320d07fe8128320d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD128321387fe812832138 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD128321a07fe8128321a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD128322087fe812832208 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD128322707fe812832270 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; + FFFD128322d87fe8128322d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD128323407fe812832340 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD128323a87fe8128323a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; + FFFD128324107fe812832410 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD128324787fe812832478 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD128324e07fe8128324e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD128325487fe812832548 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD128325b07fe8128325b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD128326187fe812832618 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD128326807fe812832680 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD128326e87fe8128326e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128327507fe812832750 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128327b87fe8128327b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128328207fe812832820 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128328887fe812832888 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128328f07fe8128328f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128329587fe812832958 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128329c07fe8128329c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832a287fe812832a28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832a907fe812832a90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832af87fe812832af8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832b607fe812832b60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832bc87fe812832bc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832c307fe812832c30 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832c987fe812832c98 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832d007fe812832d00 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832d687fe812832d68 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832dd07fe812832dd0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832e387fe812832e38 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832ea07fe812832ea0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832f087fe812832f08 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832f707fe812832f70 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12832fd87fe812832fd8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128330407fe812833040 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128330a87fe8128330a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128331107fe812833110 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128331787fe812833178 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128331e07fe8128331e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128332487fe812833248 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128332b07fe8128332b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128333187fe812833318 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128333807fe812833380 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128333e87fe8128333e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128334507fe812833450 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128334b87fe8128334b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128335207fe812833520 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12836a007fe812836a00 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD12836a687fe812836a68 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; + FFFD12836ad07fe812836ad0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12836b387fe812836b38 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12836ba07fe812836ba0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12836c087fe812836c08 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; + FFFD12836c707fe812836c70 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; + FFFD12836cd87fe812836cd8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFD12836d407fe812836d40 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD12836da87fe812836da8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; + FFFD12836e107fe812836e10 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; + FFFD12836e787fe812836e78 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD12836ee07fe812836ee0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12836f487fe812836f48 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12836fb07fe812836fb0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128370187fe812837018 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128370807fe812837080 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128370e87fe8128370e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128371507fe812837150 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128371b87fe8128371b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128372207fe812837220 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128372887fe812837288 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128372f07fe8128372f0 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; + FFFD128373587fe812837358 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD128373c07fe8128373c0 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD128374287fe812837428 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD128374907fe812837490 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD128374f87fe8128374f8 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD128375607fe812837560 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD128375c87fe8128375c8 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; + FFFD128376307fe812837630 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD128376987fe812837698 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD128377007fe812837700 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD128377687fe812837768 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD128377d07fe8128377d0 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD128378387fe812837838 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD128378a07fe8128378a0 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD128379087fe812837908 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD128379707fe812837970 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD128379d87fe8128379d8 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; + FFFD12837a407fe812837a40 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD12837aa87fe812837aa8 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD12837b107fe812837b10 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD12837b787fe812837b78 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12837be07fe812837be0 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12837c487fe812837c48 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12837cb07fe812837cb0 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12837d187fe812837d18 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; + FFFD128346007fe812834600 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD128346687fe812834668 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD128346d07fe8128346d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD128347387fe812834738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD128347a07fe8128347a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD128348087fe812834808 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD128348707fe812834870 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD128348d87fe8128348d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD128349407fe812834940 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD128349a87fe8128349a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD12834a107fe812834a10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD12834a787fe812834a78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD12834ae07fe812834ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c4912c607fd8c4912c60 /* Resources */ = { + FFF212683c607fe812683c60 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -804,7 +804,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc4912c607fd8c4912c60 /* Frameworks */ = { + FFFC12683c607fe812683c60 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -814,64 +814,64 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c4912c607fd8c4912c60 /* Sources */ = { + FFF812683c607fe812683c60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc285d6e87fd8c285d6e8, - FFFFc285d7507fd8c285d750, - FFFFc285d7b87fd8c285d7b8, - FFFFc285d8207fd8c285d820, - FFFFc285d8887fd8c285d888, - FFFFc285d8f07fd8c285d8f0, - FFFFc285d9587fd8c285d958, - FFFFc285d9c07fd8c285d9c0, - FFFFc285da287fd8c285da28, - FFFFc285da907fd8c285da90, - FFFFc285daf87fd8c285daf8, - FFFFc285db607fd8c285db60, - FFFFc285dbc87fd8c285dbc8, - FFFFc285dc307fd8c285dc30, - FFFFc285dc987fd8c285dc98, - FFFFc285dd007fd8c285dd00, - FFFFc285dd687fd8c285dd68, - FFFFc285ddd07fd8c285ddd0, - FFFFc285de387fd8c285de38, - FFFFc285dea07fd8c285dea0, - FFFFc285df087fd8c285df08, - FFFFc285df707fd8c285df70, - FFFFc285dfd87fd8c285dfd8, - FFFFc285e0407fd8c285e040, - FFFFc285e0a87fd8c285e0a8, - FFFFc285e1107fd8c285e110, - FFFFc285e1787fd8c285e178, - FFFFc285e1e07fd8c285e1e0, - FFFFc285e2487fd8c285e248, - FFFFc285e2b07fd8c285e2b0, - FFFFc285e3187fd8c285e318, - FFFFc285e3807fd8c285e380, - FFFFc285e3e87fd8c285e3e8, - FFFFc285e4507fd8c285e450, - FFFFc285e4b87fd8c285e4b8, - FFFFc285e5207fd8c285e520, - FFFFc2860cd07fd8c2860cd0, - FFFFc2860d387fd8c2860d38, - FFFFc2860da07fd8c2860da0, - FFFFc28610e07fd8c28610e0, - FFFFc28611487fd8c2861148, - FFFFc28611b07fd8c28611b0, - FFFFc28612187fd8c2861218, - FFFFc28612807fd8c2861280, - FFFFc28612e87fd8c28612e8, - FFFFc28613507fd8c2861350, - FFFFc28613b87fd8c28613b8, - FFFFc28614207fd8c2861420, - FFFFc28614887fd8c2861488, - FFFFc2861d787fd8c2861d78, - FFFFc2861de07fd8c2861de0, - FFFFc2861e487fd8c2861e48, - FFFFc2861eb07fd8c2861eb0, - FFFFc285fae07fd8c285fae0, + FFFF128326e87fe8128326e8, + FFFF128327507fe812832750, + FFFF128327b87fe8128327b8, + FFFF128328207fe812832820, + FFFF128328887fe812832888, + FFFF128328f07fe8128328f0, + FFFF128329587fe812832958, + FFFF128329c07fe8128329c0, + FFFF12832a287fe812832a28, + FFFF12832a907fe812832a90, + FFFF12832af87fe812832af8, + FFFF12832b607fe812832b60, + FFFF12832bc87fe812832bc8, + FFFF12832c307fe812832c30, + FFFF12832c987fe812832c98, + FFFF12832d007fe812832d00, + FFFF12832d687fe812832d68, + FFFF12832dd07fe812832dd0, + FFFF12832e387fe812832e38, + FFFF12832ea07fe812832ea0, + FFFF12832f087fe812832f08, + FFFF12832f707fe812832f70, + FFFF12832fd87fe812832fd8, + FFFF128330407fe812833040, + FFFF128330a87fe8128330a8, + FFFF128331107fe812833110, + FFFF128331787fe812833178, + FFFF128331e07fe8128331e0, + FFFF128332487fe812833248, + FFFF128332b07fe8128332b0, + FFFF128333187fe812833318, + FFFF128333807fe812833380, + FFFF128333e87fe8128333e8, + FFFF128334507fe812833450, + FFFF128334b87fe8128334b8, + FFFF128335207fe812833520, + FFFF12836ad07fe812836ad0, + FFFF12836b387fe812836b38, + FFFF12836ba07fe812836ba0, + FFFF12836ee07fe812836ee0, + FFFF12836f487fe812836f48, + FFFF12836fb07fe812836fb0, + FFFF128370187fe812837018, + FFFF128370807fe812837080, + FFFF128370e87fe8128370e8, + FFFF128371507fe812837150, + FFFF128371b87fe8128371b8, + FFFF128372207fe812837220, + FFFF128372887fe812837288, + FFFF12837b787fe812837b78, + FFFF12837be07fe812837be0, + FFFF12837c487fe812837c48, + FFFF12837cb07fe812837cb0, + FFFF12834ae07fe812834ae0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -880,56 +880,56 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4c4910c007fd8c4910c00 /* PBXTargetDependency */ = { + FFF412681b107fe812681b10 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc4a7d6007fd8c4a7d600 /* PsFastXml */; - targetProxy = FFF5c4a7d6007fd8c4a7d600 /* PBXContainerItemProxy */; + target = FFFA1265b4d07fe81265b4d0 /* PsFastXml */; + targetProxy = FFF51265b4d07fe81265b4d0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SceneQuery */ - FFFFc28662007fd8c2866200 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28662007fd8c2866200 /* SqAABBPruner.cpp */; }; - FFFFc28662687fd8c2866268 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28662687fd8c2866268 /* SqAABBTree.cpp */; }; - FFFFc28662d07fd8c28662d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28662d07fd8c28662d0 /* SqAABBTreeUpdateMap.cpp */; }; - FFFFc28663387fd8c2866338 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28663387fd8c2866338 /* SqBounds.cpp */; }; - FFFFc28663a07fd8c28663a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28663a07fd8c28663a0 /* SqBucketPruner.cpp */; }; - FFFFc28664087fd8c2866408 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28664087fd8c2866408 /* SqExtendedBucketPruner.cpp */; }; - FFFFc28664707fd8c2866470 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28664707fd8c2866470 /* SqMetaData.cpp */; }; - FFFFc28664d87fd8c28664d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28664d87fd8c28664d8 /* SqPruningPool.cpp */; }; - FFFFc28665407fd8c2866540 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28665407fd8c2866540 /* SqPruningStructure.cpp */; }; - FFFFc28665a87fd8c28665a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28665a87fd8c28665a8 /* SqSceneQueryManager.cpp */; }; + FFFF1283aa007fe81283aa00 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283aa007fe81283aa00 /* SqAABBPruner.cpp */; }; + FFFF1283aa687fe81283aa68 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283aa687fe81283aa68 /* SqAABBTree.cpp */; }; + FFFF1283aad07fe81283aad0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283aad07fe81283aad0 /* SqAABBTreeUpdateMap.cpp */; }; + FFFF1283ab387fe81283ab38 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283ab387fe81283ab38 /* SqBounds.cpp */; }; + FFFF1283aba07fe81283aba0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283aba07fe81283aba0 /* SqBucketPruner.cpp */; }; + FFFF1283ac087fe81283ac08 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283ac087fe81283ac08 /* SqExtendedBucketPruner.cpp */; }; + FFFF1283ac707fe81283ac70 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283ac707fe81283ac70 /* SqMetaData.cpp */; }; + FFFF1283acd87fe81283acd8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283acd87fe81283acd8 /* SqPruningPool.cpp */; }; + FFFF1283ad407fe81283ad40 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283ad407fe81283ad40 /* SqPruningStructure.cpp */; }; + FFFF1283ada87fe81283ada8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283ada87fe81283ada8 /* SqSceneQueryManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc491f0907fd8c491f090 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc28662007fd8c2866200 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28662687fd8c2866268 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28662d07fd8c28662d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28663387fd8c2866338 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28663a07fd8c28663a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28664087fd8c2866408 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28664707fd8c2866470 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28664d87fd8c28664d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28665407fd8c2866540 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28665a87fd8c28665a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28666107fd8c2866610 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28666787fd8c2866678 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28666e07fd8c28666e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28667487fd8c2866748 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28667b07fd8c28667b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28668187fd8c2866818 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28668807fd8c2866880 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28668e87fd8c28668e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28669507fd8c2866950 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28669b87fd8c28669b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; - FFFDc49232d07fd8c49232d0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDc49233387fd8c4923338 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc49233a07fd8c49233a0 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFDc49234087fd8c4923408 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD12694cb07fe812694cb0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD1283aa007fe81283aa00 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1283aa687fe81283aa68 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1283aad07fe81283aad0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1283ab387fe81283ab38 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1283aba07fe81283aba0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1283ac087fe81283ac08 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1283ac707fe81283ac70 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1283acd87fe81283acd8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1283ad407fe81283ad40 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1283ada87fe81283ada8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1283ae107fe81283ae10 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283ae787fe81283ae78 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283aee07fe81283aee0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283af487fe81283af48 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283afb07fe81283afb0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283b0187fe81283b018 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283b0807fe81283b080 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283b0e87fe81283b0e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283b1507fe81283b150 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283b1b87fe81283b1b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; + FFFD12698f507fe812698f50 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD12698fb87fe812698fb8 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; + FFFD126990207fe812699020 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD126990887fe812699088 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c491f0907fd8c491f090 /* Resources */ = { + FFF212694cb07fe812694cb0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -939,7 +939,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc491f0907fd8c491f090 /* Frameworks */ = { + FFFC12694cb07fe812694cb0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -949,20 +949,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c491f0907fd8c491f090 /* Sources */ = { + FFF812694cb07fe812694cb0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc28662007fd8c2866200, - FFFFc28662687fd8c2866268, - FFFFc28662d07fd8c28662d0, - FFFFc28663387fd8c2866338, - FFFFc28663a07fd8c28663a0, - FFFFc28664087fd8c2866408, - FFFFc28664707fd8c2866470, - FFFFc28664d87fd8c28664d8, - FFFFc28665407fd8c2866540, - FFFFc28665a87fd8c28665a8, + FFFF1283aa007fe81283aa00, + FFFF1283aa687fe81283aa68, + FFFF1283aad07fe81283aad0, + FFFF1283ab387fe81283ab38, + FFFF1283aba07fe81283aba0, + FFFF1283ac087fe81283ac08, + FFFF1283ac707fe81283ac70, + FFFF1283acd87fe81283acd8, + FFFF1283ad407fe81283ad40, + FFFF1283ada87fe81283ada8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -974,154 +974,154 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SimulationController */ - FFFFc18863d07fd8c18863d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18863d07fd8c18863d0 /* ScActorCore.cpp */; }; - FFFFc18864387fd8c1886438 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18864387fd8c1886438 /* ScActorSim.cpp */; }; - FFFFc18864a07fd8c18864a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18864a07fd8c18864a0 /* ScArticulationCore.cpp */; }; - FFFFc18865087fd8c1886508 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18865087fd8c1886508 /* ScArticulationJointCore.cpp */; }; - FFFFc18865707fd8c1886570 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18865707fd8c1886570 /* ScArticulationJointSim.cpp */; }; - FFFFc18865d87fd8c18865d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18865d87fd8c18865d8 /* ScArticulationSim.cpp */; }; - FFFFc18866407fd8c1886640 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18866407fd8c1886640 /* ScBodyCore.cpp */; }; - FFFFc18866a87fd8c18866a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18866a87fd8c18866a8 /* ScBodyCoreKinematic.cpp */; }; - FFFFc18867107fd8c1886710 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18867107fd8c1886710 /* ScBodySim.cpp */; }; - FFFFc18867787fd8c1886778 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18867787fd8c1886778 /* ScConstraintCore.cpp */; }; - FFFFc18867e07fd8c18867e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18867e07fd8c18867e0 /* ScConstraintGroupNode.cpp */; }; - FFFFc18868487fd8c1886848 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18868487fd8c1886848 /* ScConstraintInteraction.cpp */; }; - FFFFc18868b07fd8c18868b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18868b07fd8c18868b0 /* ScConstraintProjectionManager.cpp */; }; - FFFFc18869187fd8c1886918 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18869187fd8c1886918 /* ScConstraintProjectionTree.cpp */; }; - FFFFc18869807fd8c1886980 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18869807fd8c1886980 /* ScConstraintSim.cpp */; }; - FFFFc18869e87fd8c18869e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18869e87fd8c18869e8 /* ScElementInteractionMarker.cpp */; }; - FFFFc1886a507fd8c1886a50 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886a507fd8c1886a50 /* ScElementSim.cpp */; }; - FFFFc1886ab87fd8c1886ab8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886ab87fd8c1886ab8 /* ScInteraction.cpp */; }; - FFFFc1886b207fd8c1886b20 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886b207fd8c1886b20 /* ScIterators.cpp */; }; - FFFFc1886b887fd8c1886b88 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886b887fd8c1886b88 /* ScMaterialCore.cpp */; }; - FFFFc1886bf07fd8c1886bf0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886bf07fd8c1886bf0 /* ScMetaData.cpp */; }; - FFFFc1886c587fd8c1886c58 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886c587fd8c1886c58 /* ScNPhaseCore.cpp */; }; - FFFFc1886cc07fd8c1886cc0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886cc07fd8c1886cc0 /* ScPhysics.cpp */; }; - FFFFc1886d287fd8c1886d28 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886d287fd8c1886d28 /* ScRigidCore.cpp */; }; - FFFFc1886d907fd8c1886d90 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886d907fd8c1886d90 /* ScRigidSim.cpp */; }; - FFFFc1886df87fd8c1886df8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886df87fd8c1886df8 /* ScScene.cpp */; }; - FFFFc1886e607fd8c1886e60 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886e607fd8c1886e60 /* ScShapeCore.cpp */; }; - FFFFc1886ec87fd8c1886ec8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886ec87fd8c1886ec8 /* ScShapeInteraction.cpp */; }; - FFFFc1886f307fd8c1886f30 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886f307fd8c1886f30 /* ScShapeSim.cpp */; }; - FFFFc1886f987fd8c1886f98 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1886f987fd8c1886f98 /* ScSimStats.cpp */; }; - FFFFc18870007fd8c1887000 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18870007fd8c1887000 /* ScSimulationController.cpp */; }; - FFFFc18870687fd8c1887068 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18870687fd8c1887068 /* ScSqBoundsManager.cpp */; }; - FFFFc18870d07fd8c18870d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18870d07fd8c18870d0 /* ScStaticCore.cpp */; }; - FFFFc18871387fd8c1887138 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18871387fd8c1887138 /* ScStaticSim.cpp */; }; - FFFFc18871a07fd8c18871a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18871a07fd8c18871a0 /* ScTriggerInteraction.cpp */; }; - FFFFc18873407fd8c1887340 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18873407fd8c1887340 /* particles/ScParticleBodyInteraction.cpp */; }; - FFFFc18873a87fd8c18873a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18873a87fd8c18873a8 /* particles/ScParticlePacketShape.cpp */; }; - FFFFc18874107fd8c1887410 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18874107fd8c1887410 /* particles/ScParticleSystemCore.cpp */; }; - FFFFc18874787fd8c1887478 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18874787fd8c1887478 /* particles/ScParticleSystemSim.cpp */; }; - FFFFc18875b07fd8c18875b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18875b07fd8c18875b0 /* cloth/ScClothCore.cpp */; }; - FFFFc18876187fd8c1887618 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18876187fd8c1887618 /* cloth/ScClothFabricCore.cpp */; }; - FFFFc18876807fd8c1887680 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18876807fd8c1887680 /* cloth/ScClothShape.cpp */; }; - FFFFc18876e87fd8c18876e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18876e87fd8c18876e8 /* cloth/ScClothSim.cpp */; }; + FFFF1106a5d07fe81106a5d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a5d07fe81106a5d0 /* ScActorCore.cpp */; }; + FFFF1106a6387fe81106a638 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a6387fe81106a638 /* ScActorSim.cpp */; }; + FFFF1106a6a07fe81106a6a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a6a07fe81106a6a0 /* ScArticulationCore.cpp */; }; + FFFF1106a7087fe81106a708 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a7087fe81106a708 /* ScArticulationJointCore.cpp */; }; + FFFF1106a7707fe81106a770 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a7707fe81106a770 /* ScArticulationJointSim.cpp */; }; + FFFF1106a7d87fe81106a7d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a7d87fe81106a7d8 /* ScArticulationSim.cpp */; }; + FFFF1106a8407fe81106a840 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a8407fe81106a840 /* ScBodyCore.cpp */; }; + FFFF1106a8a87fe81106a8a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a8a87fe81106a8a8 /* ScBodyCoreKinematic.cpp */; }; + FFFF1106a9107fe81106a910 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a9107fe81106a910 /* ScBodySim.cpp */; }; + FFFF1106a9787fe81106a978 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a9787fe81106a978 /* ScConstraintCore.cpp */; }; + FFFF1106a9e07fe81106a9e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a9e07fe81106a9e0 /* ScConstraintGroupNode.cpp */; }; + FFFF1106aa487fe81106aa48 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106aa487fe81106aa48 /* ScConstraintInteraction.cpp */; }; + FFFF1106aab07fe81106aab0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106aab07fe81106aab0 /* ScConstraintProjectionManager.cpp */; }; + FFFF1106ab187fe81106ab18 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106ab187fe81106ab18 /* ScConstraintProjectionTree.cpp */; }; + FFFF1106ab807fe81106ab80 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106ab807fe81106ab80 /* ScConstraintSim.cpp */; }; + FFFF1106abe87fe81106abe8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106abe87fe81106abe8 /* ScElementInteractionMarker.cpp */; }; + FFFF1106ac507fe81106ac50 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106ac507fe81106ac50 /* ScElementSim.cpp */; }; + FFFF1106acb87fe81106acb8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106acb87fe81106acb8 /* ScInteraction.cpp */; }; + FFFF1106ad207fe81106ad20 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106ad207fe81106ad20 /* ScIterators.cpp */; }; + FFFF1106ad887fe81106ad88 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106ad887fe81106ad88 /* ScMaterialCore.cpp */; }; + FFFF1106adf07fe81106adf0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106adf07fe81106adf0 /* ScMetaData.cpp */; }; + FFFF1106ae587fe81106ae58 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106ae587fe81106ae58 /* ScNPhaseCore.cpp */; }; + FFFF1106aec07fe81106aec0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106aec07fe81106aec0 /* ScPhysics.cpp */; }; + FFFF1106af287fe81106af28 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106af287fe81106af28 /* ScRigidCore.cpp */; }; + FFFF1106af907fe81106af90 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106af907fe81106af90 /* ScRigidSim.cpp */; }; + FFFF1106aff87fe81106aff8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106aff87fe81106aff8 /* ScScene.cpp */; }; + FFFF1106b0607fe81106b060 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b0607fe81106b060 /* ScShapeCore.cpp */; }; + FFFF1106b0c87fe81106b0c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b0c87fe81106b0c8 /* ScShapeInteraction.cpp */; }; + FFFF1106b1307fe81106b130 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b1307fe81106b130 /* ScShapeSim.cpp */; }; + FFFF1106b1987fe81106b198 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b1987fe81106b198 /* ScSimStats.cpp */; }; + FFFF1106b2007fe81106b200 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b2007fe81106b200 /* ScSimulationController.cpp */; }; + FFFF1106b2687fe81106b268 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b2687fe81106b268 /* ScSqBoundsManager.cpp */; }; + FFFF1106b2d07fe81106b2d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b2d07fe81106b2d0 /* ScStaticCore.cpp */; }; + FFFF1106b3387fe81106b338 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b3387fe81106b338 /* ScStaticSim.cpp */; }; + FFFF1106b3a07fe81106b3a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b3a07fe81106b3a0 /* ScTriggerInteraction.cpp */; }; + FFFF1106b5407fe81106b540 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b5407fe81106b540 /* particles/ScParticleBodyInteraction.cpp */; }; + FFFF1106b5a87fe81106b5a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b5a87fe81106b5a8 /* particles/ScParticlePacketShape.cpp */; }; + FFFF1106b6107fe81106b610 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b6107fe81106b610 /* particles/ScParticleSystemCore.cpp */; }; + FFFF1106b6787fe81106b678 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b6787fe81106b678 /* particles/ScParticleSystemSim.cpp */; }; + FFFF1106b7b07fe81106b7b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b7b07fe81106b7b0 /* cloth/ScClothCore.cpp */; }; + FFFF1106b8187fe81106b818 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b8187fe81106b818 /* cloth/ScClothFabricCore.cpp */; }; + FFFF1106b8807fe81106b880 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b8807fe81106b880 /* cloth/ScClothShape.cpp */; }; + FFFF1106b8e87fe81106b8e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b8e87fe81106b8e8 /* cloth/ScClothSim.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc49236207fd8c4923620 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc2868c007fd8c2868c00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2868c687fd8c2868c68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2868cd07fd8c2868cd0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2868d387fd8c2868d38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2868da07fd8c2868da0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2868e087fd8c2868e08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2868e707fd8c2868e70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2868ed87fd8c2868ed8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2868f407fd8c2868f40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2868fa87fd8c2868fa8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28690107fd8c2869010 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28690787fd8c2869078 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28690e07fd8c28690e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28691487fd8c2869148 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28691b07fd8c28691b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18856007fd8c1885600 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18856687fd8c1885668 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18856d07fd8c18856d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18857387fd8c1885738 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18857a07fd8c18857a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18858087fd8c1885808 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18858707fd8c1885870 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18858d87fd8c18858d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18859407fd8c1885940 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18859a87fd8c18859a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885a107fd8c1885a10 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885a787fd8c1885a78 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885ae07fd8c1885ae0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885b487fd8c1885b48 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885bb07fd8c1885bb0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885c187fd8c1885c18 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885c807fd8c1885c80 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885ce87fd8c1885ce8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885d507fd8c1885d50 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885db87fd8c1885db8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885e207fd8c1885e20 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885e887fd8c1885e88 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885ef07fd8c1885ef0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885f587fd8c1885f58 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1885fc07fd8c1885fc0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18860287fd8c1886028 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18860907fd8c1886090 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18860f87fd8c18860f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18861607fd8c1886160 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18861c87fd8c18861c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18862307fd8c1886230 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18862987fd8c1886298 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18863007fd8c1886300 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18863687fd8c1886368 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18863d07fd8c18863d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18864387fd8c1886438 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18864a07fd8c18864a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18865087fd8c1886508 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18865707fd8c1886570 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18865d87fd8c18865d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18866407fd8c1886640 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18866a87fd8c18866a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18867107fd8c1886710 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18867787fd8c1886778 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18867e07fd8c18867e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18868487fd8c1886848 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18868b07fd8c18868b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18869187fd8c1886918 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18869807fd8c1886980 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18869e87fd8c18869e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886a507fd8c1886a50 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886ab87fd8c1886ab8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886b207fd8c1886b20 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886b887fd8c1886b88 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886bf07fd8c1886bf0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886c587fd8c1886c58 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886cc07fd8c1886cc0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886d287fd8c1886d28 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886d907fd8c1886d90 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886df87fd8c1886df8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886e607fd8c1886e60 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886ec87fd8c1886ec8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886f307fd8c1886f30 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1886f987fd8c1886f98 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18870007fd8c1887000 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18870687fd8c1887068 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18870d07fd8c18870d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18871387fd8c1887138 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18871a07fd8c18871a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18872087fd8c1887208 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18872707fd8c1887270 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18872d87fd8c18872d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18873407fd8c1887340 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18873a87fd8c18873a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18874107fd8c1887410 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18874787fd8c1887478 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18874e07fd8c18874e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18875487fd8c1887548 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18875b07fd8c18875b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18876187fd8c1887618 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18876807fd8c1887680 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18876e87fd8c18876e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD126992107fe812699210 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD1283d4007fe81283d400 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d4687fe81283d468 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d4d07fe81283d4d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d5387fe81283d538 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d5a07fe81283d5a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d6087fe81283d608 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d6707fe81283d670 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d6d87fe81283d6d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d7407fe81283d740 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d7a87fe81283d7a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d8107fe81283d810 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d8787fe81283d878 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d8e07fe81283d8e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d9487fe81283d948 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD1283d9b07fe81283d9b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD110698007fe811069800 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD110698687fe811069868 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD110698d07fe8110698d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD110699387fe811069938 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD110699a07fe8110699a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069a087fe811069a08 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069a707fe811069a70 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069ad87fe811069ad8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069b407fe811069b40 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069ba87fe811069ba8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069c107fe811069c10 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069c787fe811069c78 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069ce07fe811069ce0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069d487fe811069d48 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069db07fe811069db0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069e187fe811069e18 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069e807fe811069e80 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069ee87fe811069ee8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069f507fe811069f50 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD11069fb87fe811069fb8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a0207fe81106a020 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a0887fe81106a088 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a0f07fe81106a0f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a1587fe81106a158 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a1c07fe81106a1c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a2287fe81106a228 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a2907fe81106a290 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a2f87fe81106a2f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a3607fe81106a360 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a3c87fe81106a3c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a4307fe81106a430 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a4987fe81106a498 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a5007fe81106a500 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a5687fe81106a568 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106a5d07fe81106a5d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106a6387fe81106a638 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106a6a07fe81106a6a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106a7087fe81106a708 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106a7707fe81106a770 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106a7d87fe81106a7d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106a8407fe81106a840 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106a8a87fe81106a8a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106a9107fe81106a910 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106a9787fe81106a978 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106a9e07fe81106a9e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106aa487fe81106aa48 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106aab07fe81106aab0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106ab187fe81106ab18 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106ab807fe81106ab80 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106abe87fe81106abe8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106ac507fe81106ac50 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106acb87fe81106acb8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106ad207fe81106ad20 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106ad887fe81106ad88 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106adf07fe81106adf0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106ae587fe81106ae58 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106aec07fe81106aec0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106af287fe81106af28 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106af907fe81106af90 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106aff87fe81106aff8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b0607fe81106b060 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b0c87fe81106b0c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b1307fe81106b130 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b1987fe81106b198 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b2007fe81106b200 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b2687fe81106b268 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b2d07fe81106b2d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b3387fe81106b338 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b3a07fe81106b3a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b4087fe81106b408 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106b4707fe81106b470 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106b4d87fe81106b4d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106b5407fe81106b540 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b5a87fe81106b5a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b6107fe81106b610 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b6787fe81106b678 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b6e07fe81106b6e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106b7487fe81106b748 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD1106b7b07fe81106b7b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b8187fe81106b818 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b8807fe81106b880 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1106b8e87fe81106b8e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c49236207fd8c4923620 /* Resources */ = { + FFF2126992107fe812699210 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1131,7 +1131,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc49236207fd8c4923620 /* Frameworks */ = { + FFFC126992107fe812699210 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1141,53 +1141,53 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c49236207fd8c4923620 /* Sources */ = { + FFF8126992107fe812699210 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc18863d07fd8c18863d0, - FFFFc18864387fd8c1886438, - FFFFc18864a07fd8c18864a0, - FFFFc18865087fd8c1886508, - FFFFc18865707fd8c1886570, - FFFFc18865d87fd8c18865d8, - FFFFc18866407fd8c1886640, - FFFFc18866a87fd8c18866a8, - FFFFc18867107fd8c1886710, - FFFFc18867787fd8c1886778, - FFFFc18867e07fd8c18867e0, - FFFFc18868487fd8c1886848, - FFFFc18868b07fd8c18868b0, - FFFFc18869187fd8c1886918, - FFFFc18869807fd8c1886980, - FFFFc18869e87fd8c18869e8, - FFFFc1886a507fd8c1886a50, - FFFFc1886ab87fd8c1886ab8, - FFFFc1886b207fd8c1886b20, - FFFFc1886b887fd8c1886b88, - FFFFc1886bf07fd8c1886bf0, - FFFFc1886c587fd8c1886c58, - FFFFc1886cc07fd8c1886cc0, - FFFFc1886d287fd8c1886d28, - FFFFc1886d907fd8c1886d90, - FFFFc1886df87fd8c1886df8, - FFFFc1886e607fd8c1886e60, - FFFFc1886ec87fd8c1886ec8, - FFFFc1886f307fd8c1886f30, - FFFFc1886f987fd8c1886f98, - FFFFc18870007fd8c1887000, - FFFFc18870687fd8c1887068, - FFFFc18870d07fd8c18870d0, - FFFFc18871387fd8c1887138, - FFFFc18871a07fd8c18871a0, - FFFFc18873407fd8c1887340, - FFFFc18873a87fd8c18873a8, - FFFFc18874107fd8c1887410, - FFFFc18874787fd8c1887478, - FFFFc18875b07fd8c18875b0, - FFFFc18876187fd8c1887618, - FFFFc18876807fd8c1887680, - FFFFc18876e87fd8c18876e8, + FFFF1106a5d07fe81106a5d0, + FFFF1106a6387fe81106a638, + FFFF1106a6a07fe81106a6a0, + FFFF1106a7087fe81106a708, + FFFF1106a7707fe81106a770, + FFFF1106a7d87fe81106a7d8, + FFFF1106a8407fe81106a840, + FFFF1106a8a87fe81106a8a8, + FFFF1106a9107fe81106a910, + FFFF1106a9787fe81106a978, + FFFF1106a9e07fe81106a9e0, + FFFF1106aa487fe81106aa48, + FFFF1106aab07fe81106aab0, + FFFF1106ab187fe81106ab18, + FFFF1106ab807fe81106ab80, + FFFF1106abe87fe81106abe8, + FFFF1106ac507fe81106ac50, + FFFF1106acb87fe81106acb8, + FFFF1106ad207fe81106ad20, + FFFF1106ad887fe81106ad88, + FFFF1106adf07fe81106adf0, + FFFF1106ae587fe81106ae58, + FFFF1106aec07fe81106aec0, + FFFF1106af287fe81106af28, + FFFF1106af907fe81106af90, + FFFF1106aff87fe81106aff8, + FFFF1106b0607fe81106b060, + FFFF1106b0c87fe81106b0c8, + FFFF1106b1307fe81106b130, + FFFF1106b1987fe81106b198, + FFFF1106b2007fe81106b200, + FFFF1106b2687fe81106b268, + FFFF1106b2d07fe81106b2d0, + FFFF1106b3387fe81106b338, + FFFF1106b3a07fe81106b3a0, + FFFF1106b5407fe81106b540, + FFFF1106b5a87fe81106b5a8, + FFFF1106b6107fe81106b610, + FFFF1106b6787fe81106b678, + FFFF1106b7b07fe81106b7b0, + FFFF1106b8187fe81106b818, + FFFF1106b8807fe81106b880, + FFFF1106b8e87fe81106b8e8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1199,80 +1199,80 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCooking */ - FFFFc484fd007fd8c484fd00 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDc4912c607fd8c4912c60 /* PhysXExtensions */; }; - FFFFc18898007fd8c1889800 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18898007fd8c1889800 /* Adjacencies.cpp */; }; - FFFFc18898687fd8c1889868 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18898687fd8c1889868 /* Cooking.cpp */; }; - FFFFc18898d07fd8c18898d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18898d07fd8c18898d0 /* CookingUtils.cpp */; }; - FFFFc18899387fd8c1889938 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18899387fd8c1889938 /* EdgeList.cpp */; }; - FFFFc18899a07fd8c18899a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18899a07fd8c18899a0 /* MeshCleaner.cpp */; }; - FFFFc1889a087fd8c1889a08 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1889a087fd8c1889a08 /* Quantizer.cpp */; }; - FFFFc1889ce07fd8c1889ce0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1889ce07fd8c1889ce0 /* mesh/GrbTriangleMeshCooking.cpp */; }; - FFFFc1889d487fd8c1889d48 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1889d487fd8c1889d48 /* mesh/HeightFieldCooking.cpp */; }; - FFFFc1889db07fd8c1889db0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1889db07fd8c1889db0 /* mesh/RTreeCooking.cpp */; }; - FFFFc1889e187fd8c1889e18 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1889e187fd8c1889e18 /* mesh/TriangleMeshBuilder.cpp */; }; - FFFFc188a0887fd8c188a088 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc188a0887fd8c188a088 /* convex/BigConvexDataBuilder.cpp */; }; - FFFFc188a0f07fd8c188a0f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc188a0f07fd8c188a0f0 /* convex/ConvexHullBuilder.cpp */; }; - FFFFc188a1587fd8c188a158 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc188a1587fd8c188a158 /* convex/ConvexHullLib.cpp */; }; - FFFFc188a1c07fd8c188a1c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc188a1c07fd8c188a1c0 /* convex/ConvexHullUtils.cpp */; }; - FFFFc188a2287fd8c188a228 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc188a2287fd8c188a228 /* convex/ConvexMeshBuilder.cpp */; }; - FFFFc188a2907fd8c188a290 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc188a2907fd8c188a290 /* convex/ConvexPolygonsBuilder.cpp */; }; - FFFFc188a2f87fd8c188a2f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc188a2f87fd8c188a2f8 /* convex/InflationConvexHullLib.cpp */; }; - FFFFc188a3607fd8c188a360 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc188a3607fd8c188a360 /* convex/QuickHullConvexHullLib.cpp */; }; - FFFFc188a3c87fd8c188a3c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc188a3c87fd8c188a3c8 /* convex/VolumeIntegration.cpp */; }; + FFFF134eef007fe8134eef00 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD12683c607fe812683c60 /* PhysXExtensions */; }; + FFFF11071a007fe811071a00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071a007fe811071a00 /* Adjacencies.cpp */; }; + FFFF11071a687fe811071a68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071a687fe811071a68 /* Cooking.cpp */; }; + FFFF11071ad07fe811071ad0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071ad07fe811071ad0 /* CookingUtils.cpp */; }; + FFFF11071b387fe811071b38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071b387fe811071b38 /* EdgeList.cpp */; }; + FFFF11071ba07fe811071ba0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071ba07fe811071ba0 /* MeshCleaner.cpp */; }; + FFFF11071c087fe811071c08 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071c087fe811071c08 /* Quantizer.cpp */; }; + FFFF11071ee07fe811071ee0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071ee07fe811071ee0 /* mesh/GrbTriangleMeshCooking.cpp */; }; + FFFF11071f487fe811071f48 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071f487fe811071f48 /* mesh/HeightFieldCooking.cpp */; }; + FFFF11071fb07fe811071fb0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071fb07fe811071fb0 /* mesh/RTreeCooking.cpp */; }; + FFFF110720187fe811072018 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110720187fe811072018 /* mesh/TriangleMeshBuilder.cpp */; }; + FFFF110722887fe811072288 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110722887fe811072288 /* convex/BigConvexDataBuilder.cpp */; }; + FFFF110722f07fe8110722f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110722f07fe8110722f0 /* convex/ConvexHullBuilder.cpp */; }; + FFFF110723587fe811072358 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110723587fe811072358 /* convex/ConvexHullLib.cpp */; }; + FFFF110723c07fe8110723c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110723c07fe8110723c0 /* convex/ConvexHullUtils.cpp */; }; + FFFF110724287fe811072428 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110724287fe811072428 /* convex/ConvexMeshBuilder.cpp */; }; + FFFF110724907fe811072490 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110724907fe811072490 /* convex/ConvexPolygonsBuilder.cpp */; }; + FFFF110724f87fe8110724f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110724f87fe8110724f8 /* convex/InflationConvexHullLib.cpp */; }; + FFFF110725607fe811072560 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110725607fe811072560 /* convex/QuickHullConvexHullLib.cpp */; }; + FFFF110725c87fe8110725c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110725c87fe8110725c8 /* convex/VolumeIntegration.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc10c82107fd8c10c8210 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc484f2a07fd8c484f2a0 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc484f3087fd8c484f308 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc484f3707fd8c484f370 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc484f3d87fd8c484f3d8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDc484f4407fd8c484f440 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc484f4a87fd8c484f4a8 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc484f5107fd8c484f510 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18898007fd8c1889800 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18898687fd8c1889868 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18898d07fd8c18898d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18899387fd8c1889938 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18899a07fd8c18899a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1889a087fd8c1889a08 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1889a707fd8c1889a70 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1889ad87fd8c1889ad8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1889b407fd8c1889b40 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1889ba87fd8c1889ba8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1889c107fd8c1889c10 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1889c787fd8c1889c78 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1889ce07fd8c1889ce0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1889d487fd8c1889d48 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1889db07fd8c1889db0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1889e187fd8c1889e18 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1889e807fd8c1889e80 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1889ee87fd8c1889ee8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1889f507fd8c1889f50 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1889fb87fd8c1889fb8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDc188a0207fd8c188a020 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc188a0887fd8c188a088 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc188a0f07fd8c188a0f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc188a1587fd8c188a158 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc188a1c07fd8c188a1c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc188a2287fd8c188a228 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc188a2907fd8c188a290 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc188a2f87fd8c188a2f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc188a3607fd8c188a360 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc188a3c87fd8c188a3c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc188a4307fd8c188a430 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc188a4987fd8c188a498 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc188a5007fd8c188a500 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDc188a5687fd8c188a568 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc188a5d07fd8c188a5d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc188a6387fd8c188a638 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc188a6a07fd8c188a6a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDc188a7087fd8c188a708 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDc188a7707fd8c188a770 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; + FFFD134ec9b07fe8134ec9b0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD134ef7507fe8134ef750 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD134ef7b87fe8134ef7b8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD134ef8207fe8134ef820 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD134ef8887fe8134ef888 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD134ef8f07fe8134ef8f0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD134ef9587fe8134ef958 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD134ef9c07fe8134ef9c0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; + FFFD11071a007fe811071a00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD11071a687fe811071a68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD11071ad07fe811071ad0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD11071b387fe811071b38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD11071ba07fe811071ba0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD11071c087fe811071c08 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD11071c707fe811071c70 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; + FFFD11071cd87fe811071cd8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD11071d407fe811071d40 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD11071da87fe811071da8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; + FFFD11071e107fe811071e10 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; + FFFD11071e787fe811071e78 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD11071ee07fe811071ee0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD11071f487fe811071f48 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD11071fb07fe811071fb0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD110720187fe811072018 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD110720807fe811072080 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD110720e87fe8110720e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD110721507fe811072150 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; + FFFD110721b87fe8110721b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD110722207fe811072220 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD110722887fe811072288 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD110722f07fe8110722f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD110723587fe811072358 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD110723c07fe8110723c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD110724287fe811072428 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD110724907fe811072490 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD110724f87fe8110724f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD110725607fe811072560 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD110725c87fe8110725c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD110726307fe811072630 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD110726987fe811072698 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD110727007fe811072700 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD110727687fe811072768 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD110727d07fe8110727d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD110728387fe811072838 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD110728a07fe8110728a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD110729087fe811072908 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD110729707fe811072970 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c10c82107fd8c10c8210 /* Resources */ = { + FFF2134ec9b07fe8134ec9b0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1282,7 +1282,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc10c82107fd8c10c8210 /* Frameworks */ = { + FFFC134ec9b07fe8134ec9b0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1292,29 +1292,29 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c10c82107fd8c10c8210 /* Sources */ = { + FFF8134ec9b07fe8134ec9b0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc18898007fd8c1889800, - FFFFc18898687fd8c1889868, - FFFFc18898d07fd8c18898d0, - FFFFc18899387fd8c1889938, - FFFFc18899a07fd8c18899a0, - FFFFc1889a087fd8c1889a08, - FFFFc1889ce07fd8c1889ce0, - FFFFc1889d487fd8c1889d48, - FFFFc1889db07fd8c1889db0, - FFFFc1889e187fd8c1889e18, - FFFFc188a0887fd8c188a088, - FFFFc188a0f07fd8c188a0f0, - FFFFc188a1587fd8c188a158, - FFFFc188a1c07fd8c188a1c0, - FFFFc188a2287fd8c188a228, - FFFFc188a2907fd8c188a290, - FFFFc188a2f87fd8c188a2f8, - FFFFc188a3607fd8c188a360, - FFFFc188a3c87fd8c188a3c8, + FFFF11071a007fe811071a00, + FFFF11071a687fe811071a68, + FFFF11071ad07fe811071ad0, + FFFF11071b387fe811071b38, + FFFF11071ba07fe811071ba0, + FFFF11071c087fe811071c08, + FFFF11071ee07fe811071ee0, + FFFF11071f487fe811071f48, + FFFF11071fb07fe811071fb0, + FFFF110720187fe811072018, + FFFF110722887fe811072288, + FFFF110722f07fe8110722f0, + FFFF110723587fe811072358, + FFFF110723c07fe8110723c0, + FFFF110724287fe811072428, + FFFF110724907fe811072490, + FFFF110724f87fe8110724f8, + FFFF110725607fe811072560, + FFFF110725c87fe8110725c8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1323,515 +1323,515 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4c484dff07fd8c484dff0 /* PBXTargetDependency */ = { + FFF4134edd807fe8134edd80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc1414ed07fd8c1414ed0 /* PhysXCommon */; - targetProxy = FFF5c1414ed07fd8c1414ed0 /* PBXContainerItemProxy */; + target = FFFA12128d507fe812128d50 /* PhysXCommon */; + targetProxy = FFF512128d507fe812128d50 /* PBXContainerItemProxy */; }; - FFF4c484fd007fd8c484fd00 /* PBXTargetDependency */ = { + FFF4134eef007fe8134eef00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc4912c607fd8c4912c60 /* PhysXExtensions */; - targetProxy = FFF5c4912c607fd8c4912c60 /* PBXContainerItemProxy */; + target = FFFA12683c607fe812683c60 /* PhysXExtensions */; + targetProxy = FFF512683c607fe812683c60 /* PBXContainerItemProxy */; }; - FFF4c10fa6707fd8c10fa670 /* PBXTargetDependency */ = { + FFF4134ec8807fe8134ec880 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc141af507fd8c141af50 /* PxFoundation */; - targetProxy = FFF5c141af507fd8c141af50 /* PBXContainerItemProxy */; + target = FFFA121657c07fe8121657c0 /* PxFoundation */; + targetProxy = FFF5121657c07fe8121657c0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCommon */ - FFFFc20174007fd8c2017400 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc20174007fd8c2017400 /* src/CmBoxPruning.cpp */; }; - FFFFc20174687fd8c2017468 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc20174687fd8c2017468 /* src/CmCollection.cpp */; }; - FFFFc20174d07fd8c20174d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc20174d07fd8c20174d0 /* src/CmMathUtils.cpp */; }; - FFFFc20175387fd8c2017538 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc20175387fd8c2017538 /* src/CmPtrTable.cpp */; }; - FFFFc20175a07fd8c20175a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc20175a07fd8c20175a0 /* src/CmRadixSort.cpp */; }; - FFFFc20176087fd8c2017608 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc20176087fd8c2017608 /* src/CmRadixSortBuffered.cpp */; }; - FFFFc20176707fd8c2017670 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc20176707fd8c2017670 /* src/CmRenderOutput.cpp */; }; - FFFFc20176d87fd8c20176d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDc20176d87fd8c20176d8 /* src/CmVisualization.cpp */; }; - FFFFc002dda87fd8c002dda8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc002dda87fd8c002dda8 /* ../../Include/GeomUtils */; }; - FFFFc00312e07fd8c00312e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00312e07fd8c00312e0 /* src/GuBounds.cpp */; }; - FFFFc00313487fd8c0031348 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00313487fd8c0031348 /* src/GuBox.cpp */; }; - FFFFc00313b07fd8c00313b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00313b07fd8c00313b0 /* src/GuCCTSweepTests.cpp */; }; - FFFFc00314187fd8c0031418 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00314187fd8c0031418 /* src/GuCapsule.cpp */; }; - FFFFc00314807fd8c0031480 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00314807fd8c0031480 /* src/GuGeometryQuery.cpp */; }; - FFFFc00314e87fd8c00314e8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00314e87fd8c00314e8 /* src/GuGeometryUnion.cpp */; }; - FFFFc00315507fd8c0031550 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00315507fd8c0031550 /* src/GuInternal.cpp */; }; - FFFFc00315b87fd8c00315b8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00315b87fd8c00315b8 /* src/GuMTD.cpp */; }; - FFFFc00316207fd8c0031620 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00316207fd8c0031620 /* src/GuMeshFactory.cpp */; }; - FFFFc00316887fd8c0031688 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00316887fd8c0031688 /* src/GuMetaData.cpp */; }; - FFFFc00316f07fd8c00316f0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00316f07fd8c00316f0 /* src/GuOverlapTests.cpp */; }; - FFFFc00317587fd8c0031758 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00317587fd8c0031758 /* src/GuRaycastTests.cpp */; }; - FFFFc00317c07fd8c00317c0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00317c07fd8c00317c0 /* src/GuSerialize.cpp */; }; - FFFFc00318287fd8c0031828 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00318287fd8c0031828 /* src/GuSweepMTD.cpp */; }; - FFFFc00318907fd8c0031890 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00318907fd8c0031890 /* src/GuSweepSharedTests.cpp */; }; - FFFFc00318f87fd8c00318f8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00318f87fd8c00318f8 /* src/GuSweepTests.cpp */; }; - FFFFc00319607fd8c0031960 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00319607fd8c0031960 /* src/contact/GuContactBoxBox.cpp */; }; - FFFFc00319c87fd8c00319c8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00319c87fd8c00319c8 /* src/contact/GuContactCapsuleBox.cpp */; }; - FFFFc0031a307fd8c0031a30 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031a307fd8c0031a30 /* src/contact/GuContactCapsuleCapsule.cpp */; }; - FFFFc0031a987fd8c0031a98 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031a987fd8c0031a98 /* src/contact/GuContactCapsuleConvex.cpp */; }; - FFFFc0031b007fd8c0031b00 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031b007fd8c0031b00 /* src/contact/GuContactCapsuleMesh.cpp */; }; - FFFFc0031b687fd8c0031b68 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031b687fd8c0031b68 /* src/contact/GuContactConvexConvex.cpp */; }; - FFFFc0031bd07fd8c0031bd0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031bd07fd8c0031bd0 /* src/contact/GuContactConvexMesh.cpp */; }; - FFFFc0031c387fd8c0031c38 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031c387fd8c0031c38 /* src/contact/GuContactPlaneBox.cpp */; }; - FFFFc0031ca07fd8c0031ca0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031ca07fd8c0031ca0 /* src/contact/GuContactPlaneCapsule.cpp */; }; - FFFFc0031d087fd8c0031d08 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031d087fd8c0031d08 /* src/contact/GuContactPlaneConvex.cpp */; }; - FFFFc0031d707fd8c0031d70 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031d707fd8c0031d70 /* src/contact/GuContactPolygonPolygon.cpp */; }; - FFFFc0031dd87fd8c0031dd8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031dd87fd8c0031dd8 /* src/contact/GuContactSphereBox.cpp */; }; - FFFFc0031e407fd8c0031e40 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031e407fd8c0031e40 /* src/contact/GuContactSphereCapsule.cpp */; }; - FFFFc0031ea87fd8c0031ea8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031ea87fd8c0031ea8 /* src/contact/GuContactSphereMesh.cpp */; }; - FFFFc0031f107fd8c0031f10 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031f107fd8c0031f10 /* src/contact/GuContactSpherePlane.cpp */; }; - FFFFc0031f787fd8c0031f78 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031f787fd8c0031f78 /* src/contact/GuContactSphereSphere.cpp */; }; - FFFFc0031fe07fd8c0031fe0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0031fe07fd8c0031fe0 /* src/contact/GuFeatureCode.cpp */; }; - FFFFc00320487fd8c0032048 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00320487fd8c0032048 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; - FFFFc00320b07fd8c00320b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00320b07fd8c00320b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; - FFFFc00321187fd8c0032118 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00321187fd8c0032118 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; - FFFFc00321807fd8c0032180 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00321807fd8c0032180 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; - FFFFc00321e87fd8c00321e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00321e87fd8c00321e8 /* src/common/GuBarycentricCoordinates.cpp */; }; - FFFFc00322507fd8c0032250 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00322507fd8c0032250 /* src/common/GuSeparatingAxes.cpp */; }; - FFFFc00322b87fd8c00322b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00322b87fd8c00322b8 /* src/convex/GuBigConvexData.cpp */; }; - FFFFc00323207fd8c0032320 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00323207fd8c0032320 /* src/convex/GuConvexHelper.cpp */; }; - FFFFc00323887fd8c0032388 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00323887fd8c0032388 /* src/convex/GuConvexMesh.cpp */; }; - FFFFc00323f07fd8c00323f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00323f07fd8c00323f0 /* src/convex/GuConvexSupportTable.cpp */; }; - FFFFc00324587fd8c0032458 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00324587fd8c0032458 /* src/convex/GuConvexUtilsInternal.cpp */; }; - FFFFc00324c07fd8c00324c0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00324c07fd8c00324c0 /* src/convex/GuHillClimbing.cpp */; }; - FFFFc00325287fd8c0032528 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00325287fd8c0032528 /* src/convex/GuShapeConvex.cpp */; }; - FFFFc00325907fd8c0032590 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00325907fd8c0032590 /* src/distance/GuDistancePointBox.cpp */; }; - FFFFc00325f87fd8c00325f8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00325f87fd8c00325f8 /* src/distance/GuDistancePointTriangle.cpp */; }; - FFFFc00326607fd8c0032660 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00326607fd8c0032660 /* src/distance/GuDistanceSegmentBox.cpp */; }; - FFFFc00326c87fd8c00326c8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00326c87fd8c00326c8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; - FFFFc00327307fd8c0032730 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00327307fd8c0032730 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; - FFFFc00327987fd8c0032798 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00327987fd8c0032798 /* src/sweep/GuSweepBoxBox.cpp */; }; - FFFFc00328007fd8c0032800 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00328007fd8c0032800 /* src/sweep/GuSweepBoxSphere.cpp */; }; - FFFFc00328687fd8c0032868 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00328687fd8c0032868 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; - FFFFc00328d07fd8c00328d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00328d07fd8c00328d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; - FFFFc00329387fd8c0032938 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00329387fd8c0032938 /* src/sweep/GuSweepCapsuleBox.cpp */; }; - FFFFc00329a07fd8c00329a0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00329a07fd8c00329a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; - FFFFc0032a087fd8c0032a08 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032a087fd8c0032a08 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; - FFFFc0032a707fd8c0032a70 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032a707fd8c0032a70 /* src/sweep/GuSweepSphereCapsule.cpp */; }; - FFFFc0032ad87fd8c0032ad8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032ad87fd8c0032ad8 /* src/sweep/GuSweepSphereSphere.cpp */; }; - FFFFc0032b407fd8c0032b40 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032b407fd8c0032b40 /* src/sweep/GuSweepSphereTriangle.cpp */; }; - FFFFc0032ba87fd8c0032ba8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032ba87fd8c0032ba8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; - FFFFc0032c107fd8c0032c10 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032c107fd8c0032c10 /* src/gjk/GuEPA.cpp */; }; - FFFFc0032c787fd8c0032c78 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032c787fd8c0032c78 /* src/gjk/GuGJKSimplex.cpp */; }; - FFFFc0032ce07fd8c0032ce0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032ce07fd8c0032ce0 /* src/gjk/GuGJKTest.cpp */; }; - FFFFc0032d487fd8c0032d48 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032d487fd8c0032d48 /* src/intersection/GuIntersectionBoxBox.cpp */; }; - FFFFc0032db07fd8c0032db0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032db07fd8c0032db0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; - FFFFc0032e187fd8c0032e18 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032e187fd8c0032e18 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; - FFFFc0032e807fd8c0032e80 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032e807fd8c0032e80 /* src/intersection/GuIntersectionRayBox.cpp */; }; - FFFFc0032ee87fd8c0032ee8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032ee87fd8c0032ee8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; - FFFFc0032f507fd8c0032f50 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032f507fd8c0032f50 /* src/intersection/GuIntersectionRaySphere.cpp */; }; - FFFFc0032fb87fd8c0032fb8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0032fb87fd8c0032fb8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; - FFFFc00330207fd8c0033020 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00330207fd8c0033020 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; - FFFFc00330887fd8c0033088 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00330887fd8c0033088 /* src/mesh/GuBV32.cpp */; }; - FFFFc00330f07fd8c00330f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00330f07fd8c00330f0 /* src/mesh/GuBV32Build.cpp */; }; - FFFFc00331587fd8c0033158 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00331587fd8c0033158 /* src/mesh/GuBV4.cpp */; }; - FFFFc00331c07fd8c00331c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00331c07fd8c00331c0 /* src/mesh/GuBV4Build.cpp */; }; - FFFFc00332287fd8c0033228 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00332287fd8c0033228 /* src/mesh/GuBV4_AABBSweep.cpp */; }; - FFFFc00332907fd8c0033290 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00332907fd8c0033290 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; - FFFFc00332f87fd8c00332f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00332f87fd8c00332f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; - FFFFc00333607fd8c0033360 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00333607fd8c0033360 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; - FFFFc00333c87fd8c00333c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00333c87fd8c00333c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; - FFFFc00334307fd8c0033430 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00334307fd8c0033430 /* src/mesh/GuBV4_Raycast.cpp */; }; - FFFFc00334987fd8c0033498 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00334987fd8c0033498 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; - FFFFc00335007fd8c0033500 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00335007fd8c0033500 /* src/mesh/GuBV4_SphereSweep.cpp */; }; - FFFFc00335687fd8c0033568 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00335687fd8c0033568 /* src/mesh/GuMeshQuery.cpp */; }; - FFFFc00335d07fd8c00335d0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00335d07fd8c00335d0 /* src/mesh/GuMidphaseBV4.cpp */; }; - FFFFc00336387fd8c0033638 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00336387fd8c0033638 /* src/mesh/GuMidphaseRTree.cpp */; }; - FFFFc00336a07fd8c00336a0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00336a07fd8c00336a0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; - FFFFc00337087fd8c0033708 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00337087fd8c0033708 /* src/mesh/GuRTree.cpp */; }; - FFFFc00337707fd8c0033770 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00337707fd8c0033770 /* src/mesh/GuRTreeQueries.cpp */; }; - FFFFc00337d87fd8c00337d8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00337d87fd8c00337d8 /* src/mesh/GuSweepsMesh.cpp */; }; - FFFFc00338407fd8c0033840 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00338407fd8c0033840 /* src/mesh/GuTriangleMesh.cpp */; }; - FFFFc00338a87fd8c00338a8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00338a87fd8c00338a8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; - FFFFc00339107fd8c0033910 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00339107fd8c0033910 /* src/mesh/GuTriangleMeshRTree.cpp */; }; - FFFFc00339787fd8c0033978 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00339787fd8c0033978 /* src/hf/GuHeightField.cpp */; }; - FFFFc00339e07fd8c00339e0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00339e07fd8c00339e0 /* src/hf/GuHeightFieldUtil.cpp */; }; - FFFFc0033a487fd8c0033a48 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033a487fd8c0033a48 /* src/hf/GuOverlapTestsHF.cpp */; }; - FFFFc0033ab07fd8c0033ab0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033ab07fd8c0033ab0 /* src/hf/GuSweepsHF.cpp */; }; - FFFFc0033b187fd8c0033b18 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033b187fd8c0033b18 /* src/pcm/GuPCMContactBoxBox.cpp */; }; - FFFFc0033b807fd8c0033b80 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033b807fd8c0033b80 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; - FFFFc0033be87fd8c0033be8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033be87fd8c0033be8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; - FFFFc0033c507fd8c0033c50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033c507fd8c0033c50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; - FFFFc0033cb87fd8c0033cb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033cb87fd8c0033cb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; - FFFFc0033d207fd8c0033d20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033d207fd8c0033d20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; - FFFFc0033d887fd8c0033d88 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033d887fd8c0033d88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; - FFFFc0033df07fd8c0033df0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033df07fd8c0033df0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; - FFFFc0033e587fd8c0033e58 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033e587fd8c0033e58 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; - FFFFc0033ec07fd8c0033ec0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033ec07fd8c0033ec0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; - FFFFc0033f287fd8c0033f28 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033f287fd8c0033f28 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; - FFFFc0033f907fd8c0033f90 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033f907fd8c0033f90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; - FFFFc0033ff87fd8c0033ff8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc0033ff87fd8c0033ff8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; - FFFFc00340607fd8c0034060 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00340607fd8c0034060 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; - FFFFc00340c87fd8c00340c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00340c87fd8c00340c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; - FFFFc00341307fd8c0034130 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00341307fd8c0034130 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; - FFFFc00341987fd8c0034198 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00341987fd8c0034198 /* src/pcm/GuPCMContactSphereBox.cpp */; }; - FFFFc00342007fd8c0034200 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00342007fd8c0034200 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; - FFFFc00342687fd8c0034268 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00342687fd8c0034268 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; - FFFFc00342d07fd8c00342d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00342d07fd8c00342d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; - FFFFc00343387fd8c0034338 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00343387fd8c0034338 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; - FFFFc00343a07fd8c00343a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00343a07fd8c00343a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; - FFFFc00344087fd8c0034408 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00344087fd8c0034408 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; - FFFFc00344707fd8c0034470 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00344707fd8c0034470 /* src/pcm/GuPCMShapeConvex.cpp */; }; - FFFFc00344d87fd8c00344d8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00344d87fd8c00344d8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; - FFFFc00345407fd8c0034540 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00345407fd8c0034540 /* src/pcm/GuPersistentContactManifold.cpp */; }; - FFFFc00345a87fd8c00345a8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00345a87fd8c00345a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; - FFFFc00346107fd8c0034610 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDc00346107fd8c0034610 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; + FFFF1198a0007fe81198a000 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a0007fe81198a000 /* src/CmBoxPruning.cpp */; }; + FFFF1198a0687fe81198a068 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a0687fe81198a068 /* src/CmCollection.cpp */; }; + FFFF1198a0d07fe81198a0d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a0d07fe81198a0d0 /* src/CmMathUtils.cpp */; }; + FFFF1198a1387fe81198a138 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a1387fe81198a138 /* src/CmPtrTable.cpp */; }; + FFFF1198a1a07fe81198a1a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a1a07fe81198a1a0 /* src/CmRadixSort.cpp */; }; + FFFF1198a2087fe81198a208 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a2087fe81198a208 /* src/CmRadixSortBuffered.cpp */; }; + FFFF1198a2707fe81198a270 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a2707fe81198a270 /* src/CmRenderOutput.cpp */; }; + FFFF1198a2d87fe81198a2d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a2d87fe81198a2d8 /* src/CmVisualization.cpp */; }; + FFFF110185a87fe8110185a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD110185a87fe8110185a8 /* ../../Include/GeomUtils */; }; + FFFF1101bae07fe81101bae0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bae07fe81101bae0 /* src/GuBounds.cpp */; }; + FFFF1101bb487fe81101bb48 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bb487fe81101bb48 /* src/GuBox.cpp */; }; + FFFF1101bbb07fe81101bbb0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bbb07fe81101bbb0 /* src/GuCCTSweepTests.cpp */; }; + FFFF1101bc187fe81101bc18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bc187fe81101bc18 /* src/GuCapsule.cpp */; }; + FFFF1101bc807fe81101bc80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bc807fe81101bc80 /* src/GuGeometryQuery.cpp */; }; + FFFF1101bce87fe81101bce8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bce87fe81101bce8 /* src/GuGeometryUnion.cpp */; }; + FFFF1101bd507fe81101bd50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bd507fe81101bd50 /* src/GuInternal.cpp */; }; + FFFF1101bdb87fe81101bdb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bdb87fe81101bdb8 /* src/GuMTD.cpp */; }; + FFFF1101be207fe81101be20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101be207fe81101be20 /* src/GuMeshFactory.cpp */; }; + FFFF1101be887fe81101be88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101be887fe81101be88 /* src/GuMetaData.cpp */; }; + FFFF1101bef07fe81101bef0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bef07fe81101bef0 /* src/GuOverlapTests.cpp */; }; + FFFF1101bf587fe81101bf58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bf587fe81101bf58 /* src/GuRaycastTests.cpp */; }; + FFFF1101bfc07fe81101bfc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bfc07fe81101bfc0 /* src/GuSerialize.cpp */; }; + FFFF1101c0287fe81101c028 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c0287fe81101c028 /* src/GuSweepMTD.cpp */; }; + FFFF1101c0907fe81101c090 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c0907fe81101c090 /* src/GuSweepSharedTests.cpp */; }; + FFFF1101c0f87fe81101c0f8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c0f87fe81101c0f8 /* src/GuSweepTests.cpp */; }; + FFFF1101c1607fe81101c160 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c1607fe81101c160 /* src/contact/GuContactBoxBox.cpp */; }; + FFFF1101c1c87fe81101c1c8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c1c87fe81101c1c8 /* src/contact/GuContactCapsuleBox.cpp */; }; + FFFF1101c2307fe81101c230 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c2307fe81101c230 /* src/contact/GuContactCapsuleCapsule.cpp */; }; + FFFF1101c2987fe81101c298 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c2987fe81101c298 /* src/contact/GuContactCapsuleConvex.cpp */; }; + FFFF1101c3007fe81101c300 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c3007fe81101c300 /* src/contact/GuContactCapsuleMesh.cpp */; }; + FFFF1101c3687fe81101c368 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c3687fe81101c368 /* src/contact/GuContactConvexConvex.cpp */; }; + FFFF1101c3d07fe81101c3d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c3d07fe81101c3d0 /* src/contact/GuContactConvexMesh.cpp */; }; + FFFF1101c4387fe81101c438 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c4387fe81101c438 /* src/contact/GuContactPlaneBox.cpp */; }; + FFFF1101c4a07fe81101c4a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c4a07fe81101c4a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; + FFFF1101c5087fe81101c508 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c5087fe81101c508 /* src/contact/GuContactPlaneConvex.cpp */; }; + FFFF1101c5707fe81101c570 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c5707fe81101c570 /* src/contact/GuContactPolygonPolygon.cpp */; }; + FFFF1101c5d87fe81101c5d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c5d87fe81101c5d8 /* src/contact/GuContactSphereBox.cpp */; }; + FFFF1101c6407fe81101c640 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c6407fe81101c640 /* src/contact/GuContactSphereCapsule.cpp */; }; + FFFF1101c6a87fe81101c6a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c6a87fe81101c6a8 /* src/contact/GuContactSphereMesh.cpp */; }; + FFFF1101c7107fe81101c710 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c7107fe81101c710 /* src/contact/GuContactSpherePlane.cpp */; }; + FFFF1101c7787fe81101c778 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c7787fe81101c778 /* src/contact/GuContactSphereSphere.cpp */; }; + FFFF1101c7e07fe81101c7e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c7e07fe81101c7e0 /* src/contact/GuFeatureCode.cpp */; }; + FFFF1101c8487fe81101c848 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c8487fe81101c848 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; + FFFF1101c8b07fe81101c8b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c8b07fe81101c8b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; + FFFF1101c9187fe81101c918 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c9187fe81101c918 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; + FFFF1101c9807fe81101c980 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c9807fe81101c980 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; + FFFF1101c9e87fe81101c9e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c9e87fe81101c9e8 /* src/common/GuBarycentricCoordinates.cpp */; }; + FFFF1101ca507fe81101ca50 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ca507fe81101ca50 /* src/common/GuSeparatingAxes.cpp */; }; + FFFF1101cab87fe81101cab8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cab87fe81101cab8 /* src/convex/GuBigConvexData.cpp */; }; + FFFF1101cb207fe81101cb20 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cb207fe81101cb20 /* src/convex/GuConvexHelper.cpp */; }; + FFFF1101cb887fe81101cb88 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cb887fe81101cb88 /* src/convex/GuConvexMesh.cpp */; }; + FFFF1101cbf07fe81101cbf0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cbf07fe81101cbf0 /* src/convex/GuConvexSupportTable.cpp */; }; + FFFF1101cc587fe81101cc58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cc587fe81101cc58 /* src/convex/GuConvexUtilsInternal.cpp */; }; + FFFF1101ccc07fe81101ccc0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ccc07fe81101ccc0 /* src/convex/GuHillClimbing.cpp */; }; + FFFF1101cd287fe81101cd28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cd287fe81101cd28 /* src/convex/GuShapeConvex.cpp */; }; + FFFF1101cd907fe81101cd90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cd907fe81101cd90 /* src/distance/GuDistancePointBox.cpp */; }; + FFFF1101cdf87fe81101cdf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cdf87fe81101cdf8 /* src/distance/GuDistancePointTriangle.cpp */; }; + FFFF1101ce607fe81101ce60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ce607fe81101ce60 /* src/distance/GuDistanceSegmentBox.cpp */; }; + FFFF1101cec87fe81101cec8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cec87fe81101cec8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; + FFFF1101cf307fe81101cf30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cf307fe81101cf30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; + FFFF1101cf987fe81101cf98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cf987fe81101cf98 /* src/sweep/GuSweepBoxBox.cpp */; }; + FFFF1101d0007fe81101d000 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d0007fe81101d000 /* src/sweep/GuSweepBoxSphere.cpp */; }; + FFFF1101d0687fe81101d068 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d0687fe81101d068 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; + FFFF1101d0d07fe81101d0d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d0d07fe81101d0d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; + FFFF1101d1387fe81101d138 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d1387fe81101d138 /* src/sweep/GuSweepCapsuleBox.cpp */; }; + FFFF1101d1a07fe81101d1a0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d1a07fe81101d1a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; + FFFF1101d2087fe81101d208 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d2087fe81101d208 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; + FFFF1101d2707fe81101d270 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d2707fe81101d270 /* src/sweep/GuSweepSphereCapsule.cpp */; }; + FFFF1101d2d87fe81101d2d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d2d87fe81101d2d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; + FFFF1101d3407fe81101d340 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d3407fe81101d340 /* src/sweep/GuSweepSphereTriangle.cpp */; }; + FFFF1101d3a87fe81101d3a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d3a87fe81101d3a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; + FFFF1101d4107fe81101d410 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d4107fe81101d410 /* src/gjk/GuEPA.cpp */; }; + FFFF1101d4787fe81101d478 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d4787fe81101d478 /* src/gjk/GuGJKSimplex.cpp */; }; + FFFF1101d4e07fe81101d4e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d4e07fe81101d4e0 /* src/gjk/GuGJKTest.cpp */; }; + FFFF1101d5487fe81101d548 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d5487fe81101d548 /* src/intersection/GuIntersectionBoxBox.cpp */; }; + FFFF1101d5b07fe81101d5b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d5b07fe81101d5b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; + FFFF1101d6187fe81101d618 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d6187fe81101d618 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; + FFFF1101d6807fe81101d680 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d6807fe81101d680 /* src/intersection/GuIntersectionRayBox.cpp */; }; + FFFF1101d6e87fe81101d6e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d6e87fe81101d6e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; + FFFF1101d7507fe81101d750 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d7507fe81101d750 /* src/intersection/GuIntersectionRaySphere.cpp */; }; + FFFF1101d7b87fe81101d7b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d7b87fe81101d7b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; + FFFF1101d8207fe81101d820 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d8207fe81101d820 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; + FFFF1101d8887fe81101d888 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d8887fe81101d888 /* src/mesh/GuBV32.cpp */; }; + FFFF1101d8f07fe81101d8f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d8f07fe81101d8f0 /* src/mesh/GuBV32Build.cpp */; }; + FFFF1101d9587fe81101d958 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d9587fe81101d958 /* src/mesh/GuBV4.cpp */; }; + FFFF1101d9c07fe81101d9c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d9c07fe81101d9c0 /* src/mesh/GuBV4Build.cpp */; }; + FFFF1101da287fe81101da28 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101da287fe81101da28 /* src/mesh/GuBV4_AABBSweep.cpp */; }; + FFFF1101da907fe81101da90 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101da907fe81101da90 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; + FFFF1101daf87fe81101daf8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101daf87fe81101daf8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; + FFFF1101db607fe81101db60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101db607fe81101db60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; + FFFF1101dbc87fe81101dbc8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dbc87fe81101dbc8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; + FFFF1101dc307fe81101dc30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dc307fe81101dc30 /* src/mesh/GuBV4_Raycast.cpp */; }; + FFFF1101dc987fe81101dc98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dc987fe81101dc98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; + FFFF1101dd007fe81101dd00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dd007fe81101dd00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; + FFFF1101dd687fe81101dd68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dd687fe81101dd68 /* src/mesh/GuMeshQuery.cpp */; }; + FFFF1101ddd07fe81101ddd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ddd07fe81101ddd0 /* src/mesh/GuMidphaseBV4.cpp */; }; + FFFF1101de387fe81101de38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101de387fe81101de38 /* src/mesh/GuMidphaseRTree.cpp */; }; + FFFF1101dea07fe81101dea0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dea07fe81101dea0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; + FFFF1101df087fe81101df08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101df087fe81101df08 /* src/mesh/GuRTree.cpp */; }; + FFFF1101df707fe81101df70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101df707fe81101df70 /* src/mesh/GuRTreeQueries.cpp */; }; + FFFF1101dfd87fe81101dfd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dfd87fe81101dfd8 /* src/mesh/GuSweepsMesh.cpp */; }; + FFFF1101e0407fe81101e040 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e0407fe81101e040 /* src/mesh/GuTriangleMesh.cpp */; }; + FFFF1101e0a87fe81101e0a8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e0a87fe81101e0a8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; + FFFF1101e1107fe81101e110 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e1107fe81101e110 /* src/mesh/GuTriangleMeshRTree.cpp */; }; + FFFF1101e1787fe81101e178 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e1787fe81101e178 /* src/hf/GuHeightField.cpp */; }; + FFFF1101e1e07fe81101e1e0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e1e07fe81101e1e0 /* src/hf/GuHeightFieldUtil.cpp */; }; + FFFF1101e2487fe81101e248 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e2487fe81101e248 /* src/hf/GuOverlapTestsHF.cpp */; }; + FFFF1101e2b07fe81101e2b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e2b07fe81101e2b0 /* src/hf/GuSweepsHF.cpp */; }; + FFFF1101e3187fe81101e318 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e3187fe81101e318 /* src/pcm/GuPCMContactBoxBox.cpp */; }; + FFFF1101e3807fe81101e380 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e3807fe81101e380 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; + FFFF1101e3e87fe81101e3e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e3e87fe81101e3e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; + FFFF1101e4507fe81101e450 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e4507fe81101e450 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; + FFFF1101e4b87fe81101e4b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e4b87fe81101e4b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; + FFFF1101e5207fe81101e520 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e5207fe81101e520 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; + FFFF1101e5887fe81101e588 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e5887fe81101e588 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; + FFFF1101e5f07fe81101e5f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e5f07fe81101e5f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; + FFFF1101e6587fe81101e658 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e6587fe81101e658 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; + FFFF1101e6c07fe81101e6c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e6c07fe81101e6c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; + FFFF1101e7287fe81101e728 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e7287fe81101e728 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; + FFFF1101e7907fe81101e790 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e7907fe81101e790 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; + FFFF1101e7f87fe81101e7f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e7f87fe81101e7f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; + FFFF1101e8607fe81101e860 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e8607fe81101e860 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; + FFFF1101e8c87fe81101e8c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e8c87fe81101e8c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; + FFFF1101e9307fe81101e930 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e9307fe81101e930 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; + FFFF1101e9987fe81101e998 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e9987fe81101e998 /* src/pcm/GuPCMContactSphereBox.cpp */; }; + FFFF1101ea007fe81101ea00 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ea007fe81101ea00 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; + FFFF1101ea687fe81101ea68 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ea687fe81101ea68 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; + FFFF1101ead07fe81101ead0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ead07fe81101ead0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; + FFFF1101eb387fe81101eb38 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101eb387fe81101eb38 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; + FFFF1101eba07fe81101eba0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101eba07fe81101eba0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; + FFFF1101ec087fe81101ec08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ec087fe81101ec08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; + FFFF1101ec707fe81101ec70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ec707fe81101ec70 /* src/pcm/GuPCMShapeConvex.cpp */; }; + FFFF1101ecd87fe81101ecd8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ecd87fe81101ecd8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; + FFFF1101ed407fe81101ed40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ed407fe81101ed40 /* src/pcm/GuPersistentContactManifold.cpp */; }; + FFFF1101eda87fe81101eda8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101eda87fe81101eda8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; + FFFF1101ee107fe81101ee10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ee107fe81101ee10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc1414ed07fd8c1414ed0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc1876c007fd8c1876c00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1876c687fd8c1876c68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1876cd07fd8c1876cd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1876d387fd8c1876d38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1876da07fd8c1876da0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1876e087fd8c1876e08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1876e707fd8c1876e70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1876ed87fd8c1876ed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1876f407fd8c1876f40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1876fa87fd8c1876fa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18770107fd8c1877010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18770787fd8c1877078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18770e07fd8c18770e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18771487fd8c1877148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18771b07fd8c18771b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18772187fd8c1877218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18772807fd8c1877280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18772e87fd8c18772e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18773507fd8c1877350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18773b87fd8c18773b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18774207fd8c1877420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18774887fd8c1877488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18774f07fd8c18774f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18775587fd8c1877558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18775c07fd8c18775c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18776287fd8c1877628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18776907fd8c1877690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18776f87fd8c18776f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18777607fd8c1877760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18777c87fd8c18777c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18778307fd8c1877830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18778987fd8c1877898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18779007fd8c1877900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20174007fd8c2017400 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc20174687fd8c2017468 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc20174d07fd8c20174d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc20175387fd8c2017538 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc20175a07fd8c20175a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc20176087fd8c2017608 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc20176707fd8c2017670 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc20176d87fd8c20176d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc20177407fd8c2017740 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20177a87fd8c20177a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20178107fd8c2017810 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20178787fd8c2017878 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20178e07fd8c20178e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20179487fd8c2017948 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20179b07fd8c20179b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017a187fd8c2017a18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017a807fd8c2017a80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017ae87fd8c2017ae8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017b507fd8c2017b50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017bb87fd8c2017bb8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017c207fd8c2017c20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017c887fd8c2017c88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017cf07fd8c2017cf0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017d587fd8c2017d58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017dc07fd8c2017dc0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017e287fd8c2017e28 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017e907fd8c2017e90 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017ef87fd8c2017ef8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017f607fd8c2017f60 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2017fc87fd8c2017fc8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20180307fd8c2018030 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20180987fd8c2018098 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20181007fd8c2018100 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20181687fd8c2018168 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20181d07fd8c20181d0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc20182387fd8c2018238 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002da007fd8c002da00 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002da687fd8c002da68 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002dad07fd8c002dad0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002db387fd8c002db38 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002dba07fd8c002dba0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002dc087fd8c002dc08 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002dc707fd8c002dc70 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002dcd87fd8c002dcd8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002dd407fd8c002dd40 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002dda87fd8c002dda8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; - FFFDc002de107fd8c002de10 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002de787fd8c002de78 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002dee07fd8c002dee0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002df487fd8c002df48 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002dfb07fd8c002dfb0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e0187fd8c002e018 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e0807fd8c002e080 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e0e87fd8c002e0e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e1507fd8c002e150 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e1b87fd8c002e1b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e2207fd8c002e220 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e2887fd8c002e288 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e2f07fd8c002e2f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e3587fd8c002e358 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e3c07fd8c002e3c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e4287fd8c002e428 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e4907fd8c002e490 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e4f87fd8c002e4f8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e5607fd8c002e560 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e5c87fd8c002e5c8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e6307fd8c002e630 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e6987fd8c002e698 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e7007fd8c002e700 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e7687fd8c002e768 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e7d07fd8c002e7d0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e8387fd8c002e838 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e8a07fd8c002e8a0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e9087fd8c002e908 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e9707fd8c002e970 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002e9d87fd8c002e9d8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002ea407fd8c002ea40 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002eaa87fd8c002eaa8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002eb107fd8c002eb10 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002eb787fd8c002eb78 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002ebe07fd8c002ebe0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002ec487fd8c002ec48 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002ecb07fd8c002ecb0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002ed187fd8c002ed18 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002ed807fd8c002ed80 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002ede87fd8c002ede8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002ee507fd8c002ee50 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002eeb87fd8c002eeb8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002ef207fd8c002ef20 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002ef887fd8c002ef88 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002eff07fd8c002eff0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f0587fd8c002f058 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f0c07fd8c002f0c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f1287fd8c002f128 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f1907fd8c002f190 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f1f87fd8c002f1f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f2607fd8c002f260 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f2c87fd8c002f2c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f3307fd8c002f330 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f3987fd8c002f398 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f4007fd8c002f400 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f4687fd8c002f468 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f4d07fd8c002f4d0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f5387fd8c002f538 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f5a07fd8c002f5a0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f6087fd8c002f608 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f6707fd8c002f670 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f6d87fd8c002f6d8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f7407fd8c002f740 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f7a87fd8c002f7a8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f8107fd8c002f810 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f8787fd8c002f878 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f8e07fd8c002f8e0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f9487fd8c002f948 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002f9b07fd8c002f9b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fa187fd8c002fa18 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fa807fd8c002fa80 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fae87fd8c002fae8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fb507fd8c002fb50 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fbb87fd8c002fbb8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fc207fd8c002fc20 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fc887fd8c002fc88 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fcf07fd8c002fcf0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fd587fd8c002fd58 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fdc07fd8c002fdc0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fe287fd8c002fe28 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fe907fd8c002fe90 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002fef87fd8c002fef8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002ff607fd8c002ff60 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; - FFFDc002ffc87fd8c002ffc8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00300307fd8c0030030 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00300987fd8c0030098 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00301007fd8c0030100 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00301687fd8c0030168 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00301d07fd8c00301d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00302387fd8c0030238 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00302a07fd8c00302a0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00303087fd8c0030308 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00303707fd8c0030370 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00303d87fd8c00303d8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00304407fd8c0030440 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00304a87fd8c00304a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00305107fd8c0030510 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00305787fd8c0030578 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00305e07fd8c00305e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00306487fd8c0030648 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00306b07fd8c00306b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00307187fd8c0030718 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00307807fd8c0030780 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00307e87fd8c00307e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00308507fd8c0030850 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00308b87fd8c00308b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00309207fd8c0030920 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00309887fd8c0030988 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00309f07fd8c00309f0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030a587fd8c0030a58 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030ac07fd8c0030ac0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030b287fd8c0030b28 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030b907fd8c0030b90 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030bf87fd8c0030bf8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030c607fd8c0030c60 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030cc87fd8c0030cc8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030d307fd8c0030d30 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030d987fd8c0030d98 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030e007fd8c0030e00 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030e687fd8c0030e68 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030ed07fd8c0030ed0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030f387fd8c0030f38 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDc0030fa07fd8c0030fa0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00310087fd8c0031008 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00310707fd8c0031070 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00310d87fd8c00310d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00311407fd8c0031140 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00311a87fd8c00311a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00312107fd8c0031210 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00312787fd8c0031278 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDc00312e07fd8c00312e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00313487fd8c0031348 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00313b07fd8c00313b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00314187fd8c0031418 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00314807fd8c0031480 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00314e87fd8c00314e8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00315507fd8c0031550 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00315b87fd8c00315b8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00316207fd8c0031620 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00316887fd8c0031688 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00316f07fd8c00316f0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00317587fd8c0031758 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00317c07fd8c00317c0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00318287fd8c0031828 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00318907fd8c0031890 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00318f87fd8c00318f8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00319607fd8c0031960 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00319c87fd8c00319c8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031a307fd8c0031a30 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031a987fd8c0031a98 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031b007fd8c0031b00 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031b687fd8c0031b68 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031bd07fd8c0031bd0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031c387fd8c0031c38 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031ca07fd8c0031ca0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031d087fd8c0031d08 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031d707fd8c0031d70 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031dd87fd8c0031dd8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031e407fd8c0031e40 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031ea87fd8c0031ea8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031f107fd8c0031f10 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031f787fd8c0031f78 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0031fe07fd8c0031fe0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00320487fd8c0032048 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00320b07fd8c00320b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00321187fd8c0032118 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00321807fd8c0032180 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00321e87fd8c00321e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00322507fd8c0032250 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00322b87fd8c00322b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00323207fd8c0032320 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00323887fd8c0032388 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00323f07fd8c00323f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00324587fd8c0032458 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00324c07fd8c00324c0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00325287fd8c0032528 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00325907fd8c0032590 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00325f87fd8c00325f8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00326607fd8c0032660 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00326c87fd8c00326c8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00327307fd8c0032730 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00327987fd8c0032798 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00328007fd8c0032800 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00328687fd8c0032868 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00328d07fd8c00328d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00329387fd8c0032938 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00329a07fd8c00329a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032a087fd8c0032a08 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032a707fd8c0032a70 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032ad87fd8c0032ad8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032b407fd8c0032b40 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032ba87fd8c0032ba8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032c107fd8c0032c10 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032c787fd8c0032c78 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032ce07fd8c0032ce0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032d487fd8c0032d48 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032db07fd8c0032db0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032e187fd8c0032e18 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032e807fd8c0032e80 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032ee87fd8c0032ee8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032f507fd8c0032f50 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0032fb87fd8c0032fb8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00330207fd8c0033020 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00330887fd8c0033088 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00330f07fd8c00330f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00331587fd8c0033158 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00331c07fd8c00331c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00332287fd8c0033228 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00332907fd8c0033290 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00332f87fd8c00332f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00333607fd8c0033360 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00333c87fd8c00333c8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00334307fd8c0033430 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00334987fd8c0033498 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00335007fd8c0033500 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00335687fd8c0033568 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00335d07fd8c00335d0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00336387fd8c0033638 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00336a07fd8c00336a0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00337087fd8c0033708 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00337707fd8c0033770 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00337d87fd8c00337d8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00338407fd8c0033840 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00338a87fd8c00338a8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00339107fd8c0033910 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00339787fd8c0033978 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00339e07fd8c00339e0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033a487fd8c0033a48 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033ab07fd8c0033ab0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033b187fd8c0033b18 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033b807fd8c0033b80 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033be87fd8c0033be8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033c507fd8c0033c50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033cb87fd8c0033cb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033d207fd8c0033d20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033d887fd8c0033d88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033df07fd8c0033df0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033e587fd8c0033e58 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033ec07fd8c0033ec0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033f287fd8c0033f28 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033f907fd8c0033f90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc0033ff87fd8c0033ff8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00340607fd8c0034060 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00340c87fd8c00340c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00341307fd8c0034130 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00341987fd8c0034198 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00342007fd8c0034200 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00342687fd8c0034268 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00342d07fd8c00342d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00343387fd8c0034338 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00343a07fd8c00343a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00344087fd8c0034408 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00344707fd8c0034470 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00344d87fd8c00344d8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00345407fd8c0034540 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00345a87fd8c00345a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc00346107fd8c0034610 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12128d507fe812128d50 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD110252007fe811025200 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD110252687fe811025268 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD110252d07fe8110252d0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD110253387fe811025338 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD110253a07fe8110253a0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD110254087fe811025408 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD110254707fe811025470 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD110254d87fe8110254d8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD110255407fe811025540 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; + FFFD110255a87fe8110255a8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD110256107fe811025610 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD110256787fe811025678 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD110256e07fe8110256e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; + FFFD110257487fe811025748 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD110257b07fe8110257b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD110258187fe811025818 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD110258807fe811025880 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD110258e87fe8110258e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD110259507fe811025950 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD110259b87fe8110259b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025a207fe811025a20 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025a887fe811025a88 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025af07fe811025af0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025b587fe811025b58 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025bc07fe811025bc0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025c287fe811025c28 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025c907fe811025c90 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025cf87fe811025cf8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025d607fe811025d60 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025dc87fe811025dc8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025e307fe811025e30 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025e987fe811025e98 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD11025f007fe811025f00 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a0007fe81198a000 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1198a0687fe81198a068 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1198a0d07fe81198a0d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1198a1387fe81198a138 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1198a1a07fe81198a1a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1198a2087fe81198a208 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1198a2707fe81198a270 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1198a2d87fe81198a2d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1198a3407fe81198a340 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a3a87fe81198a3a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a4107fe81198a410 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a4787fe81198a478 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a4e07fe81198a4e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a5487fe81198a548 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a5b07fe81198a5b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a6187fe81198a618 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a6807fe81198a680 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a6e87fe81198a6e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a7507fe81198a750 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a7b87fe81198a7b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a8207fe81198a820 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a8887fe81198a888 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a8f07fe81198a8f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a9587fe81198a958 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198a9c07fe81198a9c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198aa287fe81198aa28 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198aa907fe81198aa90 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198aaf87fe81198aaf8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198ab607fe81198ab60 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198abc87fe81198abc8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198ac307fe81198ac30 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198ac987fe81198ac98 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198ad007fe81198ad00 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198ad687fe81198ad68 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198add07fe81198add0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD1198ae387fe81198ae38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; + FFFD110182007fe811018200 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD110182687fe811018268 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD110182d07fe8110182d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD110183387fe811018338 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD110183a07fe8110183a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD110184087fe811018408 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD110184707fe811018470 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD110184d87fe8110184d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD110185407fe811018540 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD110185a87fe8110185a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; + FFFD110186107fe811018610 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD110186787fe811018678 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD110186e07fe8110186e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; + FFFD110187487fe811018748 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; + FFFD110187b07fe8110187b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD110188187fe811018818 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD110188807fe811018880 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD110188e87fe8110188e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD110189507fe811018950 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; + FFFD110189b87fe8110189b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018a207fe811018a20 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018a887fe811018a88 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018af07fe811018af0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018b587fe811018b58 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018bc07fe811018bc0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018c287fe811018c28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018c907fe811018c90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018cf87fe811018cf8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018d607fe811018d60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018dc87fe811018dc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018e307fe811018e30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018e987fe811018e98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018f007fe811018f00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018f687fe811018f68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; + FFFD11018fd07fe811018fd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD110190387fe811019038 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD110190a07fe8110190a0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD110191087fe811019108 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD110191707fe811019170 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD110191d87fe8110191d8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD110192407fe811019240 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD110192a87fe8110192a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; + FFFD110193107fe811019310 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD110193787fe811019378 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD110193e07fe8110193e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD110194487fe811019448 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD110194b07fe8110194b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD110195187fe811019518 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD110195807fe811019580 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD110195e87fe8110195e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD110196507fe811019650 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD110196b87fe8110196b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD110197207fe811019720 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; }; + FFFD110197887fe811019788 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; }; + FFFD110197f07fe8110197f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD110198587fe811019858 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD110198c07fe8110198c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD110199287fe811019928 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD110199907fe811019990 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD110199f87fe8110199f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019a607fe811019a60 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019ac87fe811019ac8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019b307fe811019b30 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019b987fe811019b98 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019c007fe811019c00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019c687fe811019c68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019cd07fe811019cd0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019d387fe811019d38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019da07fe811019da0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019e087fe811019e08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019e707fe811019e70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019ed87fe811019ed8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019f407fe811019f40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD11019fa87fe811019fa8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a0107fe81101a010 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a0787fe81101a078 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a0e07fe81101a0e0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a1487fe81101a148 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a1b07fe81101a1b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a2187fe81101a218 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a2807fe81101a280 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a2e87fe81101a2e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a3507fe81101a350 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a3b87fe81101a3b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a4207fe81101a420 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a4887fe81101a488 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a4f07fe81101a4f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a5587fe81101a558 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a5c07fe81101a5c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a6287fe81101a628 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a6907fe81101a690 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a6f87fe81101a6f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a7607fe81101a760 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a7c87fe81101a7c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a8307fe81101a830 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a8987fe81101a898 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a9007fe81101a900 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a9687fe81101a968 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101a9d07fe81101a9d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101aa387fe81101aa38 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101aaa07fe81101aaa0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101ab087fe81101ab08 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101ab707fe81101ab70 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101abd87fe81101abd8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101ac407fe81101ac40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101aca87fe81101aca8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101ad107fe81101ad10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101ad787fe81101ad78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101ade07fe81101ade0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101ae487fe81101ae48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101aeb07fe81101aeb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101af187fe81101af18 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101af807fe81101af80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101afe87fe81101afe8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b0507fe81101b050 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b0b87fe81101b0b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b1207fe81101b120 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b1887fe81101b188 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b1f07fe81101b1f0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b2587fe81101b258 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b2c07fe81101b2c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b3287fe81101b328 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b3907fe81101b390 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b3f87fe81101b3f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b4607fe81101b460 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b4c87fe81101b4c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b5307fe81101b530 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b5987fe81101b598 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b6007fe81101b600 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b6687fe81101b668 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b6d07fe81101b6d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b7387fe81101b738 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b7a07fe81101b7a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b8087fe81101b808 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b8707fe81101b870 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b8d87fe81101b8d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b9407fe81101b940 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101b9a87fe81101b9a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101ba107fe81101ba10 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101ba787fe81101ba78 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD1101bae07fe81101bae0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101bb487fe81101bb48 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101bbb07fe81101bbb0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101bc187fe81101bc18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101bc807fe81101bc80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101bce87fe81101bce8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101bd507fe81101bd50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101bdb87fe81101bdb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101be207fe81101be20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101be887fe81101be88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101bef07fe81101bef0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101bf587fe81101bf58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101bfc07fe81101bfc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c0287fe81101c028 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c0907fe81101c090 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c0f87fe81101c0f8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c1607fe81101c160 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c1c87fe81101c1c8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c2307fe81101c230 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c2987fe81101c298 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c3007fe81101c300 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c3687fe81101c368 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c3d07fe81101c3d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c4387fe81101c438 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c4a07fe81101c4a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c5087fe81101c508 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c5707fe81101c570 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c5d87fe81101c5d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c6407fe81101c640 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c6a87fe81101c6a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c7107fe81101c710 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c7787fe81101c778 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c7e07fe81101c7e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c8487fe81101c848 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c8b07fe81101c8b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c9187fe81101c918 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c9807fe81101c980 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101c9e87fe81101c9e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101ca507fe81101ca50 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101cab87fe81101cab8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101cb207fe81101cb20 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101cb887fe81101cb88 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101cbf07fe81101cbf0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101cc587fe81101cc58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101ccc07fe81101ccc0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101cd287fe81101cd28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101cd907fe81101cd90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101cdf87fe81101cdf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101ce607fe81101ce60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101cec87fe81101cec8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101cf307fe81101cf30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101cf987fe81101cf98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d0007fe81101d000 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d0687fe81101d068 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d0d07fe81101d0d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d1387fe81101d138 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d1a07fe81101d1a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d2087fe81101d208 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d2707fe81101d270 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d2d87fe81101d2d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d3407fe81101d340 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d3a87fe81101d3a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d4107fe81101d410 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d4787fe81101d478 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d4e07fe81101d4e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d5487fe81101d548 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d5b07fe81101d5b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d6187fe81101d618 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d6807fe81101d680 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d6e87fe81101d6e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d7507fe81101d750 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d7b87fe81101d7b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d8207fe81101d820 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d8887fe81101d888 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d8f07fe81101d8f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d9587fe81101d958 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101d9c07fe81101d9c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101da287fe81101da28 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101da907fe81101da90 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101daf87fe81101daf8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101db607fe81101db60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101dbc87fe81101dbc8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101dc307fe81101dc30 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101dc987fe81101dc98 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101dd007fe81101dd00 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101dd687fe81101dd68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101ddd07fe81101ddd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101de387fe81101de38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101dea07fe81101dea0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101df087fe81101df08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101df707fe81101df70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101dfd87fe81101dfd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e0407fe81101e040 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e0a87fe81101e0a8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e1107fe81101e110 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e1787fe81101e178 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e1e07fe81101e1e0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e2487fe81101e248 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e2b07fe81101e2b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e3187fe81101e318 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e3807fe81101e380 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e3e87fe81101e3e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e4507fe81101e450 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e4b87fe81101e4b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e5207fe81101e520 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e5887fe81101e588 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e5f07fe81101e5f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e6587fe81101e658 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e6c07fe81101e6c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e7287fe81101e728 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e7907fe81101e790 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e7f87fe81101e7f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e8607fe81101e860 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e8c87fe81101e8c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e9307fe81101e930 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101e9987fe81101e998 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101ea007fe81101ea00 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101ea687fe81101ea68 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101ead07fe81101ead0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101eb387fe81101eb38 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101eba07fe81101eba0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101ec087fe81101ec08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101ec707fe81101ec70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101ecd87fe81101ecd8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101ed407fe81101ed40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101eda87fe81101eda8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1101ee107fe81101ee10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c1414ed07fd8c1414ed0 /* Resources */ = { + FFF212128d507fe812128d50 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc002dda87fd8c002dda8, + FFFF110185a87fe8110185a8, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc1414ed07fd8c1414ed0 /* Frameworks */ = { + FFFC12128d507fe812128d50 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1841,145 +1841,145 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c1414ed07fd8c1414ed0 /* Sources */ = { + FFF812128d507fe812128d50 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc20174007fd8c2017400, - FFFFc20174687fd8c2017468, - FFFFc20174d07fd8c20174d0, - FFFFc20175387fd8c2017538, - FFFFc20175a07fd8c20175a0, - FFFFc20176087fd8c2017608, - FFFFc20176707fd8c2017670, - FFFFc20176d87fd8c20176d8, - FFFFc00312e07fd8c00312e0, - FFFFc00313487fd8c0031348, - FFFFc00313b07fd8c00313b0, - FFFFc00314187fd8c0031418, - FFFFc00314807fd8c0031480, - FFFFc00314e87fd8c00314e8, - FFFFc00315507fd8c0031550, - FFFFc00315b87fd8c00315b8, - FFFFc00316207fd8c0031620, - FFFFc00316887fd8c0031688, - FFFFc00316f07fd8c00316f0, - FFFFc00317587fd8c0031758, - FFFFc00317c07fd8c00317c0, - FFFFc00318287fd8c0031828, - FFFFc00318907fd8c0031890, - FFFFc00318f87fd8c00318f8, - FFFFc00319607fd8c0031960, - FFFFc00319c87fd8c00319c8, - FFFFc0031a307fd8c0031a30, - FFFFc0031a987fd8c0031a98, - FFFFc0031b007fd8c0031b00, - FFFFc0031b687fd8c0031b68, - FFFFc0031bd07fd8c0031bd0, - FFFFc0031c387fd8c0031c38, - FFFFc0031ca07fd8c0031ca0, - FFFFc0031d087fd8c0031d08, - FFFFc0031d707fd8c0031d70, - FFFFc0031dd87fd8c0031dd8, - FFFFc0031e407fd8c0031e40, - FFFFc0031ea87fd8c0031ea8, - FFFFc0031f107fd8c0031f10, - FFFFc0031f787fd8c0031f78, - FFFFc0031fe07fd8c0031fe0, - FFFFc00320487fd8c0032048, - FFFFc00320b07fd8c00320b0, - FFFFc00321187fd8c0032118, - FFFFc00321807fd8c0032180, - FFFFc00321e87fd8c00321e8, - FFFFc00322507fd8c0032250, - FFFFc00322b87fd8c00322b8, - FFFFc00323207fd8c0032320, - FFFFc00323887fd8c0032388, - FFFFc00323f07fd8c00323f0, - FFFFc00324587fd8c0032458, - FFFFc00324c07fd8c00324c0, - FFFFc00325287fd8c0032528, - FFFFc00325907fd8c0032590, - FFFFc00325f87fd8c00325f8, - FFFFc00326607fd8c0032660, - FFFFc00326c87fd8c00326c8, - FFFFc00327307fd8c0032730, - FFFFc00327987fd8c0032798, - FFFFc00328007fd8c0032800, - FFFFc00328687fd8c0032868, - FFFFc00328d07fd8c00328d0, - FFFFc00329387fd8c0032938, - FFFFc00329a07fd8c00329a0, - FFFFc0032a087fd8c0032a08, - FFFFc0032a707fd8c0032a70, - FFFFc0032ad87fd8c0032ad8, - FFFFc0032b407fd8c0032b40, - FFFFc0032ba87fd8c0032ba8, - FFFFc0032c107fd8c0032c10, - FFFFc0032c787fd8c0032c78, - FFFFc0032ce07fd8c0032ce0, - FFFFc0032d487fd8c0032d48, - FFFFc0032db07fd8c0032db0, - FFFFc0032e187fd8c0032e18, - FFFFc0032e807fd8c0032e80, - FFFFc0032ee87fd8c0032ee8, - FFFFc0032f507fd8c0032f50, - FFFFc0032fb87fd8c0032fb8, - FFFFc00330207fd8c0033020, - FFFFc00330887fd8c0033088, - FFFFc00330f07fd8c00330f0, - FFFFc00331587fd8c0033158, - FFFFc00331c07fd8c00331c0, - FFFFc00332287fd8c0033228, - FFFFc00332907fd8c0033290, - FFFFc00332f87fd8c00332f8, - FFFFc00333607fd8c0033360, - FFFFc00333c87fd8c00333c8, - FFFFc00334307fd8c0033430, - FFFFc00334987fd8c0033498, - FFFFc00335007fd8c0033500, - FFFFc00335687fd8c0033568, - FFFFc00335d07fd8c00335d0, - FFFFc00336387fd8c0033638, - FFFFc00336a07fd8c00336a0, - FFFFc00337087fd8c0033708, - FFFFc00337707fd8c0033770, - FFFFc00337d87fd8c00337d8, - FFFFc00338407fd8c0033840, - FFFFc00338a87fd8c00338a8, - FFFFc00339107fd8c0033910, - FFFFc00339787fd8c0033978, - FFFFc00339e07fd8c00339e0, - FFFFc0033a487fd8c0033a48, - FFFFc0033ab07fd8c0033ab0, - FFFFc0033b187fd8c0033b18, - FFFFc0033b807fd8c0033b80, - FFFFc0033be87fd8c0033be8, - FFFFc0033c507fd8c0033c50, - FFFFc0033cb87fd8c0033cb8, - FFFFc0033d207fd8c0033d20, - FFFFc0033d887fd8c0033d88, - FFFFc0033df07fd8c0033df0, - FFFFc0033e587fd8c0033e58, - FFFFc0033ec07fd8c0033ec0, - FFFFc0033f287fd8c0033f28, - FFFFc0033f907fd8c0033f90, - FFFFc0033ff87fd8c0033ff8, - FFFFc00340607fd8c0034060, - FFFFc00340c87fd8c00340c8, - FFFFc00341307fd8c0034130, - FFFFc00341987fd8c0034198, - FFFFc00342007fd8c0034200, - FFFFc00342687fd8c0034268, - FFFFc00342d07fd8c00342d0, - FFFFc00343387fd8c0034338, - FFFFc00343a07fd8c00343a0, - FFFFc00344087fd8c0034408, - FFFFc00344707fd8c0034470, - FFFFc00344d87fd8c00344d8, - FFFFc00345407fd8c0034540, - FFFFc00345a87fd8c00345a8, - FFFFc00346107fd8c0034610, + FFFF1198a0007fe81198a000, + FFFF1198a0687fe81198a068, + FFFF1198a0d07fe81198a0d0, + FFFF1198a1387fe81198a138, + FFFF1198a1a07fe81198a1a0, + FFFF1198a2087fe81198a208, + FFFF1198a2707fe81198a270, + FFFF1198a2d87fe81198a2d8, + FFFF1101bae07fe81101bae0, + FFFF1101bb487fe81101bb48, + FFFF1101bbb07fe81101bbb0, + FFFF1101bc187fe81101bc18, + FFFF1101bc807fe81101bc80, + FFFF1101bce87fe81101bce8, + FFFF1101bd507fe81101bd50, + FFFF1101bdb87fe81101bdb8, + FFFF1101be207fe81101be20, + FFFF1101be887fe81101be88, + FFFF1101bef07fe81101bef0, + FFFF1101bf587fe81101bf58, + FFFF1101bfc07fe81101bfc0, + FFFF1101c0287fe81101c028, + FFFF1101c0907fe81101c090, + FFFF1101c0f87fe81101c0f8, + FFFF1101c1607fe81101c160, + FFFF1101c1c87fe81101c1c8, + FFFF1101c2307fe81101c230, + FFFF1101c2987fe81101c298, + FFFF1101c3007fe81101c300, + FFFF1101c3687fe81101c368, + FFFF1101c3d07fe81101c3d0, + FFFF1101c4387fe81101c438, + FFFF1101c4a07fe81101c4a0, + FFFF1101c5087fe81101c508, + FFFF1101c5707fe81101c570, + FFFF1101c5d87fe81101c5d8, + FFFF1101c6407fe81101c640, + FFFF1101c6a87fe81101c6a8, + FFFF1101c7107fe81101c710, + FFFF1101c7787fe81101c778, + FFFF1101c7e07fe81101c7e0, + FFFF1101c8487fe81101c848, + FFFF1101c8b07fe81101c8b0, + FFFF1101c9187fe81101c918, + FFFF1101c9807fe81101c980, + FFFF1101c9e87fe81101c9e8, + FFFF1101ca507fe81101ca50, + FFFF1101cab87fe81101cab8, + FFFF1101cb207fe81101cb20, + FFFF1101cb887fe81101cb88, + FFFF1101cbf07fe81101cbf0, + FFFF1101cc587fe81101cc58, + FFFF1101ccc07fe81101ccc0, + FFFF1101cd287fe81101cd28, + FFFF1101cd907fe81101cd90, + FFFF1101cdf87fe81101cdf8, + FFFF1101ce607fe81101ce60, + FFFF1101cec87fe81101cec8, + FFFF1101cf307fe81101cf30, + FFFF1101cf987fe81101cf98, + FFFF1101d0007fe81101d000, + FFFF1101d0687fe81101d068, + FFFF1101d0d07fe81101d0d0, + FFFF1101d1387fe81101d138, + FFFF1101d1a07fe81101d1a0, + FFFF1101d2087fe81101d208, + FFFF1101d2707fe81101d270, + FFFF1101d2d87fe81101d2d8, + FFFF1101d3407fe81101d340, + FFFF1101d3a87fe81101d3a8, + FFFF1101d4107fe81101d410, + FFFF1101d4787fe81101d478, + FFFF1101d4e07fe81101d4e0, + FFFF1101d5487fe81101d548, + FFFF1101d5b07fe81101d5b0, + FFFF1101d6187fe81101d618, + FFFF1101d6807fe81101d680, + FFFF1101d6e87fe81101d6e8, + FFFF1101d7507fe81101d750, + FFFF1101d7b87fe81101d7b8, + FFFF1101d8207fe81101d820, + FFFF1101d8887fe81101d888, + FFFF1101d8f07fe81101d8f0, + FFFF1101d9587fe81101d958, + FFFF1101d9c07fe81101d9c0, + FFFF1101da287fe81101da28, + FFFF1101da907fe81101da90, + FFFF1101daf87fe81101daf8, + FFFF1101db607fe81101db60, + FFFF1101dbc87fe81101dbc8, + FFFF1101dc307fe81101dc30, + FFFF1101dc987fe81101dc98, + FFFF1101dd007fe81101dd00, + FFFF1101dd687fe81101dd68, + FFFF1101ddd07fe81101ddd0, + FFFF1101de387fe81101de38, + FFFF1101dea07fe81101dea0, + FFFF1101df087fe81101df08, + FFFF1101df707fe81101df70, + FFFF1101dfd87fe81101dfd8, + FFFF1101e0407fe81101e040, + FFFF1101e0a87fe81101e0a8, + FFFF1101e1107fe81101e110, + FFFF1101e1787fe81101e178, + FFFF1101e1e07fe81101e1e0, + FFFF1101e2487fe81101e248, + FFFF1101e2b07fe81101e2b0, + FFFF1101e3187fe81101e318, + FFFF1101e3807fe81101e380, + FFFF1101e3e87fe81101e3e8, + FFFF1101e4507fe81101e450, + FFFF1101e4b87fe81101e4b8, + FFFF1101e5207fe81101e520, + FFFF1101e5887fe81101e588, + FFFF1101e5f07fe81101e5f0, + FFFF1101e6587fe81101e658, + FFFF1101e6c07fe81101e6c0, + FFFF1101e7287fe81101e728, + FFFF1101e7907fe81101e790, + FFFF1101e7f87fe81101e7f8, + FFFF1101e8607fe81101e860, + FFFF1101e8c87fe81101e8c8, + FFFF1101e9307fe81101e930, + FFFF1101e9987fe81101e998, + FFFF1101ea007fe81101ea00, + FFFF1101ea687fe81101ea68, + FFFF1101ead07fe81101ead0, + FFFF1101eb387fe81101eb38, + FFFF1101eba07fe81101eba0, + FFFF1101ec087fe81101ec08, + FFFF1101ec707fe81101ec70, + FFFF1101ecd87fe81101ecd8, + FFFF1101ed407fe81101ed40, + FFFF1101eda87fe81101eda8, + FFFF1101ee107fe81101ee10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1988,132 +1988,132 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4c140d6907fd8c140d690 /* PBXTargetDependency */ = { + FFF4121222807fe812122280 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc141af507fd8c141af50 /* PxFoundation */; - targetProxy = FFF5c141af507fd8c141af50 /* PBXContainerItemProxy */; + target = FFFA121657c07fe8121657c0 /* PxFoundation */; + targetProxy = FFF5121657c07fe8121657c0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxFoundation */ - FFFFc30061187fd8c3006118 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30061187fd8c3006118 /* src/PsAllocator.cpp */; }; - FFFFc30061807fd8c3006180 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30061807fd8c3006180 /* src/PsAssert.cpp */; }; - FFFFc30061e87fd8c30061e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30061e87fd8c30061e8 /* src/PsFoundation.cpp */; }; - FFFFc30062507fd8c3006250 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30062507fd8c3006250 /* src/PsMathUtils.cpp */; }; - FFFFc30062b87fd8c30062b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30062b87fd8c30062b8 /* src/PsString.cpp */; }; - FFFFc30063207fd8c3006320 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30063207fd8c3006320 /* src/PsTempAllocator.cpp */; }; - FFFFc30063887fd8c3006388 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30063887fd8c3006388 /* src/PsUtilities.cpp */; }; - FFFFc30063f07fd8c30063f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30063f07fd8c30063f0 /* src/unix/PsUnixAtomic.cpp */; }; - FFFFc30064587fd8c3006458 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30064587fd8c3006458 /* src/unix/PsUnixCpu.cpp */; }; - FFFFc30064c07fd8c30064c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30064c07fd8c30064c0 /* src/unix/PsUnixFPU.cpp */; }; - FFFFc30065287fd8c3006528 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30065287fd8c3006528 /* src/unix/PsUnixMutex.cpp */; }; - FFFFc30065907fd8c3006590 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30065907fd8c3006590 /* src/unix/PsUnixPrintString.cpp */; }; - FFFFc30065f87fd8c30065f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30065f87fd8c30065f8 /* src/unix/PsUnixSList.cpp */; }; - FFFFc30066607fd8c3006660 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30066607fd8c3006660 /* src/unix/PsUnixSocket.cpp */; }; - FFFFc30066c87fd8c30066c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30066c87fd8c30066c8 /* src/unix/PsUnixSync.cpp */; }; - FFFFc30067307fd8c3006730 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30067307fd8c3006730 /* src/unix/PsUnixThread.cpp */; }; - FFFFc30067987fd8c3006798 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc30067987fd8c3006798 /* src/unix/PsUnixTime.cpp */; }; + FFFF11976f187fe811976f18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11976f187fe811976f18 /* src/PsAllocator.cpp */; }; + FFFF11976f807fe811976f80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11976f807fe811976f80 /* src/PsAssert.cpp */; }; + FFFF11976fe87fe811976fe8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11976fe87fe811976fe8 /* src/PsFoundation.cpp */; }; + FFFF119770507fe811977050 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119770507fe811977050 /* src/PsMathUtils.cpp */; }; + FFFF119770b87fe8119770b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119770b87fe8119770b8 /* src/PsString.cpp */; }; + FFFF119771207fe811977120 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119771207fe811977120 /* src/PsTempAllocator.cpp */; }; + FFFF119771887fe811977188 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119771887fe811977188 /* src/PsUtilities.cpp */; }; + FFFF119771f07fe8119771f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119771f07fe8119771f0 /* src/unix/PsUnixAtomic.cpp */; }; + FFFF119772587fe811977258 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119772587fe811977258 /* src/unix/PsUnixCpu.cpp */; }; + FFFF119772c07fe8119772c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119772c07fe8119772c0 /* src/unix/PsUnixFPU.cpp */; }; + FFFF119773287fe811977328 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119773287fe811977328 /* src/unix/PsUnixMutex.cpp */; }; + FFFF119773907fe811977390 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119773907fe811977390 /* src/unix/PsUnixPrintString.cpp */; }; + FFFF119773f87fe8119773f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119773f87fe8119773f8 /* src/unix/PsUnixSList.cpp */; }; + FFFF119774607fe811977460 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119774607fe811977460 /* src/unix/PsUnixSocket.cpp */; }; + FFFF119774c87fe8119774c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119774c87fe8119774c8 /* src/unix/PsUnixSync.cpp */; }; + FFFF119775307fe811977530 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119775307fe811977530 /* src/unix/PsUnixThread.cpp */; }; + FFFF119775987fe811977598 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119775987fe811977598 /* src/unix/PsUnixTime.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc141af507fd8c141af50 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc400a8007fd8c400a800 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400a8687fd8c400a868 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400a8d07fd8c400a8d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400a9387fd8c400a938 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400a9a07fd8c400a9a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400aa087fd8c400aa08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400aa707fd8c400aa70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400aad87fd8c400aad8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400ab407fd8c400ab40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400aba87fd8c400aba8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400ac107fd8c400ac10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400ac787fd8c400ac78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400ace07fd8c400ace0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400ad487fd8c400ad48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400adb07fd8c400adb0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400ae187fd8c400ae18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400ae807fd8c400ae80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400aee87fd8c400aee8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400af507fd8c400af50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400afb87fd8c400afb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400b0207fd8c400b020 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400b0887fd8c400b088 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400b0f07fd8c400b0f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400b1587fd8c400b158 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400b1c07fd8c400b1c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400b2287fd8c400b228 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400b2907fd8c400b290 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400b2f87fd8c400b2f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc400b3607fd8c400b360 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3004e007fd8c3004e00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3004e687fd8c3004e68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3004ed07fd8c3004ed0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3004f387fd8c3004f38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3004fa07fd8c3004fa0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30050087fd8c3005008 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30050707fd8c3005070 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30050d87fd8c30050d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30051407fd8c3005140 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30051a87fd8c30051a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30052107fd8c3005210 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30052787fd8c3005278 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30052e07fd8c30052e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30053487fd8c3005348 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30053b07fd8c30053b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30054187fd8c3005418 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30054807fd8c3005480 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30054e87fd8c30054e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30055507fd8c3005550 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30055b87fd8c30055b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30056207fd8c3005620 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30056887fd8c3005688 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30056f07fd8c30056f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30057587fd8c3005758 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30057c07fd8c30057c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30058287fd8c3005828 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30058907fd8c3005890 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30058f87fd8c30058f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30059607fd8c3005960 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30059c87fd8c30059c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005a307fd8c3005a30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005a987fd8c3005a98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005b007fd8c3005b00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005b687fd8c3005b68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005bd07fd8c3005bd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005c387fd8c3005c38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005ca07fd8c3005ca0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005d087fd8c3005d08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005d707fd8c3005d70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005dd87fd8c3005dd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005e407fd8c3005e40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005ea87fd8c3005ea8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005f107fd8c3005f10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005f787fd8c3005f78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3005fe07fd8c3005fe0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30060487fd8c3006048 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30060b07fd8c30060b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30061187fd8c3006118 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30061807fd8c3006180 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30061e87fd8c30061e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30062507fd8c3006250 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30062b87fd8c30062b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30063207fd8c3006320 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30063887fd8c3006388 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30063f07fd8c30063f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30064587fd8c3006458 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30064c07fd8c30064c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30065287fd8c3006528 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30065907fd8c3006590 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30065f87fd8c30065f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30066607fd8c3006660 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30066c87fd8c30066c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30067307fd8c3006730 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc30067987fd8c3006798 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD121657c07fe8121657c0 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD119688007fe811968800 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; + FFFD119688687fe811968868 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD119688d07fe8119688d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; + FFFD119689387fe811968938 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; + FFFD119689a07fe8119689a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968a087fe811968a08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968a707fe811968a70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968ad87fe811968ad8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968b407fe811968b40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968ba87fe811968ba8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968c107fe811968c10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968c787fe811968c78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968ce07fe811968ce0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968d487fe811968d48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968db07fe811968db0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968e187fe811968e18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968e807fe811968e80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968ee87fe811968ee8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968f507fe811968f50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; + FFFD11968fb87fe811968fb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; + FFFD119690207fe811969020 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD119690887fe811969088 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD119690f07fe8119690f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD119691587fe811969158 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD119691c07fe8119691c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD119692287fe811969228 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; + FFFD119692907fe811969290 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; + FFFD119692f87fe8119692f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; + FFFD119693607fe811969360 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD11975c007fe811975c00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; + FFFD11975c687fe811975c68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; + FFFD11975cd07fe811975cd0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; + FFFD11975d387fe811975d38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD11975da07fe811975da0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD11975e087fe811975e08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD11975e707fe811975e70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD11975ed87fe811975ed8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; + FFFD11975f407fe811975f40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD11975fa87fe811975fa8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; + FFFD119760107fe811976010 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD119760787fe811976078 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD119760e07fe8119760e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD119761487fe811976148 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD119761b07fe8119761b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD119762187fe811976218 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD119762807fe811976280 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; + FFFD119762e87fe8119762e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD119763507fe811976350 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD119763b87fe8119763b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD119764207fe811976420 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD119764887fe811976488 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD119764f07fe8119764f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD119765587fe811976558 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD119765c07fe8119765c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; + FFFD119766287fe811976628 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; + FFFD119766907fe811976690 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD119766f87fe8119766f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD119767607fe811976760 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; + FFFD119767c87fe8119767c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; + FFFD119768307fe811976830 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD119768987fe811976898 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD119769007fe811976900 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; + FFFD119769687fe811976968 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; + FFFD119769d07fe8119769d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976a387fe811976a38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976aa07fe811976aa0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976b087fe811976b08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976b707fe811976b70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976bd87fe811976bd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976c407fe811976c40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976ca87fe811976ca8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976d107fe811976d10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976d787fe811976d78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976de07fe811976de0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976e487fe811976e48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976eb07fe811976eb0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD11976f187fe811976f18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD11976f807fe811976f80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD11976fe87fe811976fe8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119770507fe811977050 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119770b87fe8119770b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119771207fe811977120 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119771887fe811977188 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119771f07fe8119771f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119772587fe811977258 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119772c07fe8119772c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119773287fe811977328 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119773907fe811977390 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119773f87fe8119773f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119774607fe811977460 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119774c87fe8119774c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119775307fe811977530 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119775987fe811977598 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c141af507fd8c141af50 /* Resources */ = { + FFF2121657c07fe8121657c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2123,7 +2123,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc141af507fd8c141af50 /* Frameworks */ = { + FFFC121657c07fe8121657c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2133,27 +2133,27 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c141af507fd8c141af50 /* Sources */ = { + FFF8121657c07fe8121657c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc30061187fd8c3006118, - FFFFc30061807fd8c3006180, - FFFFc30061e87fd8c30061e8, - FFFFc30062507fd8c3006250, - FFFFc30062b87fd8c30062b8, - FFFFc30063207fd8c3006320, - FFFFc30063887fd8c3006388, - FFFFc30063f07fd8c30063f0, - FFFFc30064587fd8c3006458, - FFFFc30064c07fd8c30064c0, - FFFFc30065287fd8c3006528, - FFFFc30065907fd8c3006590, - FFFFc30065f87fd8c30065f8, - FFFFc30066607fd8c3006660, - FFFFc30066c87fd8c30066c8, - FFFFc30067307fd8c3006730, - FFFFc30067987fd8c3006798, + FFFF11976f187fe811976f18, + FFFF11976f807fe811976f80, + FFFF11976fe87fe811976fe8, + FFFF119770507fe811977050, + FFFF119770b87fe8119770b8, + FFFF119771207fe811977120, + FFFF119771887fe811977188, + FFFF119771f07fe8119771f0, + FFFF119772587fe811977258, + FFFF119772c07fe8119772c0, + FFFF119773287fe811977328, + FFFF119773907fe811977390, + FFFF119773f87fe8119773f8, + FFFF119774607fe811977460, + FFFF119774c87fe8119774c8, + FFFF119775307fe811977530, + FFFF119775987fe811977598, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2165,103 +2165,103 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxPvdSDK */ - FFFFc2841ba87fd8c2841ba8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2841ba87fd8c2841ba8 /* src/PxProfileEventImpl.cpp */; }; - FFFFc2841c107fd8c2841c10 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2841c107fd8c2841c10 /* src/PxPvd.cpp */; }; - FFFFc2841c787fd8c2841c78 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2841c787fd8c2841c78 /* src/PxPvdDataStream.cpp */; }; - FFFFc2841ce07fd8c2841ce0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2841ce07fd8c2841ce0 /* src/PxPvdDefaultFileTransport.cpp */; }; - FFFFc2841d487fd8c2841d48 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2841d487fd8c2841d48 /* src/PxPvdDefaultSocketTransport.cpp */; }; - FFFFc2841db07fd8c2841db0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2841db07fd8c2841db0 /* src/PxPvdImpl.cpp */; }; - FFFFc2841e187fd8c2841e18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2841e187fd8c2841e18 /* src/PxPvdMemClient.cpp */; }; - FFFFc2841e807fd8c2841e80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2841e807fd8c2841e80 /* src/PxPvdObjectModelMetaData.cpp */; }; - FFFFc2841ee87fd8c2841ee8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2841ee87fd8c2841ee8 /* src/PxPvdObjectRegistrar.cpp */; }; - FFFFc2841f507fd8c2841f50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2841f507fd8c2841f50 /* src/PxPvdProfileZoneClient.cpp */; }; - FFFFc2841fb87fd8c2841fb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc2841fb87fd8c2841fb8 /* src/PxPvdUserRenderer.cpp */; }; + FFFF128107a87fe8128107a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128107a87fe8128107a8 /* src/PxProfileEventImpl.cpp */; }; + FFFF128108107fe812810810 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128108107fe812810810 /* src/PxPvd.cpp */; }; + FFFF128108787fe812810878 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128108787fe812810878 /* src/PxPvdDataStream.cpp */; }; + FFFF128108e07fe8128108e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128108e07fe8128108e0 /* src/PxPvdDefaultFileTransport.cpp */; }; + FFFF128109487fe812810948 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128109487fe812810948 /* src/PxPvdDefaultSocketTransport.cpp */; }; + FFFF128109b07fe8128109b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128109b07fe8128109b0 /* src/PxPvdImpl.cpp */; }; + FFFF12810a187fe812810a18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12810a187fe812810a18 /* src/PxPvdMemClient.cpp */; }; + FFFF12810a807fe812810a80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12810a807fe812810a80 /* src/PxPvdObjectModelMetaData.cpp */; }; + FFFF12810ae87fe812810ae8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12810ae87fe812810ae8 /* src/PxPvdObjectRegistrar.cpp */; }; + FFFF12810b507fe812810b50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12810b507fe812810b50 /* src/PxPvdProfileZoneClient.cpp */; }; + FFFF12810bb87fe812810bb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12810bb87fe812810bb8 /* src/PxPvdUserRenderer.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc173fd607fd8c173fd60 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc17599007fd8c1759900 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDc17599687fd8c1759968 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28418007fd8c2841800 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28418687fd8c2841868 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28418d07fd8c28418d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28419387fd8c2841938 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28419a07fd8c28419a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2841a087fd8c2841a08 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2841a707fd8c2841a70 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2841ad87fd8c2841ad8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2841b407fd8c2841b40 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2841ba87fd8c2841ba8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2841c107fd8c2841c10 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2841c787fd8c2841c78 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2841ce07fd8c2841ce0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2841d487fd8c2841d48 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2841db07fd8c2841db0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2841e187fd8c2841e18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2841e807fd8c2841e80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2841ee87fd8c2841ee8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2841f507fd8c2841f50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc2841fb87fd8c2841fb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28420207fd8c2842020 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28420887fd8c2842088 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28420f07fd8c28420f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28421587fd8c2842158 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28421c07fd8c28421c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28422287fd8c2842228 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28422907fd8c2842290 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28422f87fd8c28422f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28423607fd8c2842360 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28423c87fd8c28423c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28424307fd8c2842430 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28424987fd8c2842498 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28425007fd8c2842500 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28425687fd8c2842568 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28425d07fd8c28425d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28426387fd8c2842638 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28426a07fd8c28426a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28427087fd8c2842708 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28427707fd8c2842770 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28427d87fd8c28427d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28428407fd8c2842840 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28428a87fd8c28428a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28429107fd8c2842910 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28429787fd8c2842978 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28429e07fd8c28429e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842a487fd8c2842a48 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842ab07fd8c2842ab0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842b187fd8c2842b18 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842b807fd8c2842b80 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842be87fd8c2842be8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842c507fd8c2842c50 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842cb87fd8c2842cb8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842d207fd8c2842d20 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842d887fd8c2842d88 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842df07fd8c2842df0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842e587fd8c2842e58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842ec07fd8c2842ec0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842f287fd8c2842f28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842f907fd8c2842f90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDc2842ff87fd8c2842ff8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28430607fd8c2843060 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28430c87fd8c28430c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28431307fd8c2843130 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28431987fd8c2843198 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28432007fd8c2843200 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28432687fd8c2843268 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28432d07fd8c28432d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28433387fd8c2843338 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28433a07fd8c28433a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28434087fd8c2843408 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28434707fd8c2843470 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28434d87fd8c28434d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28435407fd8c2843540 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28435a87fd8c28435a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28436107fd8c2843610 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28436787fd8c2843678 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD12609f207fe812609f20 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD1260ccb07fe81260ccb0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD1260cd187fe81260cd18 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD128104007fe812810400 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD128104687fe812810468 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; + FFFD128104d07fe8128104d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD128105387fe812810538 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD128105a07fe8128105a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD128106087fe812810608 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; + FFFD128106707fe812810670 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD128106d87fe8128106d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD128107407fe812810740 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; + FFFD128107a87fe8128107a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128108107fe812810810 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128108787fe812810878 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128108e07fe8128108e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128109487fe812810948 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128109b07fe8128109b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12810a187fe812810a18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12810a807fe812810a80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12810ae87fe812810ae8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12810b507fe812810b50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12810bb87fe812810bb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12810c207fe812810c20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD12810c887fe812810c88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD12810cf07fe812810cf0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; + FFFD12810d587fe812810d58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD12810dc07fe812810dc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD12810e287fe812810e28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; + FFFD12810e907fe812810e90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD12810ef87fe812810ef8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD12810f607fe812810f60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD12810fc87fe812810fc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD128110307fe812811030 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD128110987fe812811098 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; + FFFD128111007fe812811100 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; + FFFD128111687fe812811168 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD128111d07fe8128111d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD128112387fe812811238 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD128112a07fe8128112a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; + FFFD128113087fe812811308 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD128113707fe812811370 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD128113d87fe8128113d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD128114407fe812811440 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD128114a87fe8128114a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD128115107fe812811510 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD128115787fe812811578 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD128115e07fe8128115e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; + FFFD128116487fe812811648 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD128116b07fe8128116b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD128117187fe812811718 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD128117807fe812811780 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD128117e87fe8128117e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; + FFFD128118507fe812811850 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD128118b87fe8128118b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; + FFFD128119207fe812811920 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD128119887fe812811988 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD128119f07fe8128119f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811a587fe812811a58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811ac07fe812811ac0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811b287fe812811b28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811b907fe812811b90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811bf87fe812811bf8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811c607fe812811c60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811cc87fe812811cc8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811d307fe812811d30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811d987fe812811d98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811e007fe812811e00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811e687fe812811e68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811ed07fe812811ed0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811f387fe812811f38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD12811fa07fe812811fa0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; + FFFD128120087fe812812008 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD128120707fe812812070 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD128120d87fe8128120d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD128121407fe812812140 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; + FFFD128121a87fe8128121a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD128122107fe812812210 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD128122787fe812812278 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c173fd607fd8c173fd60 /* Resources */ = { + FFF212609f207fe812609f20 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2271,7 +2271,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc173fd607fd8c173fd60 /* Frameworks */ = { + FFFC12609f207fe812609f20 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2281,21 +2281,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c173fd607fd8c173fd60 /* Sources */ = { + FFF812609f207fe812609f20 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc2841ba87fd8c2841ba8, - FFFFc2841c107fd8c2841c10, - FFFFc2841c787fd8c2841c78, - FFFFc2841ce07fd8c2841ce0, - FFFFc2841d487fd8c2841d48, - FFFFc2841db07fd8c2841db0, - FFFFc2841e187fd8c2841e18, - FFFFc2841e807fd8c2841e80, - FFFFc2841ee87fd8c2841ee8, - FFFFc2841f507fd8c2841f50, - FFFFc2841fb87fd8c2841fb8, + FFFF128107a87fe8128107a8, + FFFF128108107fe812810810, + FFFF128108787fe812810878, + FFFF128108e07fe8128108e0, + FFFF128109487fe812810948, + FFFF128109b07fe8128109b0, + FFFF12810a187fe812810a18, + FFFF12810a807fe812810a80, + FFFF12810ae87fe812810ae8, + FFFF12810b507fe812810b50, + FFFF12810bb87fe812810bb8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2304,108 +2304,108 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4c1758a407fd8c1758a40 /* PBXTargetDependency */ = { + FFF4126081907fe812608190 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAc141af507fd8c141af50 /* PxFoundation */; - targetProxy = FFF5c141af507fd8c141af50 /* PBXContainerItemProxy */; + target = FFFA121657c07fe8121657c0 /* PxFoundation */; + targetProxy = FFF5121657c07fe8121657c0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevel */ - FFFFbfcde6407fd8bfcde640 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDbfcde6407fd8bfcde640 /* px_globals.cpp */; }; - FFFFc165b6c07fd8c165b6c0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc165b6c07fd8c165b6c0 /* PxsCCD.cpp */; }; - FFFFc165b7287fd8c165b728 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc165b7287fd8c165b728 /* PxsContactManager.cpp */; }; - FFFFc165b7907fd8c165b790 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc165b7907fd8c165b790 /* PxsContext.cpp */; }; - FFFFc165b7f87fd8c165b7f8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc165b7f87fd8c165b7f8 /* PxsDefaultMemoryManager.cpp */; }; - FFFFc165b8607fd8c165b860 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc165b8607fd8c165b860 /* PxsIslandSim.cpp */; }; - FFFFc165b8c87fd8c165b8c8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc165b8c87fd8c165b8c8 /* PxsMaterialCombiner.cpp */; }; - FFFFc165b9307fd8c165b930 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc165b9307fd8c165b930 /* PxsNphaseImplementationContext.cpp */; }; - FFFFc165b9987fd8c165b998 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDc165b9987fd8c165b998 /* PxsSimpleIslandManager.cpp */; }; - FFFFc003aa007fd8c003aa00 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc003aa007fd8c003aa00 /* collision/PxcContact.cpp */; }; - FFFFc003aa687fd8c003aa68 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc003aa687fd8c003aa68 /* pipeline/PxcContactCache.cpp */; }; - FFFFc003aad07fd8c003aad0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc003aad07fd8c003aad0 /* pipeline/PxcContactMethodImpl.cpp */; }; - FFFFc003ab387fd8c003ab38 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc003ab387fd8c003ab38 /* pipeline/PxcMaterialHeightField.cpp */; }; - FFFFc003aba07fd8c003aba0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc003aba07fd8c003aba0 /* pipeline/PxcMaterialMesh.cpp */; }; - FFFFc003ac087fd8c003ac08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc003ac087fd8c003ac08 /* pipeline/PxcMaterialMethodImpl.cpp */; }; - FFFFc003ac707fd8c003ac70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc003ac707fd8c003ac70 /* pipeline/PxcMaterialShape.cpp */; }; - FFFFc003acd87fd8c003acd8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc003acd87fd8c003acd8 /* pipeline/PxcNpBatch.cpp */; }; - FFFFc003ad407fd8c003ad40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc003ad407fd8c003ad40 /* pipeline/PxcNpCacheStreamPair.cpp */; }; - FFFFc003ada87fd8c003ada8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc003ada87fd8c003ada8 /* pipeline/PxcNpContactPrepShared.cpp */; }; - FFFFc003ae107fd8c003ae10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc003ae107fd8c003ae10 /* pipeline/PxcNpMemBlockPool.cpp */; }; - FFFFc003ae787fd8c003ae78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDc003ae787fd8c003ae78 /* pipeline/PxcNpThreadContext.cpp */; }; + FFFF125cddd07fe8125cddd0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD125cddd07fe8125cddd0 /* px_globals.cpp */; }; + FFFF12133aa07fe812133aa0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133aa07fe812133aa0 /* PxsCCD.cpp */; }; + FFFF12133b087fe812133b08 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133b087fe812133b08 /* PxsContactManager.cpp */; }; + FFFF12133b707fe812133b70 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133b707fe812133b70 /* PxsContext.cpp */; }; + FFFF12133bd87fe812133bd8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133bd87fe812133bd8 /* PxsDefaultMemoryManager.cpp */; }; + FFFF12133c407fe812133c40 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133c407fe812133c40 /* PxsIslandSim.cpp */; }; + FFFF12133ca87fe812133ca8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133ca87fe812133ca8 /* PxsMaterialCombiner.cpp */; }; + FFFF12133d107fe812133d10 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133d107fe812133d10 /* PxsNphaseImplementationContext.cpp */; }; + FFFF12133d787fe812133d78 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133d787fe812133d78 /* PxsSimpleIslandManager.cpp */; }; + FFFF119b56007fe8119b5600 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b56007fe8119b5600 /* collision/PxcContact.cpp */; }; + FFFF119b56687fe8119b5668 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b56687fe8119b5668 /* pipeline/PxcContactCache.cpp */; }; + FFFF119b56d07fe8119b56d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b56d07fe8119b56d0 /* pipeline/PxcContactMethodImpl.cpp */; }; + FFFF119b57387fe8119b5738 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b57387fe8119b5738 /* pipeline/PxcMaterialHeightField.cpp */; }; + FFFF119b57a07fe8119b57a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b57a07fe8119b57a0 /* pipeline/PxcMaterialMesh.cpp */; }; + FFFF119b58087fe8119b5808 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b58087fe8119b5808 /* pipeline/PxcMaterialMethodImpl.cpp */; }; + FFFF119b58707fe8119b5870 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b58707fe8119b5870 /* pipeline/PxcMaterialShape.cpp */; }; + FFFF119b58d87fe8119b58d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b58d87fe8119b58d8 /* pipeline/PxcNpBatch.cpp */; }; + FFFF119b59407fe8119b5940 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b59407fe8119b5940 /* pipeline/PxcNpCacheStreamPair.cpp */; }; + FFFF119b59a87fe8119b59a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b59a87fe8119b59a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; + FFFF119b5a107fe8119b5a10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b5a107fe8119b5a10 /* pipeline/PxcNpMemBlockPool.cpp */; }; + FFFF119b5a787fe8119b5a78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b5a787fe8119b5a78 /* pipeline/PxcNpThreadContext.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc10c0f007fd8c10c0f00 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDbfcde6407fd8bfcde640 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc165b3107fd8c165b310 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc165b3787fd8c165b378 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc165b3e07fd8c165b3e0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDc165b4487fd8c165b448 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc165b4b07fd8c165b4b0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc165b5187fd8c165b518 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDc165b5807fd8c165b580 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; - FFFDc165b5e87fd8c165b5e8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc165b6507fd8c165b650 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFDc165b6c07fd8c165b6c0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc165b7287fd8c165b728 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc165b7907fd8c165b790 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc165b7f87fd8c165b7f8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc165b8607fd8c165b860 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc165b8c87fd8c165b8c8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc165b9307fd8c165b930 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc165b9987fd8c165b998 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003c0007fd8c003c000 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c0687fd8c003c068 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c0d07fd8c003c0d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c1387fd8c003c138 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c1a07fd8c003c1a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c2087fd8c003c208 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c2707fd8c003c270 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c2d87fd8c003c2d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c3407fd8c003c340 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c3a87fd8c003c3a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c4107fd8c003c410 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c4787fd8c003c478 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c4e07fd8c003c4e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c5487fd8c003c548 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c5b07fd8c003c5b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c6187fd8c003c618 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c6807fd8c003c680 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c6e87fd8c003c6e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c7507fd8c003c750 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003c7b87fd8c003c7b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003aa007fd8c003aa00 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003aa687fd8c003aa68 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003aad07fd8c003aad0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003ab387fd8c003ab38 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003aba07fd8c003aba0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003ac087fd8c003ac08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003ac707fd8c003ac70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003acd87fd8c003acd8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003ad407fd8c003ad40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003ada87fd8c003ada8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003ae107fd8c003ae10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003ae787fd8c003ae78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc3001e007fd8c3001e00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3001e687fd8c3001e68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3001ed07fd8c3001ed0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3001f387fd8c3001f38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc3001fa07fd8c3001fa0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30020087fd8c3002008 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30020707fd8c3002070 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30020d87fd8c30020d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30021407fd8c3002140 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30021a87fd8c30021a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30022107fd8c3002210 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30022787fd8c3002278 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30022e07fd8c30022e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30023487fd8c3002348 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc30023b07fd8c30023b0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD125b5b707fe8125b5b70 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD125cddd07fe8125cddd0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD125ba2d07fe8125ba2d0 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD125ba3387fe8125ba338 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD125ba3a07fe8125ba3a0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD125ba4087fe8125ba408 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD125ba4707fe8125ba470 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD125ba4d87fe8125ba4d8 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD125ba5407fe8125ba540 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; + FFFD125ba5a87fe8125ba5a8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD125ba6107fe8125ba610 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD12133aa07fe812133aa0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12133b087fe812133b08 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12133b707fe812133b70 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12133bd87fe812133bd8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12133c407fe812133c40 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12133ca87fe812133ca8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12133d107fe812133d10 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12133d787fe812133d78 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119af2007fe8119af200 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af2687fe8119af268 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af2d07fe8119af2d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af3387fe8119af338 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af3a07fe8119af3a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af4087fe8119af408 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af4707fe8119af470 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af4d87fe8119af4d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af5407fe8119af540 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af5a87fe8119af5a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af6107fe8119af610 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af6787fe8119af678 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af6e07fe8119af6e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af7487fe8119af748 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af7b07fe8119af7b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af8187fe8119af818 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af8807fe8119af880 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af8e87fe8119af8e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af9507fe8119af950 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD119af9b87fe8119af9b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b56007fe8119b5600 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119b56687fe8119b5668 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119b56d07fe8119b56d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119b57387fe8119b5738 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119b57a07fe8119b57a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119b58087fe8119b5808 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119b58707fe8119b5870 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119b58d87fe8119b58d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119b59407fe8119b5940 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119b59a87fe8119b59a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119b5a107fe8119b5a10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119b5a787fe8119b5a78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119b5e007fe8119b5e00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b5e687fe8119b5e68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b5ed07fe8119b5ed0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b5f387fe8119b5f38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b5fa07fe8119b5fa0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b60087fe8119b6008 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b60707fe8119b6070 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b60d87fe8119b60d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b61407fe8119b6140 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b61a87fe8119b61a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b62107fe8119b6210 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b62787fe8119b6278 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b62e07fe8119b62e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b63487fe8119b6348 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD119b63b07fe8119b63b0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c10c0f007fd8c10c0f00 /* Resources */ = { + FFF2125b5b707fe8125b5b70 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2415,7 +2415,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc10c0f007fd8c10c0f00 /* Frameworks */ = { + FFFC125b5b707fe8125b5b70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2425,31 +2425,31 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c10c0f007fd8c10c0f00 /* Sources */ = { + FFF8125b5b707fe8125b5b70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFbfcde6407fd8bfcde640, - FFFFc165b6c07fd8c165b6c0, - FFFFc165b7287fd8c165b728, - FFFFc165b7907fd8c165b790, - FFFFc165b7f87fd8c165b7f8, - FFFFc165b8607fd8c165b860, - FFFFc165b8c87fd8c165b8c8, - FFFFc165b9307fd8c165b930, - FFFFc165b9987fd8c165b998, - FFFFc003aa007fd8c003aa00, - FFFFc003aa687fd8c003aa68, - FFFFc003aad07fd8c003aad0, - FFFFc003ab387fd8c003ab38, - FFFFc003aba07fd8c003aba0, - FFFFc003ac087fd8c003ac08, - FFFFc003ac707fd8c003ac70, - FFFFc003acd87fd8c003acd8, - FFFFc003ad407fd8c003ad40, - FFFFc003ada87fd8c003ada8, - FFFFc003ae107fd8c003ae10, - FFFFc003ae787fd8c003ae78, + FFFF125cddd07fe8125cddd0, + FFFF12133aa07fe812133aa0, + FFFF12133b087fe812133b08, + FFFF12133b707fe812133b70, + FFFF12133bd87fe812133bd8, + FFFF12133c407fe812133c40, + FFFF12133ca87fe812133ca8, + FFFF12133d107fe812133d10, + FFFF12133d787fe812133d78, + FFFF119b56007fe8119b5600, + FFFF119b56687fe8119b5668, + FFFF119b56d07fe8119b56d0, + FFFF119b57387fe8119b5738, + FFFF119b57a07fe8119b57a0, + FFFF119b58087fe8119b5808, + FFFF119b58707fe8119b5870, + FFFF119b58d87fe8119b58d8, + FFFF119b59407fe8119b5940, + FFFF119b59a87fe8119b59a8, + FFFF119b5a107fe8119b5a10, + FFFF119b5a787fe8119b5a78, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2461,38 +2461,38 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelAABB */ - FFFFc28412707fd8c2841270 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28412707fd8c2841270 /* BpBroadPhase.cpp */; }; - FFFFc28412d87fd8c28412d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28412d87fd8c28412d8 /* BpBroadPhaseMBP.cpp */; }; - FFFFc28413407fd8c2841340 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28413407fd8c2841340 /* BpBroadPhaseSap.cpp */; }; - FFFFc28413a87fd8c28413a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28413a87fd8c28413a8 /* BpBroadPhaseSapAux.cpp */; }; - FFFFc28414107fd8c2841410 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28414107fd8c2841410 /* BpMBPTasks.cpp */; }; - FFFFc28414787fd8c2841478 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28414787fd8c2841478 /* BpSAPTasks.cpp */; }; - FFFFc28414e07fd8c28414e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc28414e07fd8c28414e0 /* BpSimpleAABBManager.cpp */; }; + FFFF128176707fe812817670 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128176707fe812817670 /* BpBroadPhase.cpp */; }; + FFFF128176d87fe8128176d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128176d87fe8128176d8 /* BpBroadPhaseMBP.cpp */; }; + FFFF128177407fe812817740 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128177407fe812817740 /* BpBroadPhaseSap.cpp */; }; + FFFF128177a87fe8128177a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128177a87fe8128177a8 /* BpBroadPhaseSapAux.cpp */; }; + FFFF128178107fe812817810 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128178107fe812817810 /* BpMBPTasks.cpp */; }; + FFFF128178787fe812817878 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128178787fe812817878 /* BpSAPTasks.cpp */; }; + FFFF128178e07fe8128178e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128178e07fe8128178e0 /* BpSimpleAABBManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc17390207fd8c1739020 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc17393b07fd8c17393b0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDc17394187fd8c1739418 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc17394807fd8c1739480 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFDc17394e87fd8c17394e8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28410007fd8c2841000 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28410687fd8c2841068 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28410d07fd8c28410d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28411387fd8c2841138 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28411a07fd8c28411a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28412087fd8c2841208 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDc28412707fd8c2841270 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28412d87fd8c28412d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28413407fd8c2841340 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28413a87fd8c28413a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28414107fd8c2841410 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28414787fd8c2841478 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc28414e07fd8c28414e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1261e8907fe81261e890 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD1262e5707fe81262e570 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD1262e5d87fe81262e5d8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD1262e6407fe81262e640 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD1262e6a87fe81262e6a8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD128174007fe812817400 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; + FFFD128174687fe812817468 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD128174d07fe8128174d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; + FFFD128175387fe812817538 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; + FFFD128175a07fe8128175a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD128176087fe812817608 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD128176707fe812817670 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128176d87fe8128176d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128177407fe812817740 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128177a87fe8128177a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128178107fe812817810 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128178787fe812817878 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD128178e07fe8128178e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c17390207fd8c1739020 /* Resources */ = { + FFF21261e8907fe81261e890 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,7 +2502,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc17390207fd8c1739020 /* Frameworks */ = { + FFFC1261e8907fe81261e890 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2512,17 +2512,17 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c17390207fd8c1739020 /* Sources */ = { + FFF81261e8907fe81261e890 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc28412707fd8c2841270, - FFFFc28412d87fd8c28412d8, - FFFFc28413407fd8c2841340, - FFFFc28413a87fd8c28413a8, - FFFFc28414107fd8c2841410, - FFFFc28414787fd8c2841478, - FFFFc28414e07fd8c28414e0, + FFFF128176707fe812817670, + FFFF128176d87fe8128176d8, + FFFF128177407fe812817740, + FFFF128177a87fe8128177a8, + FFFF128178107fe812817810, + FFFF128178787fe812817878, + FFFF128178e07fe8128178e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2534,106 +2534,106 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelDynamics */ - FFFFc40122007fd8c4012200 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40122007fd8c4012200 /* DyArticulation.cpp */; }; - FFFFc40122687fd8c4012268 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40122687fd8c4012268 /* DyArticulationContactPrep.cpp */; }; - FFFFc40122d07fd8c40122d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40122d07fd8c40122d0 /* DyArticulationContactPrepPF.cpp */; }; - FFFFc40123387fd8c4012338 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40123387fd8c4012338 /* DyArticulationHelper.cpp */; }; - FFFFc40123a07fd8c40123a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40123a07fd8c40123a0 /* DyArticulationSIMD.cpp */; }; - FFFFc40124087fd8c4012408 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40124087fd8c4012408 /* DyArticulationScalar.cpp */; }; - FFFFc40124707fd8c4012470 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40124707fd8c4012470 /* DyConstraintPartition.cpp */; }; - FFFFc40124d87fd8c40124d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40124d87fd8c40124d8 /* DyConstraintSetup.cpp */; }; - FFFFc40125407fd8c4012540 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40125407fd8c4012540 /* DyConstraintSetupBlock.cpp */; }; - FFFFc40125a87fd8c40125a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40125a87fd8c40125a8 /* DyContactPrep.cpp */; }; - FFFFc40126107fd8c4012610 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40126107fd8c4012610 /* DyContactPrep4.cpp */; }; - FFFFc40126787fd8c4012678 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40126787fd8c4012678 /* DyContactPrep4PF.cpp */; }; - FFFFc40126e07fd8c40126e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40126e07fd8c40126e0 /* DyContactPrepPF.cpp */; }; - FFFFc40127487fd8c4012748 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40127487fd8c4012748 /* DyDynamics.cpp */; }; - FFFFc40127b07fd8c40127b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40127b07fd8c40127b0 /* DyFrictionCorrelation.cpp */; }; - FFFFc40128187fd8c4012818 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40128187fd8c4012818 /* DyRigidBodyToSolverBody.cpp */; }; - FFFFc40128807fd8c4012880 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40128807fd8c4012880 /* DySolverConstraints.cpp */; }; - FFFFc40128e87fd8c40128e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40128e87fd8c40128e8 /* DySolverConstraintsBlock.cpp */; }; - FFFFc40129507fd8c4012950 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40129507fd8c4012950 /* DySolverControl.cpp */; }; - FFFFc40129b87fd8c40129b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc40129b87fd8c40129b8 /* DySolverControlPF.cpp */; }; - FFFFc4012a207fd8c4012a20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc4012a207fd8c4012a20 /* DySolverPFConstraints.cpp */; }; - FFFFc4012a887fd8c4012a88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc4012a887fd8c4012a88 /* DySolverPFConstraintsBlock.cpp */; }; - FFFFc4012af07fd8c4012af0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc4012af07fd8c4012af0 /* DyThreadContext.cpp */; }; - FFFFc4012b587fd8c4012b58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDc4012b587fd8c4012b58 /* DyThresholdTable.cpp */; }; + FFFF119bfa007fe8119bfa00 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfa007fe8119bfa00 /* DyArticulation.cpp */; }; + FFFF119bfa687fe8119bfa68 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfa687fe8119bfa68 /* DyArticulationContactPrep.cpp */; }; + FFFF119bfad07fe8119bfad0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfad07fe8119bfad0 /* DyArticulationContactPrepPF.cpp */; }; + FFFF119bfb387fe8119bfb38 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfb387fe8119bfb38 /* DyArticulationHelper.cpp */; }; + FFFF119bfba07fe8119bfba0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfba07fe8119bfba0 /* DyArticulationSIMD.cpp */; }; + FFFF119bfc087fe8119bfc08 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfc087fe8119bfc08 /* DyArticulationScalar.cpp */; }; + FFFF119bfc707fe8119bfc70 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfc707fe8119bfc70 /* DyConstraintPartition.cpp */; }; + FFFF119bfcd87fe8119bfcd8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfcd87fe8119bfcd8 /* DyConstraintSetup.cpp */; }; + FFFF119bfd407fe8119bfd40 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfd407fe8119bfd40 /* DyConstraintSetupBlock.cpp */; }; + FFFF119bfda87fe8119bfda8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfda87fe8119bfda8 /* DyContactPrep.cpp */; }; + FFFF119bfe107fe8119bfe10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfe107fe8119bfe10 /* DyContactPrep4.cpp */; }; + FFFF119bfe787fe8119bfe78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfe787fe8119bfe78 /* DyContactPrep4PF.cpp */; }; + FFFF119bfee07fe8119bfee0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfee07fe8119bfee0 /* DyContactPrepPF.cpp */; }; + FFFF119bff487fe8119bff48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bff487fe8119bff48 /* DyDynamics.cpp */; }; + FFFF119bffb07fe8119bffb0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bffb07fe8119bffb0 /* DyFrictionCorrelation.cpp */; }; + FFFF119c00187fe8119c0018 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c00187fe8119c0018 /* DyRigidBodyToSolverBody.cpp */; }; + FFFF119c00807fe8119c0080 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c00807fe8119c0080 /* DySolverConstraints.cpp */; }; + FFFF119c00e87fe8119c00e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c00e87fe8119c00e8 /* DySolverConstraintsBlock.cpp */; }; + FFFF119c01507fe8119c0150 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c01507fe8119c0150 /* DySolverControl.cpp */; }; + FFFF119c01b87fe8119c01b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c01b87fe8119c01b8 /* DySolverControlPF.cpp */; }; + FFFF119c02207fe8119c0220 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c02207fe8119c0220 /* DySolverPFConstraints.cpp */; }; + FFFF119c02887fe8119c0288 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c02887fe8119c0288 /* DySolverPFConstraintsBlock.cpp */; }; + FFFF119c02f07fe8119c02f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c02f07fe8119c02f0 /* DyThreadContext.cpp */; }; + FFFF119c03587fe8119c0358 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c03587fe8119c0358 /* DyThresholdTable.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc10c8d107fd8c10c8d10 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc40122007fd8c4012200 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40122687fd8c4012268 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40122d07fd8c40122d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40123387fd8c4012338 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40123a07fd8c40123a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40124087fd8c4012408 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40124707fd8c4012470 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40124d87fd8c40124d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40125407fd8c4012540 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40125a87fd8c40125a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40126107fd8c4012610 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40126787fd8c4012678 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40126e07fd8c40126e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40127487fd8c4012748 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40127b07fd8c40127b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40128187fd8c4012818 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40128807fd8c4012880 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40128e87fd8c40128e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40129507fd8c4012950 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc40129b87fd8c40129b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4012a207fd8c4012a20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4012a887fd8c4012a88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4012af07fd8c4012af0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc4012b587fd8c4012b58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc14787807fd8c1478780 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc14787e87fd8c14787e8 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDc14788507fd8c1478850 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; - FFFDc14788b87fd8c14788b8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc14789207fd8c1478920 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDc14789887fd8c1478988 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDc14789f07fd8c14789f0 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40158007fd8c4015800 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40158687fd8c4015868 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40158d07fd8c40158d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40159387fd8c4015938 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40159a07fd8c40159a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015a087fd8c4015a08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015a707fd8c4015a70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015ad87fd8c4015ad8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015b407fd8c4015b40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015ba87fd8c4015ba8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015c107fd8c4015c10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015c787fd8c4015c78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015ce07fd8c4015ce0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015d487fd8c4015d48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015db07fd8c4015db0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015e187fd8c4015e18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015e807fd8c4015e80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015ee87fd8c4015ee8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015f507fd8c4015f50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4015fb87fd8c4015fb8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40160207fd8c4016020 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40160887fd8c4016088 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40160f07fd8c40160f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40161587fd8c4016158 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40161c07fd8c40161c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40162287fd8c4016228 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40162907fd8c4016290 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40162f87fd8c40162f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40163607fd8c4016360 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40163c87fd8c40163c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40164307fd8c4016430 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40164987fd8c4016498 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40165007fd8c4016500 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40165687fd8c4016568 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40165d07fd8c40165d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40166387fd8c4016638 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; - FFFDc40166a07fd8c40166a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD125e9ce07fe8125e9ce0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD119bfa007fe8119bfa00 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bfa687fe8119bfa68 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bfad07fe8119bfad0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bfb387fe8119bfb38 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bfba07fe8119bfba0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bfc087fe8119bfc08 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bfc707fe8119bfc70 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bfcd87fe8119bfcd8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bfd407fe8119bfd40 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bfda87fe8119bfda8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bfe107fe8119bfe10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bfe787fe8119bfe78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bfee07fe8119bfee0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bff487fe8119bff48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119bffb07fe8119bffb0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119c00187fe8119c0018 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119c00807fe8119c0080 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119c00e87fe8119c00e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119c01507fe8119c0150 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119c01b87fe8119c01b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119c02207fe8119c0220 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119c02887fe8119c0288 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119c02f07fe8119c02f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119c03587fe8119c0358 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD125e22f07fe8125e22f0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD125e23587fe8125e2358 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD125e23c07fe8125e23c0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; + FFFD125e24287fe8125e2428 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD125e24907fe8125e2490 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD125e24f87fe8125e24f8 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD125e25607fe8125e2560 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c0c007fe8119c0c00 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c0c687fe8119c0c68 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c0cd07fe8119c0cd0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c0d387fe8119c0d38 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c0da07fe8119c0da0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c0e087fe8119c0e08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c0e707fe8119c0e70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c0ed87fe8119c0ed8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c0f407fe8119c0f40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c0fa87fe8119c0fa8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c10107fe8119c1010 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c10787fe8119c1078 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c10e07fe8119c10e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c11487fe8119c1148 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c11b07fe8119c11b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c12187fe8119c1218 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c12807fe8119c1280 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c12e87fe8119c12e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c13507fe8119c1350 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c13b87fe8119c13b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c14207fe8119c1420 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c14887fe8119c1488 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c14f07fe8119c14f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c15587fe8119c1558 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c15c07fe8119c15c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c16287fe8119c1628 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c16907fe8119c1690 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c16f87fe8119c16f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c17607fe8119c1760 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c17c87fe8119c17c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c18307fe8119c1830 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c18987fe8119c1898 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c19007fe8119c1900 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c19687fe8119c1968 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c19d07fe8119c19d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c1a387fe8119c1a38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c1aa07fe8119c1aa0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c10c8d107fd8c10c8d10 /* Resources */ = { + FFF2125e9ce07fe8125e9ce0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2643,7 +2643,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc10c8d107fd8c10c8d10 /* Frameworks */ = { + FFFC125e9ce07fe8125e9ce0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2653,34 +2653,34 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c10c8d107fd8c10c8d10 /* Sources */ = { + FFF8125e9ce07fe8125e9ce0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc40122007fd8c4012200, - FFFFc40122687fd8c4012268, - FFFFc40122d07fd8c40122d0, - FFFFc40123387fd8c4012338, - FFFFc40123a07fd8c40123a0, - FFFFc40124087fd8c4012408, - FFFFc40124707fd8c4012470, - FFFFc40124d87fd8c40124d8, - FFFFc40125407fd8c4012540, - FFFFc40125a87fd8c40125a8, - FFFFc40126107fd8c4012610, - FFFFc40126787fd8c4012678, - FFFFc40126e07fd8c40126e0, - FFFFc40127487fd8c4012748, - FFFFc40127b07fd8c40127b0, - FFFFc40128187fd8c4012818, - FFFFc40128807fd8c4012880, - FFFFc40128e87fd8c40128e8, - FFFFc40129507fd8c4012950, - FFFFc40129b87fd8c40129b8, - FFFFc4012a207fd8c4012a20, - FFFFc4012a887fd8c4012a88, - FFFFc4012af07fd8c4012af0, - FFFFc4012b587fd8c4012b58, + FFFF119bfa007fe8119bfa00, + FFFF119bfa687fe8119bfa68, + FFFF119bfad07fe8119bfad0, + FFFF119bfb387fe8119bfb38, + FFFF119bfba07fe8119bfba0, + FFFF119bfc087fe8119bfc08, + FFFF119bfc707fe8119bfc70, + FFFF119bfcd87fe8119bfcd8, + FFFF119bfd407fe8119bfd40, + FFFF119bfda87fe8119bfda8, + FFFF119bfe107fe8119bfe10, + FFFF119bfe787fe8119bfe78, + FFFF119bfee07fe8119bfee0, + FFFF119bff487fe8119bff48, + FFFF119bffb07fe8119bffb0, + FFFF119c00187fe8119c0018, + FFFF119c00807fe8119c0080, + FFFF119c00e87fe8119c00e8, + FFFF119c01507fe8119c0150, + FFFF119c01b87fe8119c01b8, + FFFF119c02207fe8119c0220, + FFFF119c02887fe8119c0288, + FFFF119c02f07fe8119c02f0, + FFFF119c03587fe8119c0358, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2692,70 +2692,70 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelCloth */ - FFFFc003d3587fd8c003d358 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d3587fd8c003d358 /* Allocator.cpp */; }; - FFFFc003d3c07fd8c003d3c0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d3c07fd8c003d3c0 /* Factory.cpp */; }; - FFFFc003d4287fd8c003d428 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d4287fd8c003d428 /* PhaseConfig.cpp */; }; - FFFFc003d4907fd8c003d490 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d4907fd8c003d490 /* SwCloth.cpp */; }; - FFFFc003d4f87fd8c003d4f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d4f87fd8c003d4f8 /* SwClothData.cpp */; }; - FFFFc003d5607fd8c003d560 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d5607fd8c003d560 /* SwCollision.cpp */; }; - FFFFc003d5c87fd8c003d5c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d5c87fd8c003d5c8 /* SwFabric.cpp */; }; - FFFFc003d6307fd8c003d630 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d6307fd8c003d630 /* SwFactory.cpp */; }; - FFFFc003d6987fd8c003d698 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d6987fd8c003d698 /* SwInterCollision.cpp */; }; - FFFFc003d7007fd8c003d700 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d7007fd8c003d700 /* SwSelfCollision.cpp */; }; - FFFFc003d7687fd8c003d768 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d7687fd8c003d768 /* SwSolver.cpp */; }; - FFFFc003d7d07fd8c003d7d0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d7d07fd8c003d7d0 /* SwSolverKernel.cpp */; }; - FFFFc003d8387fd8c003d838 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc003d8387fd8c003d838 /* TripletScheduler.cpp */; }; + FFFF138097587fe813809758 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138097587fe813809758 /* Allocator.cpp */; }; + FFFF138097c07fe8138097c0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138097c07fe8138097c0 /* Factory.cpp */; }; + FFFF138098287fe813809828 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138098287fe813809828 /* PhaseConfig.cpp */; }; + FFFF138098907fe813809890 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138098907fe813809890 /* SwCloth.cpp */; }; + FFFF138098f87fe8138098f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138098f87fe8138098f8 /* SwClothData.cpp */; }; + FFFF138099607fe813809960 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138099607fe813809960 /* SwCollision.cpp */; }; + FFFF138099c87fe8138099c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138099c87fe8138099c8 /* SwFabric.cpp */; }; + FFFF13809a307fe813809a30 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD13809a307fe813809a30 /* SwFactory.cpp */; }; + FFFF13809a987fe813809a98 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD13809a987fe813809a98 /* SwInterCollision.cpp */; }; + FFFF13809b007fe813809b00 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD13809b007fe813809b00 /* SwSelfCollision.cpp */; }; + FFFF13809b687fe813809b68 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD13809b687fe813809b68 /* SwSolver.cpp */; }; + FFFF13809bd07fe813809bd0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD13809bd07fe813809bd0 /* SwSolverKernel.cpp */; }; + FFFF13809c387fe813809c38 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD13809c387fe813809c38 /* TripletScheduler.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc172f9207fd8c172f920 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc173c1707fd8c173c170 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDc173c1d87fd8c173c1d8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDc173c2407fd8c173c240 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc173c2a87fd8c173c2a8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDc173c3107fd8c173c310 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; - FFFDc173c3787fd8c173c378 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; - FFFDc173c3e07fd8c173c3e0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003ca007fd8c003ca00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003ca687fd8c003ca68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003cad07fd8c003cad0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003cb387fd8c003cb38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003cba07fd8c003cba0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003cc087fd8c003cc08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003cc707fd8c003cc70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003ccd87fd8c003ccd8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003cd407fd8c003cd40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003cda87fd8c003cda8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003ce107fd8c003ce10 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003ce787fd8c003ce78 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003cee07fd8c003cee0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003cf487fd8c003cf48 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003cfb07fd8c003cfb0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003d0187fd8c003d018 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003d0807fd8c003d080 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003d0e87fd8c003d0e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003d1507fd8c003d150 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003d1b87fd8c003d1b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003d2207fd8c003d220 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003d2887fd8c003d288 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003d2f07fd8c003d2f0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; - FFFDc003d3587fd8c003d358 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003d3c07fd8c003d3c0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003d4287fd8c003d428 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003d4907fd8c003d490 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003d4f87fd8c003d4f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003d5607fd8c003d560 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003d5c87fd8c003d5c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003d6307fd8c003d630 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003d6987fd8c003d698 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003d7007fd8c003d700 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003d7687fd8c003d768 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003d7d07fd8c003d7d0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc003d8387fd8c003d838 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD130090807fe813009080 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD1300ca507fe81300ca50 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD1300cab87fe81300cab8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD1300cb207fe81300cb20 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; + FFFD1300cb887fe81300cb88 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD1300cbf07fe81300cbf0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; + FFFD1300cc587fe81300cc58 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; + FFFD1300ccc07fe81300ccc0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; + FFFD13808e007fe813808e00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD13808e687fe813808e68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; + FFFD13808ed07fe813808ed0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD13808f387fe813808f38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD13808fa07fe813808fa0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD138090087fe813809008 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD138090707fe813809070 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; + FFFD138090d87fe8138090d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; + FFFD138091407fe813809140 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; + FFFD138091a87fe8138091a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; + FFFD138092107fe813809210 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD138092787fe813809278 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD138092e07fe8138092e0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; + FFFD138093487fe813809348 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD138093b07fe8138093b0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD138094187fe813809418 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD138094807fe813809480 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD138094e87fe8138094e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD138095507fe813809550 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD138095b87fe8138095b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; + FFFD138096207fe813809620 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; + FFFD138096887fe813809688 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; + FFFD138096f07fe8138096f0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; + FFFD138097587fe813809758 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD138097c07fe8138097c0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD138098287fe813809828 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD138098907fe813809890 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD138098f87fe8138098f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD138099607fe813809960 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD138099c87fe8138099c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD13809a307fe813809a30 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD13809a987fe813809a98 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD13809b007fe813809b00 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD13809b687fe813809b68 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD13809bd07fe813809bd0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD13809c387fe813809c38 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c172f9207fd8c172f920 /* Resources */ = { + FFF2130090807fe813009080 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2765,7 +2765,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc172f9207fd8c172f920 /* Frameworks */ = { + FFFC130090807fe813009080 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2775,23 +2775,23 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c172f9207fd8c172f920 /* Sources */ = { + FFF8130090807fe813009080 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc003d3587fd8c003d358, - FFFFc003d3c07fd8c003d3c0, - FFFFc003d4287fd8c003d428, - FFFFc003d4907fd8c003d490, - FFFFc003d4f87fd8c003d4f8, - FFFFc003d5607fd8c003d560, - FFFFc003d5c87fd8c003d5c8, - FFFFc003d6307fd8c003d630, - FFFFc003d6987fd8c003d698, - FFFFc003d7007fd8c003d700, - FFFFc003d7687fd8c003d768, - FFFFc003d7d07fd8c003d7d0, - FFFFc003d8387fd8c003d838, + FFFF138097587fe813809758, + FFFF138097c07fe8138097c0, + FFFF138098287fe813809828, + FFFF138098907fe813809890, + FFFF138098f87fe8138098f8, + FFFF138099607fe813809960, + FFFF138099c87fe8138099c8, + FFFF13809a307fe813809a30, + FFFF13809a987fe813809a98, + FFFF13809b007fe813809b00, + FFFF13809b687fe813809b68, + FFFF13809bd07fe813809bd0, + FFFF13809c387fe813809c38, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2803,79 +2803,79 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelParticles */ - FFFFc1882b587fd8c1882b58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1882b587fd8c1882b58 /* PtBatcher.cpp */; }; - FFFFc1882bc07fd8c1882bc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1882bc07fd8c1882bc0 /* PtBodyTransformVault.cpp */; }; - FFFFc1882c287fd8c1882c28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1882c287fd8c1882c28 /* PtCollision.cpp */; }; - FFFFc1882c907fd8c1882c90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1882c907fd8c1882c90 /* PtCollisionBox.cpp */; }; - FFFFc1882cf87fd8c1882cf8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1882cf87fd8c1882cf8 /* PtCollisionCapsule.cpp */; }; - FFFFc1882d607fd8c1882d60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1882d607fd8c1882d60 /* PtCollisionConvex.cpp */; }; - FFFFc1882dc87fd8c1882dc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1882dc87fd8c1882dc8 /* PtCollisionMesh.cpp */; }; - FFFFc1882e307fd8c1882e30 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1882e307fd8c1882e30 /* PtCollisionPlane.cpp */; }; - FFFFc1882e987fd8c1882e98 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1882e987fd8c1882e98 /* PtCollisionSphere.cpp */; }; - FFFFc1882f007fd8c1882f00 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1882f007fd8c1882f00 /* PtContextCpu.cpp */; }; - FFFFc1882f687fd8c1882f68 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1882f687fd8c1882f68 /* PtDynamics.cpp */; }; - FFFFc1882fd07fd8c1882fd0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc1882fd07fd8c1882fd0 /* PtParticleData.cpp */; }; - FFFFc18830387fd8c1883038 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18830387fd8c1883038 /* PtParticleShapeCpu.cpp */; }; - FFFFc18830a07fd8c18830a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18830a07fd8c18830a0 /* PtParticleSystemSimCpu.cpp */; }; - FFFFc18831087fd8c1883108 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18831087fd8c1883108 /* PtSpatialHash.cpp */; }; - FFFFc18831707fd8c1883170 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc18831707fd8c1883170 /* PtSpatialLocalHash.cpp */; }; + FFFF119caf587fe8119caf58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119caf587fe8119caf58 /* PtBatcher.cpp */; }; + FFFF119cafc07fe8119cafc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cafc07fe8119cafc0 /* PtBodyTransformVault.cpp */; }; + FFFF119cb0287fe8119cb028 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb0287fe8119cb028 /* PtCollision.cpp */; }; + FFFF119cb0907fe8119cb090 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb0907fe8119cb090 /* PtCollisionBox.cpp */; }; + FFFF119cb0f87fe8119cb0f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb0f87fe8119cb0f8 /* PtCollisionCapsule.cpp */; }; + FFFF119cb1607fe8119cb160 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb1607fe8119cb160 /* PtCollisionConvex.cpp */; }; + FFFF119cb1c87fe8119cb1c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb1c87fe8119cb1c8 /* PtCollisionMesh.cpp */; }; + FFFF119cb2307fe8119cb230 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb2307fe8119cb230 /* PtCollisionPlane.cpp */; }; + FFFF119cb2987fe8119cb298 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb2987fe8119cb298 /* PtCollisionSphere.cpp */; }; + FFFF119cb3007fe8119cb300 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb3007fe8119cb300 /* PtContextCpu.cpp */; }; + FFFF119cb3687fe8119cb368 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb3687fe8119cb368 /* PtDynamics.cpp */; }; + FFFF119cb3d07fe8119cb3d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb3d07fe8119cb3d0 /* PtParticleData.cpp */; }; + FFFF119cb4387fe8119cb438 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb4387fe8119cb438 /* PtParticleShapeCpu.cpp */; }; + FFFF119cb4a07fe8119cb4a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb4a07fe8119cb4a0 /* PtParticleSystemSimCpu.cpp */; }; + FFFF119cb5087fe8119cb508 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb5087fe8119cb508 /* PtSpatialHash.cpp */; }; + FFFF119cb5707fe8119cb570 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb5707fe8119cb570 /* PtSpatialLocalHash.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc133d4f07fd8c133d4f0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc187da007fd8c187da00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; - FFFDc187da687fd8c187da68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDc187dad07fd8c187dad0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; - FFFDc187db387fd8c187db38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; - FFFDc187dba07fd8c187dba0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDc187dc087fd8c187dc08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc187dc707fd8c187dc70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDc187dcd87fd8c187dcd8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDc187dd407fd8c187dd40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDc187dda87fd8c187dda8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18822007fd8c1882200 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18822687fd8c1882268 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18822d07fd8c18822d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18823387fd8c1882338 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18823a07fd8c18823a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18824087fd8c1882408 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18824707fd8c1882470 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18824d87fd8c18824d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18825407fd8c1882540 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18825a87fd8c18825a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18826107fd8c1882610 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18826787fd8c1882678 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18826e07fd8c18826e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18827487fd8c1882748 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18827b07fd8c18827b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18828187fd8c1882818 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18828807fd8c1882880 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18828e87fd8c18828e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18829507fd8c1882950 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDc18829b87fd8c18829b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1882a207fd8c1882a20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1882a887fd8c1882a88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1882af07fd8c1882af0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; - FFFDc1882b587fd8c1882b58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1882bc07fd8c1882bc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1882c287fd8c1882c28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1882c907fd8c1882c90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1882cf87fd8c1882cf8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1882d607fd8c1882d60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1882dc87fd8c1882dc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1882e307fd8c1882e30 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1882e987fd8c1882e98 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1882f007fd8c1882f00 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1882f687fd8c1882f68 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc1882fd07fd8c1882fd0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18830387fd8c1883038 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18830a07fd8c18830a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18831087fd8c1883108 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDc18831707fd8c1883170 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD12708bc07fe812708bc0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD119c90007fe8119c9000 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c90687fe8119c9068 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c90d07fe8119c90d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c91387fe8119c9138 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c91a07fe8119c91a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c92087fe8119c9208 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c92707fe8119c9270 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c92d87fe8119c92d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c93407fe8119c9340 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD119c93a87fe8119c93a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD119ca6007fe8119ca600 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD119ca6687fe8119ca668 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD119ca6d07fe8119ca6d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD119ca7387fe8119ca738 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD119ca7a07fe8119ca7a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; + FFFD119ca8087fe8119ca808 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD119ca8707fe8119ca870 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD119ca8d87fe8119ca8d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD119ca9407fe8119ca940 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD119ca9a87fe8119ca9a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD119caa107fe8119caa10 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD119caa787fe8119caa78 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; + FFFD119caae07fe8119caae0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD119cab487fe8119cab48 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; + FFFD119cabb07fe8119cabb0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD119cac187fe8119cac18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; + FFFD119cac807fe8119cac80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; + FFFD119cace87fe8119cace8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD119cad507fe8119cad50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD119cadb87fe8119cadb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD119cae207fe8119cae20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD119cae887fe8119cae88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD119caef07fe8119caef0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; + FFFD119caf587fe8119caf58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cafc07fe8119cafc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb0287fe8119cb028 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb0907fe8119cb090 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb0f87fe8119cb0f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb1607fe8119cb160 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb1c87fe8119cb1c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb2307fe8119cb230 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb2987fe8119cb298 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb3007fe8119cb300 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb3687fe8119cb368 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb3d07fe8119cb3d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb4387fe8119cb438 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb4a07fe8119cb4a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb5087fe8119cb508 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD119cb5707fe8119cb570 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c133d4f07fd8c133d4f0 /* Resources */ = { + FFF212708bc07fe812708bc0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2885,7 +2885,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc133d4f07fd8c133d4f0 /* Frameworks */ = { + FFFC12708bc07fe812708bc0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2895,26 +2895,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c133d4f07fd8c133d4f0 /* Sources */ = { + FFF812708bc07fe812708bc0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc1882b587fd8c1882b58, - FFFFc1882bc07fd8c1882bc0, - FFFFc1882c287fd8c1882c28, - FFFFc1882c907fd8c1882c90, - FFFFc1882cf87fd8c1882cf8, - FFFFc1882d607fd8c1882d60, - FFFFc1882dc87fd8c1882dc8, - FFFFc1882e307fd8c1882e30, - FFFFc1882e987fd8c1882e98, - FFFFc1882f007fd8c1882f00, - FFFFc1882f687fd8c1882f68, - FFFFc1882fd07fd8c1882fd0, - FFFFc18830387fd8c1883038, - FFFFc18830a07fd8c18830a0, - FFFFc18831087fd8c1883108, - FFFFc18831707fd8c1883170, + FFFF119caf587fe8119caf58, + FFFF119cafc07fe8119cafc0, + FFFF119cb0287fe8119cb028, + FFFF119cb0907fe8119cb090, + FFFF119cb0f87fe8119cb0f8, + FFFF119cb1607fe8119cb160, + FFFF119cb1c87fe8119cb1c8, + FFFF119cb2307fe8119cb230, + FFFF119cb2987fe8119cb298, + FFFF119cb3007fe8119cb300, + FFFF119cb3687fe8119cb368, + FFFF119cb3d07fe8119cb3d0, + FFFF119cb4387fe8119cb438, + FFFF119cb4a07fe8119cb4a0, + FFFF119cb5087fe8119cb508, + FFFF119cb5707fe8119cb570, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2926,22 +2926,22 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxTask */ - FFFFc4a6b5907fd8c4a6b590 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4a6b5907fd8c4a6b590 /* src/TaskManager.cpp */; }; + FFFF132817a07fe8132817a0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD132817a07fe8132817a0 /* src/TaskManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc13406907fd8c1340690 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc4a62ec07fd8c4a62ec0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4a62f287fd8c4a62f28 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4a62f907fd8c4a62f90 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4a62ff87fd8c4a62ff8 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4a630607fd8c4a63060 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4a630c87fd8c4a630c8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4a6b5907fd8c4a6b590 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD132a0da07fe8132a0da0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD132815307fe813281530 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD132815987fe813281598 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD132816007fe813281600 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD132816687fe813281668 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD132816d07fe8132816d0 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; + FFFD132817387fe813281738 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD132817a07fe8132817a0 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c13406907fd8c1340690 /* Resources */ = { + FFF2132a0da07fe8132a0da0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2951,7 +2951,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc13406907fd8c1340690 /* Frameworks */ = { + FFFC132a0da07fe8132a0da0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2961,11 +2961,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c13406907fd8c1340690 /* Sources */ = { + FFF8132a0da07fe8132a0da0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc4a6b5907fd8c4a6b590, + FFFF132817a07fe8132817a0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2977,17 +2977,17 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PsFastXml */ - FFFFc4a8f0507fd8c4a8f050 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDc4a8f0507fd8c4a8f050 /* PsFastXml.cpp */; }; + FFFF1263f1107fe81263f110 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1263f1107fe81263f110 /* PsFastXml.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDc4a7d6007fd8c4a7d600 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDc4a8ef507fd8c4a8ef50 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; - FFFDc4a8f0507fd8c4a8f050 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD1265b4d07fe81265b4d0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD126394307fe812639430 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; + FFFD1263f1107fe81263f110 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2c4a7d6007fd8c4a7d600 /* Resources */ = { + FFF21265b4d07fe81265b4d0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2997,7 +2997,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCc4a7d6007fd8c4a7d600 /* Frameworks */ = { + FFFC1265b4d07fe81265b4d0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3007,11 +3007,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8c4a7d6007fd8c4a7d600 /* Sources */ = { + FFF81265b4d07fe81265b4d0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFc4a8f0507fd8c4a8f050, + FFFF1263f1107fe81263f110, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3023,1967 +3023,1967 @@ /* End PBXTargetDependency section */ /* Begin PBXContainerItemProxy section */ - FFF5c4a8bb607fd8c4a8bb60 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF51266ac007fe81266ac00 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc4a8bb607fd8c4a8bb60 /* PhysX */; + remoteGlobalIDString = FFFA1266ac007fe81266ac00 /* PhysX */; remoteInfo = "PhysX"; }; - FFF5c49045107fd8c4904510 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF5126754e07fe8126754e0 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc49045107fd8c4904510 /* PhysXCharacterKinematic */; + remoteGlobalIDString = FFFA126754e07fe8126754e0 /* PhysXCharacterKinematic */; remoteInfo = "PhysXCharacterKinematic"; }; - FFF5c490d1007fd8c490d100 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF5126728307fe812672830 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc490d1007fd8c490d100 /* PhysXVehicle */; + remoteGlobalIDString = FFFA126728307fe812672830 /* PhysXVehicle */; remoteInfo = "PhysXVehicle"; }; - FFF5c4912c607fd8c4912c60 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF512683c607fe812683c60 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc4912c607fd8c4912c60 /* PhysXExtensions */; + remoteGlobalIDString = FFFA12683c607fe812683c60 /* PhysXExtensions */; remoteInfo = "PhysXExtensions"; }; - FFF5c491f0907fd8c491f090 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF512694cb07fe812694cb0 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc491f0907fd8c491f090 /* SceneQuery */; + remoteGlobalIDString = FFFA12694cb07fe812694cb0 /* SceneQuery */; remoteInfo = "SceneQuery"; }; - FFF5c49236207fd8c4923620 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF5126992107fe812699210 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc49236207fd8c4923620 /* SimulationController */; + remoteGlobalIDString = FFFA126992107fe812699210 /* SimulationController */; remoteInfo = "SimulationController"; }; - FFF5c10c82107fd8c10c8210 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF5134ec9b07fe8134ec9b0 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc10c82107fd8c10c8210 /* PhysXCooking */; + remoteGlobalIDString = FFFA134ec9b07fe8134ec9b0 /* PhysXCooking */; remoteInfo = "PhysXCooking"; }; - FFF5c1414ed07fd8c1414ed0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF512128d507fe812128d50 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc1414ed07fd8c1414ed0 /* PhysXCommon */; + remoteGlobalIDString = FFFA12128d507fe812128d50 /* PhysXCommon */; remoteInfo = "PhysXCommon"; }; - FFF5c141af507fd8c141af50 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF5121657c07fe8121657c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc141af507fd8c141af50 /* PxFoundation */; + remoteGlobalIDString = FFFA121657c07fe8121657c0 /* PxFoundation */; remoteInfo = "PxFoundation"; }; - FFF5c173fd607fd8c173fd60 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF512609f207fe812609f20 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc173fd607fd8c173fd60 /* PxPvdSDK */; + remoteGlobalIDString = FFFA12609f207fe812609f20 /* PxPvdSDK */; remoteInfo = "PxPvdSDK"; }; - FFF5c10c0f007fd8c10c0f00 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF5125b5b707fe8125b5b70 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc10c0f007fd8c10c0f00 /* LowLevel */; + remoteGlobalIDString = FFFA125b5b707fe8125b5b70 /* LowLevel */; remoteInfo = "LowLevel"; }; - FFF5c17390207fd8c1739020 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF51261e8907fe81261e890 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc17390207fd8c1739020 /* LowLevelAABB */; + remoteGlobalIDString = FFFA1261e8907fe81261e890 /* LowLevelAABB */; remoteInfo = "LowLevelAABB"; }; - FFF5c10c8d107fd8c10c8d10 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF5125e9ce07fe8125e9ce0 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc10c8d107fd8c10c8d10 /* LowLevelDynamics */; + remoteGlobalIDString = FFFA125e9ce07fe8125e9ce0 /* LowLevelDynamics */; remoteInfo = "LowLevelDynamics"; }; - FFF5c172f9207fd8c172f920 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF5130090807fe813009080 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc172f9207fd8c172f920 /* LowLevelCloth */; + remoteGlobalIDString = FFFA130090807fe813009080 /* LowLevelCloth */; remoteInfo = "LowLevelCloth"; }; - FFF5c133d4f07fd8c133d4f0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF512708bc07fe812708bc0 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc133d4f07fd8c133d4f0 /* LowLevelParticles */; + remoteGlobalIDString = FFFA12708bc07fe812708bc0 /* LowLevelParticles */; remoteInfo = "LowLevelParticles"; }; - FFF5c13406907fd8c1340690 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF5132a0da07fe8132a0da0 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc13406907fd8c1340690 /* PxTask */; + remoteGlobalIDString = FFFA132a0da07fe8132a0da0 /* PxTask */; remoteInfo = "PxTask"; }; - FFF5c4a7d6007fd8c4a7d600 /* PBXContainerItemProxy */ = { - containerPortal = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + FFF51265b4d07fe81265b4d0 /* PBXContainerItemProxy */ = { + containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAc4a7d6007fd8c4a7d600 /* PsFastXml */; + remoteGlobalIDString = FFFA1265b4d07fe81265b4d0 /* PsFastXml */; remoteInfo = "PsFastXml"; }; /* End PBXContainerItemProxy section */ /* Begin PBXGroup section */ - FFFBbfd0c8787fd8bfd0c878 /* PhysX */ = { + FFFB10f1e4f87fe810f1e4f8 /* PhysX */ = { isa = PBXGroup; children = ( - FFF0bfd0c8107fd8bfd0c810 /* Source */, - FFEEbfd0c8107fd8bfd0c810 /* Products */, + FFF010f1e4907fe810f1e490 /* Source */, + FFEE10f1e4907fe810f1e490 /* Products */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFF0bfd0c8107fd8bfd0c810 /* Source */ = { + FFF010f1e4907fe810f1e490 /* Source */ = { isa = PBXGroup; children = ( - FFFBc4a8bb607fd8c4a8bb60, - FFFBc49045107fd8c4904510, - FFFBc490d1007fd8c490d100, - FFFBc4912c607fd8c4912c60, - FFFBc491f0907fd8c491f090, - FFFBc49236207fd8c4923620, - FFFBc10c82107fd8c10c8210, - FFFBc1414ed07fd8c1414ed0, - FFFBc141af507fd8c141af50, - FFFBc173fd607fd8c173fd60, - FFFBc10c0f007fd8c10c0f00, - FFFBc17390207fd8c1739020, - FFFBc10c8d107fd8c10c8d10, - FFFBc172f9207fd8c172f920, - FFFBc133d4f07fd8c133d4f0, - FFFBc13406907fd8c1340690, - FFFBc4a7d6007fd8c4a7d600, + FFFB1266ac007fe81266ac00, + FFFB126754e07fe8126754e0, + FFFB126728307fe812672830, + FFFB12683c607fe812683c60, + FFFB12694cb07fe812694cb0, + FFFB126992107fe812699210, + FFFB134ec9b07fe8134ec9b0, + FFFB12128d507fe812128d50, + FFFB121657c07fe8121657c0, + FFFB12609f207fe812609f20, + FFFB125b5b707fe8125b5b70, + FFFB1261e8907fe81261e890, + FFFB125e9ce07fe8125e9ce0, + FFFB130090807fe813009080, + FFFB12708bc07fe812708bc0, + FFFB132a0da07fe8132a0da0, + FFFB1265b4d07fe81265b4d0, ); name = Source; sourceTree = "<group>"; }; - FFEEbfd0c8107fd8bfd0c810 /* Products */ = { + FFEE10f1e4907fe810f1e490 /* Products */ = { isa = PBXGroup; children = ( - FFFDc4a8bb607fd8c4a8bb60, - FFFDc49045107fd8c4904510, - FFFDc490d1007fd8c490d100, - FFFDc4912c607fd8c4912c60, - FFFDc491f0907fd8c491f090, - FFFDc49236207fd8c4923620, - FFFDc10c82107fd8c10c8210, - FFFDc1414ed07fd8c1414ed0, - FFFDc141af507fd8c141af50, - FFFDc173fd607fd8c173fd60, - FFFDc10c0f007fd8c10c0f00, - FFFDc17390207fd8c1739020, - FFFDc10c8d107fd8c10c8d10, - FFFDc172f9207fd8c172f920, - FFFDc133d4f07fd8c133d4f0, - FFFDc13406907fd8c1340690, - FFFDc4a7d6007fd8c4a7d600, + FFFD1266ac007fe81266ac00, + FFFD126754e07fe8126754e0, + FFFD126728307fe812672830, + FFFD12683c607fe812683c60, + FFFD12694cb07fe812694cb0, + FFFD126992107fe812699210, + FFFD134ec9b07fe8134ec9b0, + FFFD12128d507fe812128d50, + FFFD121657c07fe8121657c0, + FFFD12609f207fe812609f20, + FFFD125b5b707fe8125b5b70, + FFFD1261e8907fe81261e890, + FFFD125e9ce07fe8125e9ce0, + FFFD130090807fe813009080, + FFFD12708bc07fe812708bc0, + FFFD132a0da07fe8132a0da0, + FFFD1265b4d07fe81265b4d0, ); name = Products; sourceTree = "<group>"; }; - FFFBc4a8bb607fd8c4a8bb60 /* PhysX */ = { + FFFB1266ac007fe81266ac00 /* PhysX */ = { isa = PBXGroup; children = ( - FFFBc49044407fd8c4904440 /* src */, - FFFBc49044687fd8c4904468 /* include */, - FFFBc49044907fd8c4904490 /* metadata */, + FFFB126790a07fe8126790a0 /* src */, + FFFB126790c87fe8126790c8 /* include */, + FFFB126790f07fe8126790f0 /* metadata */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFFBc49044407fd8c4904440 /* src */ = { + FFFB126790a07fe8126790a0 /* src */ = { isa = PBXGroup; children = ( - FFFDc28512007fd8c2851200 /* NpActor.h */, - FFFDc28512687fd8c2851268 /* NpActorTemplate.h */, - FFFDc28512d07fd8c28512d0 /* NpAggregate.h */, - FFFDc28513387fd8c2851338 /* NpArticulation.h */, - FFFDc28513a07fd8c28513a0 /* NpArticulationJoint.h */, - FFFDc28514087fd8c2851408 /* NpArticulationLink.h */, - FFFDc28514707fd8c2851470 /* NpBatchQuery.h */, - FFFDc28514d87fd8c28514d8 /* NpCast.h */, - FFFDc28515407fd8c2851540 /* NpConnector.h */, - FFFDc28515a87fd8c28515a8 /* NpConstraint.h */, - FFFDc28516107fd8c2851610 /* NpFactory.h */, - FFFDc28516787fd8c2851678 /* NpMaterial.h */, - FFFDc28516e07fd8c28516e0 /* NpMaterialManager.h */, - FFFDc28517487fd8c2851748 /* NpPhysics.h */, - FFFDc28517b07fd8c28517b0 /* NpPhysicsInsertionCallback.h */, - FFFDc28518187fd8c2851818 /* NpPtrTableStorageManager.h */, - FFFDc28518807fd8c2851880 /* NpPvdSceneQueryCollector.h */, - FFFDc28518e87fd8c28518e8 /* NpQueryShared.h */, - FFFDc28519507fd8c2851950 /* NpReadCheck.h */, - FFFDc28519b87fd8c28519b8 /* NpRigidActorTemplate.h */, - FFFDc2851a207fd8c2851a20 /* NpRigidActorTemplateInternal.h */, - FFFDc2851a887fd8c2851a88 /* NpRigidBodyTemplate.h */, - FFFDc2851af07fd8c2851af0 /* NpRigidDynamic.h */, - FFFDc2851b587fd8c2851b58 /* NpRigidStatic.h */, - FFFDc2851bc07fd8c2851bc0 /* NpScene.h */, - FFFDc2851c287fd8c2851c28 /* NpSceneQueries.h */, - FFFDc2851c907fd8c2851c90 /* NpShape.h */, - FFFDc2851cf87fd8c2851cf8 /* NpShapeManager.h */, - FFFDc2851d607fd8c2851d60 /* NpSpatialIndex.h */, - FFFDc2851dc87fd8c2851dc8 /* NpVolumeCache.h */, - FFFDc2851e307fd8c2851e30 /* NpWriteCheck.h */, - FFFDc2851e987fd8c2851e98 /* PvdMetaDataBindingData.h */, - FFFDc2851f007fd8c2851f00 /* PvdMetaDataPvdBinding.h */, - FFFDc2851f687fd8c2851f68 /* PvdPhysicsClient.h */, - FFFDc2851fd07fd8c2851fd0 /* PvdTypeNames.h */, - FFFDc28520387fd8c2852038 /* NpActor.cpp */, - FFFDc28520a07fd8c28520a0 /* NpAggregate.cpp */, - FFFDc28521087fd8c2852108 /* NpArticulation.cpp */, - FFFDc28521707fd8c2852170 /* NpArticulationJoint.cpp */, - FFFDc28521d87fd8c28521d8 /* NpArticulationLink.cpp */, - FFFDc28522407fd8c2852240 /* NpBatchQuery.cpp */, - FFFDc28522a87fd8c28522a8 /* NpConstraint.cpp */, - FFFDc28523107fd8c2852310 /* NpFactory.cpp */, - FFFDc28523787fd8c2852378 /* NpMaterial.cpp */, - FFFDc28523e07fd8c28523e0 /* NpMetaData.cpp */, - FFFDc28524487fd8c2852448 /* NpPhysics.cpp */, - FFFDc28524b07fd8c28524b0 /* NpPvdSceneQueryCollector.cpp */, - FFFDc28525187fd8c2852518 /* NpReadCheck.cpp */, - FFFDc28525807fd8c2852580 /* NpRigidDynamic.cpp */, - FFFDc28525e87fd8c28525e8 /* NpRigidStatic.cpp */, - FFFDc28526507fd8c2852650 /* NpScene.cpp */, - FFFDc28526b87fd8c28526b8 /* NpSceneQueries.cpp */, - FFFDc28527207fd8c2852720 /* NpSerializerAdapter.cpp */, - FFFDc28527887fd8c2852788 /* NpShape.cpp */, - FFFDc28527f07fd8c28527f0 /* NpShapeManager.cpp */, - FFFDc28528587fd8c2852858 /* NpSpatialIndex.cpp */, - FFFDc28528c07fd8c28528c0 /* NpVolumeCache.cpp */, - FFFDc28529287fd8c2852928 /* NpWriteCheck.cpp */, - FFFDc28529907fd8c2852990 /* PvdMetaDataPvdBinding.cpp */, - FFFDc28529f87fd8c28529f8 /* PvdPhysicsClient.cpp */, - FFFDc2852a607fd8c2852a60 /* particles/NpParticleBaseTemplate.h */, - FFFDc2852ac87fd8c2852ac8 /* particles/NpParticleFluid.h */, - FFFDc2852b307fd8c2852b30 /* particles/NpParticleFluidReadData.h */, - FFFDc2852b987fd8c2852b98 /* particles/NpParticleSystem.h */, - FFFDc2852c007fd8c2852c00 /* particles/NpParticleFluid.cpp */, - FFFDc2852c687fd8c2852c68 /* particles/NpParticleSystem.cpp */, - FFFDc2852cd07fd8c2852cd0 /* buffering/ScbActor.h */, - FFFDc2852d387fd8c2852d38 /* buffering/ScbAggregate.h */, - FFFDc2852da07fd8c2852da0 /* buffering/ScbArticulation.h */, - FFFDc2852e087fd8c2852e08 /* buffering/ScbArticulationJoint.h */, - FFFDc2852e707fd8c2852e70 /* buffering/ScbBase.h */, - FFFDc2852ed87fd8c2852ed8 /* buffering/ScbBody.h */, - FFFDc2852f407fd8c2852f40 /* buffering/ScbCloth.h */, - FFFDc2852fa87fd8c2852fa8 /* buffering/ScbConstraint.h */, - FFFDc28530107fd8c2853010 /* buffering/ScbDefs.h */, - FFFDc28530787fd8c2853078 /* buffering/ScbNpDeps.h */, - FFFDc28530e07fd8c28530e0 /* buffering/ScbParticleSystem.h */, - FFFDc28531487fd8c2853148 /* buffering/ScbRigidObject.h */, - FFFDc28531b07fd8c28531b0 /* buffering/ScbRigidStatic.h */, - FFFDc28532187fd8c2853218 /* buffering/ScbScene.h */, - FFFDc28532807fd8c2853280 /* buffering/ScbSceneBuffer.h */, - FFFDc28532e87fd8c28532e8 /* buffering/ScbScenePvdClient.h */, - FFFDc28533507fd8c2853350 /* buffering/ScbShape.h */, - FFFDc28533b87fd8c28533b8 /* buffering/ScbType.h */, - FFFDc28534207fd8c2853420 /* buffering/ScbActor.cpp */, - FFFDc28534887fd8c2853488 /* buffering/ScbAggregate.cpp */, - FFFDc28534f07fd8c28534f0 /* buffering/ScbBase.cpp */, - FFFDc28535587fd8c2853558 /* buffering/ScbCloth.cpp */, - FFFDc28535c07fd8c28535c0 /* buffering/ScbMetaData.cpp */, - FFFDc28536287fd8c2853628 /* buffering/ScbParticleSystem.cpp */, - FFFDc28536907fd8c2853690 /* buffering/ScbScene.cpp */, - FFFDc28536f87fd8c28536f8 /* buffering/ScbScenePvdClient.cpp */, - FFFDc28537607fd8c2853760 /* buffering/ScbShape.cpp */, - FFFDc28537c87fd8c28537c8 /* cloth/NpCloth.h */, - FFFDc28538307fd8c2853830 /* cloth/NpClothFabric.h */, - FFFDc28538987fd8c2853898 /* cloth/NpClothParticleData.h */, - FFFDc28539007fd8c2853900 /* cloth/NpCloth.cpp */, - FFFDc28539687fd8c2853968 /* cloth/NpClothFabric.cpp */, - FFFDc28539d07fd8c28539d0 /* cloth/NpClothParticleData.cpp */, - FFFDc2853a387fd8c2853a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, + FFFD12827e007fe812827e00 /* NpActor.h */, + FFFD12827e687fe812827e68 /* NpActorTemplate.h */, + FFFD12827ed07fe812827ed0 /* NpAggregate.h */, + FFFD12827f387fe812827f38 /* NpArticulation.h */, + FFFD12827fa07fe812827fa0 /* NpArticulationJoint.h */, + FFFD128280087fe812828008 /* NpArticulationLink.h */, + FFFD128280707fe812828070 /* NpBatchQuery.h */, + FFFD128280d87fe8128280d8 /* NpCast.h */, + FFFD128281407fe812828140 /* NpConnector.h */, + FFFD128281a87fe8128281a8 /* NpConstraint.h */, + FFFD128282107fe812828210 /* NpFactory.h */, + FFFD128282787fe812828278 /* NpMaterial.h */, + FFFD128282e07fe8128282e0 /* NpMaterialManager.h */, + FFFD128283487fe812828348 /* NpPhysics.h */, + FFFD128283b07fe8128283b0 /* NpPhysicsInsertionCallback.h */, + FFFD128284187fe812828418 /* NpPtrTableStorageManager.h */, + FFFD128284807fe812828480 /* NpPvdSceneQueryCollector.h */, + FFFD128284e87fe8128284e8 /* NpQueryShared.h */, + FFFD128285507fe812828550 /* NpReadCheck.h */, + FFFD128285b87fe8128285b8 /* NpRigidActorTemplate.h */, + FFFD128286207fe812828620 /* NpRigidActorTemplateInternal.h */, + FFFD128286887fe812828688 /* NpRigidBodyTemplate.h */, + FFFD128286f07fe8128286f0 /* NpRigidDynamic.h */, + FFFD128287587fe812828758 /* NpRigidStatic.h */, + FFFD128287c07fe8128287c0 /* NpScene.h */, + FFFD128288287fe812828828 /* NpSceneQueries.h */, + FFFD128288907fe812828890 /* NpShape.h */, + FFFD128288f87fe8128288f8 /* NpShapeManager.h */, + FFFD128289607fe812828960 /* NpSpatialIndex.h */, + FFFD128289c87fe8128289c8 /* NpVolumeCache.h */, + FFFD12828a307fe812828a30 /* NpWriteCheck.h */, + FFFD12828a987fe812828a98 /* PvdMetaDataBindingData.h */, + FFFD12828b007fe812828b00 /* PvdMetaDataPvdBinding.h */, + FFFD12828b687fe812828b68 /* PvdPhysicsClient.h */, + FFFD12828bd07fe812828bd0 /* PvdTypeNames.h */, + FFFD12828c387fe812828c38 /* NpActor.cpp */, + FFFD12828ca07fe812828ca0 /* NpAggregate.cpp */, + FFFD12828d087fe812828d08 /* NpArticulation.cpp */, + FFFD12828d707fe812828d70 /* NpArticulationJoint.cpp */, + FFFD12828dd87fe812828dd8 /* NpArticulationLink.cpp */, + FFFD12828e407fe812828e40 /* NpBatchQuery.cpp */, + FFFD12828ea87fe812828ea8 /* NpConstraint.cpp */, + FFFD12828f107fe812828f10 /* NpFactory.cpp */, + FFFD12828f787fe812828f78 /* NpMaterial.cpp */, + FFFD12828fe07fe812828fe0 /* NpMetaData.cpp */, + FFFD128290487fe812829048 /* NpPhysics.cpp */, + FFFD128290b07fe8128290b0 /* NpPvdSceneQueryCollector.cpp */, + FFFD128291187fe812829118 /* NpReadCheck.cpp */, + FFFD128291807fe812829180 /* NpRigidDynamic.cpp */, + FFFD128291e87fe8128291e8 /* NpRigidStatic.cpp */, + FFFD128292507fe812829250 /* NpScene.cpp */, + FFFD128292b87fe8128292b8 /* NpSceneQueries.cpp */, + FFFD128293207fe812829320 /* NpSerializerAdapter.cpp */, + FFFD128293887fe812829388 /* NpShape.cpp */, + FFFD128293f07fe8128293f0 /* NpShapeManager.cpp */, + FFFD128294587fe812829458 /* NpSpatialIndex.cpp */, + FFFD128294c07fe8128294c0 /* NpVolumeCache.cpp */, + FFFD128295287fe812829528 /* NpWriteCheck.cpp */, + FFFD128295907fe812829590 /* PvdMetaDataPvdBinding.cpp */, + FFFD128295f87fe8128295f8 /* PvdPhysicsClient.cpp */, + FFFD128296607fe812829660 /* particles/NpParticleBaseTemplate.h */, + FFFD128296c87fe8128296c8 /* particles/NpParticleFluid.h */, + FFFD128297307fe812829730 /* particles/NpParticleFluidReadData.h */, + FFFD128297987fe812829798 /* particles/NpParticleSystem.h */, + FFFD128298007fe812829800 /* particles/NpParticleFluid.cpp */, + FFFD128298687fe812829868 /* particles/NpParticleSystem.cpp */, + FFFD128298d07fe8128298d0 /* buffering/ScbActor.h */, + FFFD128299387fe812829938 /* buffering/ScbAggregate.h */, + FFFD128299a07fe8128299a0 /* buffering/ScbArticulation.h */, + FFFD12829a087fe812829a08 /* buffering/ScbArticulationJoint.h */, + FFFD12829a707fe812829a70 /* buffering/ScbBase.h */, + FFFD12829ad87fe812829ad8 /* buffering/ScbBody.h */, + FFFD12829b407fe812829b40 /* buffering/ScbCloth.h */, + FFFD12829ba87fe812829ba8 /* buffering/ScbConstraint.h */, + FFFD12829c107fe812829c10 /* buffering/ScbDefs.h */, + FFFD12829c787fe812829c78 /* buffering/ScbNpDeps.h */, + FFFD12829ce07fe812829ce0 /* buffering/ScbParticleSystem.h */, + FFFD12829d487fe812829d48 /* buffering/ScbRigidObject.h */, + FFFD12829db07fe812829db0 /* buffering/ScbRigidStatic.h */, + FFFD12829e187fe812829e18 /* buffering/ScbScene.h */, + FFFD12829e807fe812829e80 /* buffering/ScbSceneBuffer.h */, + FFFD12829ee87fe812829ee8 /* buffering/ScbScenePvdClient.h */, + FFFD12829f507fe812829f50 /* buffering/ScbShape.h */, + FFFD12829fb87fe812829fb8 /* buffering/ScbType.h */, + FFFD1282a0207fe81282a020 /* buffering/ScbActor.cpp */, + FFFD1282a0887fe81282a088 /* buffering/ScbAggregate.cpp */, + FFFD1282a0f07fe81282a0f0 /* buffering/ScbBase.cpp */, + FFFD1282a1587fe81282a158 /* buffering/ScbCloth.cpp */, + FFFD1282a1c07fe81282a1c0 /* buffering/ScbMetaData.cpp */, + FFFD1282a2287fe81282a228 /* buffering/ScbParticleSystem.cpp */, + FFFD1282a2907fe81282a290 /* buffering/ScbScene.cpp */, + FFFD1282a2f87fe81282a2f8 /* buffering/ScbScenePvdClient.cpp */, + FFFD1282a3607fe81282a360 /* buffering/ScbShape.cpp */, + FFFD1282a3c87fe81282a3c8 /* cloth/NpCloth.h */, + FFFD1282a4307fe81282a430 /* cloth/NpClothFabric.h */, + FFFD1282a4987fe81282a498 /* cloth/NpClothParticleData.h */, + FFFD1282a5007fe81282a500 /* cloth/NpCloth.cpp */, + FFFD1282a5687fe81282a568 /* cloth/NpClothFabric.cpp */, + FFFD1282a5d07fe81282a5d0 /* cloth/NpClothParticleData.cpp */, + FFFD1282a6387fe81282a638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc49044687fd8c4904468 /* include */ = { + FFFB126790c87fe8126790c8 /* include */ = { isa = PBXGroup; children = ( - FFFDc2853c007fd8c2853c00 /* PxActor.h */, - FFFDc2853c687fd8c2853c68 /* PxAggregate.h */, - FFFDc2853cd07fd8c2853cd0 /* PxArticulation.h */, - FFFDc2853d387fd8c2853d38 /* PxArticulationJoint.h */, - FFFDc2853da07fd8c2853da0 /* PxArticulationLink.h */, - FFFDc2853e087fd8c2853e08 /* PxBatchQuery.h */, - FFFDc2853e707fd8c2853e70 /* PxBatchQueryDesc.h */, - FFFDc2853ed87fd8c2853ed8 /* PxBroadPhase.h */, - FFFDc2853f407fd8c2853f40 /* PxClient.h */, - FFFDc2853fa87fd8c2853fa8 /* PxConstraint.h */, - FFFDc28540107fd8c2854010 /* PxConstraintDesc.h */, - FFFDc28540787fd8c2854078 /* PxContact.h */, - FFFDc28540e07fd8c28540e0 /* PxContactModifyCallback.h */, - FFFDc28541487fd8c2854148 /* PxDeletionListener.h */, - FFFDc28541b07fd8c28541b0 /* PxFiltering.h */, - FFFDc28542187fd8c2854218 /* PxForceMode.h */, - FFFDc28542807fd8c2854280 /* PxImmediateMode.h */, - FFFDc28542e87fd8c28542e8 /* PxLockedData.h */, - FFFDc28543507fd8c2854350 /* PxMaterial.h */, - FFFDc28543b87fd8c28543b8 /* PxPhysXConfig.h */, - FFFDc28544207fd8c2854420 /* PxPhysics.h */, - FFFDc28544887fd8c2854488 /* PxPhysicsAPI.h */, - FFFDc28544f07fd8c28544f0 /* PxPhysicsSerialization.h */, - FFFDc28545587fd8c2854558 /* PxPhysicsVersion.h */, - FFFDc28545c07fd8c28545c0 /* PxPruningStructure.h */, - FFFDc28546287fd8c2854628 /* PxQueryFiltering.h */, - FFFDc28546907fd8c2854690 /* PxQueryReport.h */, - FFFDc28546f87fd8c28546f8 /* PxRigidActor.h */, - FFFDc28547607fd8c2854760 /* PxRigidBody.h */, - FFFDc28547c87fd8c28547c8 /* PxRigidDynamic.h */, - FFFDc28548307fd8c2854830 /* PxRigidStatic.h */, - FFFDc28548987fd8c2854898 /* PxScene.h */, - FFFDc28549007fd8c2854900 /* PxSceneDesc.h */, - FFFDc28549687fd8c2854968 /* PxSceneLock.h */, - FFFDc28549d07fd8c28549d0 /* PxShape.h */, - FFFDc2854a387fd8c2854a38 /* PxSimulationEventCallback.h */, - FFFDc2854aa07fd8c2854aa0 /* PxSimulationStatistics.h */, - FFFDc2854b087fd8c2854b08 /* PxSpatialIndex.h */, - FFFDc2854b707fd8c2854b70 /* PxVisualizationParameter.h */, - FFFDc2854bd87fd8c2854bd8 /* PxVolumeCache.h */, - FFFDc2854c407fd8c2854c40 /* particles/PxParticleBase.h */, - FFFDc2854ca87fd8c2854ca8 /* particles/PxParticleBaseFlag.h */, - FFFDc2854d107fd8c2854d10 /* particles/PxParticleCreationData.h */, - FFFDc2854d787fd8c2854d78 /* particles/PxParticleFlag.h */, - FFFDc2854de07fd8c2854de0 /* particles/PxParticleFluid.h */, - FFFDc2854e487fd8c2854e48 /* particles/PxParticleFluidReadData.h */, - FFFDc2854eb07fd8c2854eb0 /* particles/PxParticleReadData.h */, - FFFDc2854f187fd8c2854f18 /* particles/PxParticleSystem.h */, - FFFDc2854f807fd8c2854f80 /* pvd/PxPvdSceneClient.h */, - FFFDc2854fe87fd8c2854fe8 /* cloth/PxCloth.h */, - FFFDc28550507fd8c2855050 /* cloth/PxClothCollisionData.h */, - FFFDc28550b87fd8c28550b8 /* cloth/PxClothFabric.h */, - FFFDc28551207fd8c2855120 /* cloth/PxClothParticleData.h */, - FFFDc28551887fd8c2855188 /* cloth/PxClothTypes.h */, + FFFD1282a8007fe81282a800 /* PxActor.h */, + FFFD1282a8687fe81282a868 /* PxAggregate.h */, + FFFD1282a8d07fe81282a8d0 /* PxArticulation.h */, + FFFD1282a9387fe81282a938 /* PxArticulationJoint.h */, + FFFD1282a9a07fe81282a9a0 /* PxArticulationLink.h */, + FFFD1282aa087fe81282aa08 /* PxBatchQuery.h */, + FFFD1282aa707fe81282aa70 /* PxBatchQueryDesc.h */, + FFFD1282aad87fe81282aad8 /* PxBroadPhase.h */, + FFFD1282ab407fe81282ab40 /* PxClient.h */, + FFFD1282aba87fe81282aba8 /* PxConstraint.h */, + FFFD1282ac107fe81282ac10 /* PxConstraintDesc.h */, + FFFD1282ac787fe81282ac78 /* PxContact.h */, + FFFD1282ace07fe81282ace0 /* PxContactModifyCallback.h */, + FFFD1282ad487fe81282ad48 /* PxDeletionListener.h */, + FFFD1282adb07fe81282adb0 /* PxFiltering.h */, + FFFD1282ae187fe81282ae18 /* PxForceMode.h */, + FFFD1282ae807fe81282ae80 /* PxImmediateMode.h */, + FFFD1282aee87fe81282aee8 /* PxLockedData.h */, + FFFD1282af507fe81282af50 /* PxMaterial.h */, + FFFD1282afb87fe81282afb8 /* PxPhysXConfig.h */, + FFFD1282b0207fe81282b020 /* PxPhysics.h */, + FFFD1282b0887fe81282b088 /* PxPhysicsAPI.h */, + FFFD1282b0f07fe81282b0f0 /* PxPhysicsSerialization.h */, + FFFD1282b1587fe81282b158 /* PxPhysicsVersion.h */, + FFFD1282b1c07fe81282b1c0 /* PxPruningStructure.h */, + FFFD1282b2287fe81282b228 /* PxQueryFiltering.h */, + FFFD1282b2907fe81282b290 /* PxQueryReport.h */, + FFFD1282b2f87fe81282b2f8 /* PxRigidActor.h */, + FFFD1282b3607fe81282b360 /* PxRigidBody.h */, + FFFD1282b3c87fe81282b3c8 /* PxRigidDynamic.h */, + FFFD1282b4307fe81282b430 /* PxRigidStatic.h */, + FFFD1282b4987fe81282b498 /* PxScene.h */, + FFFD1282b5007fe81282b500 /* PxSceneDesc.h */, + FFFD1282b5687fe81282b568 /* PxSceneLock.h */, + FFFD1282b5d07fe81282b5d0 /* PxShape.h */, + FFFD1282b6387fe81282b638 /* PxSimulationEventCallback.h */, + FFFD1282b6a07fe81282b6a0 /* PxSimulationStatistics.h */, + FFFD1282b7087fe81282b708 /* PxSpatialIndex.h */, + FFFD1282b7707fe81282b770 /* PxVisualizationParameter.h */, + FFFD1282b7d87fe81282b7d8 /* PxVolumeCache.h */, + FFFD1282b8407fe81282b840 /* particles/PxParticleBase.h */, + FFFD1282b8a87fe81282b8a8 /* particles/PxParticleBaseFlag.h */, + FFFD1282b9107fe81282b910 /* particles/PxParticleCreationData.h */, + FFFD1282b9787fe81282b978 /* particles/PxParticleFlag.h */, + FFFD1282b9e07fe81282b9e0 /* particles/PxParticleFluid.h */, + FFFD1282ba487fe81282ba48 /* particles/PxParticleFluidReadData.h */, + FFFD1282bab07fe81282bab0 /* particles/PxParticleReadData.h */, + FFFD1282bb187fe81282bb18 /* particles/PxParticleSystem.h */, + FFFD1282bb807fe81282bb80 /* pvd/PxPvdSceneClient.h */, + FFFD1282bbe87fe81282bbe8 /* cloth/PxCloth.h */, + FFFD1282bc507fe81282bc50 /* cloth/PxClothCollisionData.h */, + FFFD1282bcb87fe81282bcb8 /* cloth/PxClothFabric.h */, + FFFD1282bd207fe81282bd20 /* cloth/PxClothParticleData.h */, + FFFD1282bd887fe81282bd88 /* cloth/PxClothTypes.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc49044907fd8c4904490 /* metadata */ = { + FFFB126790f07fe8126790f0 /* metadata */ = { isa = PBXGroup; children = ( - FFFDc284da007fd8c284da00 /* core/include/PvdMetaDataDefineProperties.h */, - FFFDc284da687fd8c284da68 /* core/include/PvdMetaDataExtensions.h */, - FFFDc284dad07fd8c284dad0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFDc284db387fd8c284db38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFDc284dba07fd8c284dba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFDc284dc087fd8c284dc08 /* core/include/PxMetaDataCompare.h */, - FFFDc284dc707fd8c284dc70 /* core/include/PxMetaDataCppPrefix.h */, - FFFDc284dcd87fd8c284dcd8 /* core/include/PxMetaDataObjects.h */, - FFFDc284dd407fd8c284dd40 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFDc284dda87fd8c284dda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, - FFFDc284de107fd8c284de10 /* core/src/PxMetaDataObjects.cpp */, + FFFD12822a007fe812822a00 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD12822a687fe812822a68 /* core/include/PvdMetaDataExtensions.h */, + FFFD12822ad07fe812822ad0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD12822b387fe812822b38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD12822ba07fe812822ba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD12822c087fe812822c08 /* core/include/PxMetaDataCompare.h */, + FFFD12822c707fe812822c70 /* core/include/PxMetaDataCppPrefix.h */, + FFFD12822cd87fe812822cd8 /* core/include/PxMetaDataObjects.h */, + FFFD12822d407fe812822d40 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD12822da87fe812822da8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, + FFFD12822e107fe812822e10 /* core/src/PxMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBc49045107fd8c4904510 /* PhysXCharacterKinematic */ = { + FFFB126754e07fe8126754e0 /* PhysXCharacterKinematic */ = { isa = PBXGroup; children = ( - FFFBc490bdc07fd8c490bdc0 /* include */, - FFFBc490bde87fd8c490bde8 /* src */, + FFFB126779707fe812677970 /* include */, + FFFB126779987fe812677998 /* src */, ); name = "PhysXCharacterKinematic"; sourceTree = "<group>"; }; - FFFBc490bdc07fd8c490bdc0 /* include */ = { + FFFB126779707fe812677970 /* include */ = { isa = PBXGroup; children = ( - FFFDc490bfb07fd8c490bfb0 /* PxBoxController.h */, - FFFDc490c0187fd8c490c018 /* PxCapsuleController.h */, - FFFDc490c0807fd8c490c080 /* PxCharacter.h */, - FFFDc490c0e87fd8c490c0e8 /* PxController.h */, - FFFDc490c1507fd8c490c150 /* PxControllerBehavior.h */, - FFFDc490c1b87fd8c490c1b8 /* PxControllerManager.h */, - FFFDc490c2207fd8c490c220 /* PxControllerObstacles.h */, - FFFDc490c2887fd8c490c288 /* PxExtended.h */, + FFFD126783e07fe8126783e0 /* PxBoxController.h */, + FFFD126784487fe812678448 /* PxCapsuleController.h */, + FFFD126784b07fe8126784b0 /* PxCharacter.h */, + FFFD126785187fe812678518 /* PxController.h */, + FFFD126785807fe812678580 /* PxControllerBehavior.h */, + FFFD126785e87fe8126785e8 /* PxControllerManager.h */, + FFFD126786507fe812678650 /* PxControllerObstacles.h */, + FFFD126786b87fe8126786b8 /* PxExtended.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc490bde87fd8c490bde8 /* src */ = { + FFFB126779987fe812677998 /* src */ = { isa = PBXGroup; children = ( - FFFDc28562007fd8c2856200 /* CctBoxController.h */, - FFFDc28562687fd8c2856268 /* CctCapsuleController.h */, - FFFDc28562d07fd8c28562d0 /* CctCharacterController.h */, - FFFDc28563387fd8c2856338 /* CctCharacterControllerManager.h */, - FFFDc28563a07fd8c28563a0 /* CctController.h */, - FFFDc28564087fd8c2856408 /* CctInternalStructs.h */, - FFFDc28564707fd8c2856470 /* CctObstacleContext.h */, - FFFDc28564d87fd8c28564d8 /* CctSweptBox.h */, - FFFDc28565407fd8c2856540 /* CctSweptCapsule.h */, - FFFDc28565a87fd8c28565a8 /* CctSweptVolume.h */, - FFFDc28566107fd8c2856610 /* CctUtils.h */, - FFFDc28566787fd8c2856678 /* CctBoxController.cpp */, - FFFDc28566e07fd8c28566e0 /* CctCapsuleController.cpp */, - FFFDc28567487fd8c2856748 /* CctCharacterController.cpp */, - FFFDc28567b07fd8c28567b0 /* CctCharacterControllerCallbacks.cpp */, - FFFDc28568187fd8c2856818 /* CctCharacterControllerManager.cpp */, - FFFDc28568807fd8c2856880 /* CctController.cpp */, - FFFDc28568e87fd8c28568e8 /* CctObstacleContext.cpp */, - FFFDc28569507fd8c2856950 /* CctSweptBox.cpp */, - FFFDc28569b87fd8c28569b8 /* CctSweptCapsule.cpp */, - FFFDc2856a207fd8c2856a20 /* CctSweptVolume.cpp */, + FFFD128242007fe812824200 /* CctBoxController.h */, + FFFD128242687fe812824268 /* CctCapsuleController.h */, + FFFD128242d07fe8128242d0 /* CctCharacterController.h */, + FFFD128243387fe812824338 /* CctCharacterControllerManager.h */, + FFFD128243a07fe8128243a0 /* CctController.h */, + FFFD128244087fe812824408 /* CctInternalStructs.h */, + FFFD128244707fe812824470 /* CctObstacleContext.h */, + FFFD128244d87fe8128244d8 /* CctSweptBox.h */, + FFFD128245407fe812824540 /* CctSweptCapsule.h */, + FFFD128245a87fe8128245a8 /* CctSweptVolume.h */, + FFFD128246107fe812824610 /* CctUtils.h */, + FFFD128246787fe812824678 /* CctBoxController.cpp */, + FFFD128246e07fe8128246e0 /* CctCapsuleController.cpp */, + FFFD128247487fe812824748 /* CctCharacterController.cpp */, + FFFD128247b07fe8128247b0 /* CctCharacterControllerCallbacks.cpp */, + FFFD128248187fe812824818 /* CctCharacterControllerManager.cpp */, + FFFD128248807fe812824880 /* CctController.cpp */, + FFFD128248e87fe8128248e8 /* CctObstacleContext.cpp */, + FFFD128249507fe812824950 /* CctSweptBox.cpp */, + FFFD128249b87fe8128249b8 /* CctSweptCapsule.cpp */, + FFFD12824a207fe812824a20 /* CctSweptVolume.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc490d1007fd8c490d100 /* PhysXVehicle */ = { + FFFB126728307fe812672830 /* PhysXVehicle */ = { isa = PBXGroup; children = ( - FFFBc4911e207fd8c4911e20 /* include */, - FFFBc4911e487fd8c4911e48 /* src */, - FFFBc4911e707fd8c4911e70 /* metadata */, + FFFB126833b07fe8126833b0 /* include */, + FFFB126833d87fe8126833d8 /* src */, + FFFB126834007fe812683400 /* metadata */, ); name = "PhysXVehicle"; sourceTree = "<group>"; }; - FFFBc4911e207fd8c4911e20 /* include */ = { + FFFB126833b07fe8126833b0 /* include */ = { isa = PBXGroup; children = ( - FFFDc28590007fd8c2859000 /* PxVehicleComponents.h */, - FFFDc28590687fd8c2859068 /* PxVehicleDrive.h */, - FFFDc28590d07fd8c28590d0 /* PxVehicleDrive4W.h */, - FFFDc28591387fd8c2859138 /* PxVehicleDriveNW.h */, - FFFDc28591a07fd8c28591a0 /* PxVehicleDriveTank.h */, - FFFDc28592087fd8c2859208 /* PxVehicleNoDrive.h */, - FFFDc28592707fd8c2859270 /* PxVehicleSDK.h */, - FFFDc28592d87fd8c28592d8 /* PxVehicleShaders.h */, - FFFDc28593407fd8c2859340 /* PxVehicleTireFriction.h */, - FFFDc28593a87fd8c28593a8 /* PxVehicleUpdate.h */, - FFFDc28594107fd8c2859410 /* PxVehicleUtil.h */, - FFFDc28594787fd8c2859478 /* PxVehicleUtilControl.h */, - FFFDc28594e07fd8c28594e0 /* PxVehicleUtilSetup.h */, - FFFDc28595487fd8c2859548 /* PxVehicleUtilTelemetry.h */, - FFFDc28595b07fd8c28595b0 /* PxVehicleWheels.h */, + FFFD128268007fe812826800 /* PxVehicleComponents.h */, + FFFD128268687fe812826868 /* PxVehicleDrive.h */, + FFFD128268d07fe8128268d0 /* PxVehicleDrive4W.h */, + FFFD128269387fe812826938 /* PxVehicleDriveNW.h */, + FFFD128269a07fe8128269a0 /* PxVehicleDriveTank.h */, + FFFD12826a087fe812826a08 /* PxVehicleNoDrive.h */, + FFFD12826a707fe812826a70 /* PxVehicleSDK.h */, + FFFD12826ad87fe812826ad8 /* PxVehicleShaders.h */, + FFFD12826b407fe812826b40 /* PxVehicleTireFriction.h */, + FFFD12826ba87fe812826ba8 /* PxVehicleUpdate.h */, + FFFD12826c107fe812826c10 /* PxVehicleUtil.h */, + FFFD12826c787fe812826c78 /* PxVehicleUtilControl.h */, + FFFD12826ce07fe812826ce0 /* PxVehicleUtilSetup.h */, + FFFD12826d487fe812826d48 /* PxVehicleUtilTelemetry.h */, + FFFD12826db07fe812826db0 /* PxVehicleWheels.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc4911e487fd8c4911e48 /* src */ = { + FFFB126833d87fe8126833d8 /* src */ = { isa = PBXGroup; children = ( - FFFDc285ae007fd8c285ae00 /* PxVehicleDefaults.h */, - FFFDc285ae687fd8c285ae68 /* PxVehicleLinearMath.h */, - FFFDc285aed07fd8c285aed0 /* PxVehicleSerialization.h */, - FFFDc285af387fd8c285af38 /* PxVehicleSuspLimitConstraintShader.h */, - FFFDc285afa07fd8c285afa0 /* PxVehicleSuspWheelTire4.h */, - FFFDc285b0087fd8c285b008 /* PxVehicleComponents.cpp */, - FFFDc285b0707fd8c285b070 /* PxVehicleDrive.cpp */, - FFFDc285b0d87fd8c285b0d8 /* PxVehicleDrive4W.cpp */, - FFFDc285b1407fd8c285b140 /* PxVehicleDriveNW.cpp */, - FFFDc285b1a87fd8c285b1a8 /* PxVehicleDriveTank.cpp */, - FFFDc285b2107fd8c285b210 /* PxVehicleMetaData.cpp */, - FFFDc285b2787fd8c285b278 /* PxVehicleNoDrive.cpp */, - FFFDc285b2e07fd8c285b2e0 /* PxVehicleSDK.cpp */, - FFFDc285b3487fd8c285b348 /* PxVehicleSerialization.cpp */, - FFFDc285b3b07fd8c285b3b0 /* PxVehicleSuspWheelTire4.cpp */, - FFFDc285b4187fd8c285b418 /* PxVehicleTireFriction.cpp */, - FFFDc285b4807fd8c285b480 /* PxVehicleUpdate.cpp */, - FFFDc285b4e87fd8c285b4e8 /* PxVehicleWheels.cpp */, - FFFDc285b5507fd8c285b550 /* VehicleUtilControl.cpp */, - FFFDc285b5b87fd8c285b5b8 /* VehicleUtilSetup.cpp */, - FFFDc285b6207fd8c285b620 /* VehicleUtilTelemetry.cpp */, + FFFD128306007fe812830600 /* PxVehicleDefaults.h */, + FFFD128306687fe812830668 /* PxVehicleLinearMath.h */, + FFFD128306d07fe8128306d0 /* PxVehicleSerialization.h */, + FFFD128307387fe812830738 /* PxVehicleSuspLimitConstraintShader.h */, + FFFD128307a07fe8128307a0 /* PxVehicleSuspWheelTire4.h */, + FFFD128308087fe812830808 /* PxVehicleComponents.cpp */, + FFFD128308707fe812830870 /* PxVehicleDrive.cpp */, + FFFD128308d87fe8128308d8 /* PxVehicleDrive4W.cpp */, + FFFD128309407fe812830940 /* PxVehicleDriveNW.cpp */, + FFFD128309a87fe8128309a8 /* PxVehicleDriveTank.cpp */, + FFFD12830a107fe812830a10 /* PxVehicleMetaData.cpp */, + FFFD12830a787fe812830a78 /* PxVehicleNoDrive.cpp */, + FFFD12830ae07fe812830ae0 /* PxVehicleSDK.cpp */, + FFFD12830b487fe812830b48 /* PxVehicleSerialization.cpp */, + FFFD12830bb07fe812830bb0 /* PxVehicleSuspWheelTire4.cpp */, + FFFD12830c187fe812830c18 /* PxVehicleTireFriction.cpp */, + FFFD12830c807fe812830c80 /* PxVehicleUpdate.cpp */, + FFFD12830ce87fe812830ce8 /* PxVehicleWheels.cpp */, + FFFD12830d507fe812830d50 /* VehicleUtilControl.cpp */, + FFFD12830db87fe812830db8 /* VehicleUtilSetup.cpp */, + FFFD12830e207fe812830e20 /* VehicleUtilTelemetry.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc4911e707fd8c4911e70 /* metadata */ = { + FFFB126834007fe812683400 /* metadata */ = { isa = PBXGroup; children = ( - FFFDc4912fb07fd8c4912fb0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, - FFFDc49130187fd8c4913018 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, - FFFDc49130807fd8c4913080 /* include/PxVehicleMetaDataObjects.h */, - FFFDc49130e87fd8c49130e8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, - FFFDc49131507fd8c4913150 /* src/PxVehicleMetaDataObjects.cpp */, + FFFD126822007fe812682200 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, + FFFD126822687fe812682268 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, + FFFD126822d07fe8126822d0 /* include/PxVehicleMetaDataObjects.h */, + FFFD126823387fe812682338 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, + FFFD126823a07fe8126823a0 /* src/PxVehicleMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBc4912c607fd8c4912c60 /* PhysXExtensions */ = { + FFFB12683c607fe812683c60 /* PhysXExtensions */ = { isa = PBXGroup; children = ( - FFFBc49152d07fd8c49152d0 /* include */, - FFFBc49152f87fd8c49152f8 /* src */, - FFFBc49153207fd8c4915320 /* serialization */, - FFFBc49153487fd8c4915348 /* metadata */, + FFFB126872307fe812687230 /* include */, + FFFB126872587fe812687258 /* src */, + FFFB126872807fe812687280 /* serialization */, + FFFB126872a87fe8126872a8 /* metadata */, ); name = "PhysXExtensions"; sourceTree = "<group>"; }; - FFFBc49152d07fd8c49152d0 /* include */ = { + FFFB126872307fe812687230 /* include */ = { isa = PBXGroup; children = ( - FFFDc28580007fd8c2858000 /* PxBinaryConverter.h */, - FFFDc28580687fd8c2858068 /* PxBroadPhaseExt.h */, - FFFDc28580d07fd8c28580d0 /* PxClothFabricCooker.h */, - FFFDc28581387fd8c2858138 /* PxClothMeshDesc.h */, - FFFDc28581a07fd8c28581a0 /* PxClothMeshQuadifier.h */, - FFFDc28582087fd8c2858208 /* PxClothTetherCooker.h */, - FFFDc28582707fd8c2858270 /* PxCollectionExt.h */, - FFFDc28582d87fd8c28582d8 /* PxConstraintExt.h */, - FFFDc28583407fd8c2858340 /* PxConvexMeshExt.h */, - FFFDc28583a87fd8c28583a8 /* PxD6Joint.h */, - FFFDc28584107fd8c2858410 /* PxDefaultAllocator.h */, - FFFDc28584787fd8c2858478 /* PxDefaultCpuDispatcher.h */, - FFFDc28584e07fd8c28584e0 /* PxDefaultErrorCallback.h */, - FFFDc28585487fd8c2858548 /* PxDefaultSimulationFilterShader.h */, - FFFDc28585b07fd8c28585b0 /* PxDefaultStreams.h */, - FFFDc28586187fd8c2858618 /* PxDistanceJoint.h */, - FFFDc28586807fd8c2858680 /* PxExtensionsAPI.h */, - FFFDc28586e87fd8c28586e8 /* PxFixedJoint.h */, - FFFDc28587507fd8c2858750 /* PxJoint.h */, - FFFDc28587b87fd8c28587b8 /* PxJointLimit.h */, - FFFDc28588207fd8c2858820 /* PxJointRepXSerializer.h */, - FFFDc28588887fd8c2858888 /* PxMassProperties.h */, - FFFDc28588f07fd8c28588f0 /* PxParticleExt.h */, - FFFDc28589587fd8c2858958 /* PxPrismaticJoint.h */, - FFFDc28589c07fd8c28589c0 /* PxRaycastCCD.h */, - FFFDc2858a287fd8c2858a28 /* PxRepXSerializer.h */, - FFFDc2858a907fd8c2858a90 /* PxRepXSimpleType.h */, - FFFDc2858af87fd8c2858af8 /* PxRevoluteJoint.h */, - FFFDc2858b607fd8c2858b60 /* PxRigidActorExt.h */, - FFFDc2858bc87fd8c2858bc8 /* PxRigidBodyExt.h */, - FFFDc2858c307fd8c2858c30 /* PxSceneQueryExt.h */, - FFFDc2858c987fd8c2858c98 /* PxSerialization.h */, - FFFDc2858d007fd8c2858d00 /* PxShapeExt.h */, - FFFDc2858d687fd8c2858d68 /* PxSimpleFactory.h */, - FFFDc2858dd07fd8c2858dd0 /* PxSmoothNormals.h */, - FFFDc2858e387fd8c2858e38 /* PxSphericalJoint.h */, - FFFDc2858ea07fd8c2858ea0 /* PxStringTableExt.h */, - FFFDc2858f087fd8c2858f08 /* PxTriangleMeshExt.h */, + FFFD128336007fe812833600 /* PxBinaryConverter.h */, + FFFD128336687fe812833668 /* PxBroadPhaseExt.h */, + FFFD128336d07fe8128336d0 /* PxClothFabricCooker.h */, + FFFD128337387fe812833738 /* PxClothMeshDesc.h */, + FFFD128337a07fe8128337a0 /* PxClothMeshQuadifier.h */, + FFFD128338087fe812833808 /* PxClothTetherCooker.h */, + FFFD128338707fe812833870 /* PxCollectionExt.h */, + FFFD128338d87fe8128338d8 /* PxConstraintExt.h */, + FFFD128339407fe812833940 /* PxConvexMeshExt.h */, + FFFD128339a87fe8128339a8 /* PxD6Joint.h */, + FFFD12833a107fe812833a10 /* PxDefaultAllocator.h */, + FFFD12833a787fe812833a78 /* PxDefaultCpuDispatcher.h */, + FFFD12833ae07fe812833ae0 /* PxDefaultErrorCallback.h */, + FFFD12833b487fe812833b48 /* PxDefaultSimulationFilterShader.h */, + FFFD12833bb07fe812833bb0 /* PxDefaultStreams.h */, + FFFD12833c187fe812833c18 /* PxDistanceJoint.h */, + FFFD12833c807fe812833c80 /* PxExtensionsAPI.h */, + FFFD12833ce87fe812833ce8 /* PxFixedJoint.h */, + FFFD12833d507fe812833d50 /* PxJoint.h */, + FFFD12833db87fe812833db8 /* PxJointLimit.h */, + FFFD12833e207fe812833e20 /* PxJointRepXSerializer.h */, + FFFD12833e887fe812833e88 /* PxMassProperties.h */, + FFFD12833ef07fe812833ef0 /* PxParticleExt.h */, + FFFD12833f587fe812833f58 /* PxPrismaticJoint.h */, + FFFD12833fc07fe812833fc0 /* PxRaycastCCD.h */, + FFFD128340287fe812834028 /* PxRepXSerializer.h */, + FFFD128340907fe812834090 /* PxRepXSimpleType.h */, + FFFD128340f87fe8128340f8 /* PxRevoluteJoint.h */, + FFFD128341607fe812834160 /* PxRigidActorExt.h */, + FFFD128341c87fe8128341c8 /* PxRigidBodyExt.h */, + FFFD128342307fe812834230 /* PxSceneQueryExt.h */, + FFFD128342987fe812834298 /* PxSerialization.h */, + FFFD128343007fe812834300 /* PxShapeExt.h */, + FFFD128343687fe812834368 /* PxSimpleFactory.h */, + FFFD128343d07fe8128343d0 /* PxSmoothNormals.h */, + FFFD128344387fe812834438 /* PxSphericalJoint.h */, + FFFD128344a07fe8128344a0 /* PxStringTableExt.h */, + FFFD128345087fe812834508 /* PxTriangleMeshExt.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc49152f87fd8c49152f8 /* src */ = { + FFFB126872587fe812687258 /* src */ = { isa = PBXGroup; children = ( - FFFDc285d0007fd8c285d000 /* ExtConstraintHelper.h */, - FFFDc285d0687fd8c285d068 /* ExtCpuWorkerThread.h */, - FFFDc285d0d07fd8c285d0d0 /* ExtD6Joint.h */, - FFFDc285d1387fd8c285d138 /* ExtDefaultCpuDispatcher.h */, - FFFDc285d1a07fd8c285d1a0 /* ExtDistanceJoint.h */, - FFFDc285d2087fd8c285d208 /* ExtFixedJoint.h */, - FFFDc285d2707fd8c285d270 /* ExtInertiaTensor.h */, - FFFDc285d2d87fd8c285d2d8 /* ExtJoint.h */, - FFFDc285d3407fd8c285d340 /* ExtJointMetaDataExtensions.h */, - FFFDc285d3a87fd8c285d3a8 /* ExtPlatform.h */, - FFFDc285d4107fd8c285d410 /* ExtPrismaticJoint.h */, - FFFDc285d4787fd8c285d478 /* ExtPvd.h */, - FFFDc285d4e07fd8c285d4e0 /* ExtRevoluteJoint.h */, - FFFDc285d5487fd8c285d548 /* ExtSerialization.h */, - FFFDc285d5b07fd8c285d5b0 /* ExtSharedQueueEntryPool.h */, - FFFDc285d6187fd8c285d618 /* ExtSphericalJoint.h */, - FFFDc285d6807fd8c285d680 /* ExtTaskQueueHelper.h */, - FFFDc285d6e87fd8c285d6e8 /* ExtBroadPhase.cpp */, - FFFDc285d7507fd8c285d750 /* ExtClothFabricCooker.cpp */, - FFFDc285d7b87fd8c285d7b8 /* ExtClothGeodesicTetherCooker.cpp */, - FFFDc285d8207fd8c285d820 /* ExtClothMeshQuadifier.cpp */, - FFFDc285d8887fd8c285d888 /* ExtClothSimpleTetherCooker.cpp */, - FFFDc285d8f07fd8c285d8f0 /* ExtCollection.cpp */, - FFFDc285d9587fd8c285d958 /* ExtConvexMeshExt.cpp */, - FFFDc285d9c07fd8c285d9c0 /* ExtCpuWorkerThread.cpp */, - FFFDc285da287fd8c285da28 /* ExtD6Joint.cpp */, - FFFDc285da907fd8c285da90 /* ExtD6JointSolverPrep.cpp */, - FFFDc285daf87fd8c285daf8 /* ExtDefaultCpuDispatcher.cpp */, - FFFDc285db607fd8c285db60 /* ExtDefaultErrorCallback.cpp */, - FFFDc285dbc87fd8c285dbc8 /* ExtDefaultSimulationFilterShader.cpp */, - FFFDc285dc307fd8c285dc30 /* ExtDefaultStreams.cpp */, - FFFDc285dc987fd8c285dc98 /* ExtDistanceJoint.cpp */, - FFFDc285dd007fd8c285dd00 /* ExtDistanceJointSolverPrep.cpp */, - FFFDc285dd687fd8c285dd68 /* ExtExtensions.cpp */, - FFFDc285ddd07fd8c285ddd0 /* ExtFixedJoint.cpp */, - FFFDc285de387fd8c285de38 /* ExtFixedJointSolverPrep.cpp */, - FFFDc285dea07fd8c285dea0 /* ExtJoint.cpp */, - FFFDc285df087fd8c285df08 /* ExtMetaData.cpp */, - FFFDc285df707fd8c285df70 /* ExtParticleExt.cpp */, - FFFDc285dfd87fd8c285dfd8 /* ExtPrismaticJoint.cpp */, - FFFDc285e0407fd8c285e040 /* ExtPrismaticJointSolverPrep.cpp */, - FFFDc285e0a87fd8c285e0a8 /* ExtPvd.cpp */, - FFFDc285e1107fd8c285e110 /* ExtPxStringTable.cpp */, - FFFDc285e1787fd8c285e178 /* ExtRaycastCCD.cpp */, - FFFDc285e1e07fd8c285e1e0 /* ExtRevoluteJoint.cpp */, - FFFDc285e2487fd8c285e248 /* ExtRevoluteJointSolverPrep.cpp */, - FFFDc285e2b07fd8c285e2b0 /* ExtRigidBodyExt.cpp */, - FFFDc285e3187fd8c285e318 /* ExtSceneQueryExt.cpp */, - FFFDc285e3807fd8c285e380 /* ExtSimpleFactory.cpp */, - FFFDc285e3e87fd8c285e3e8 /* ExtSmoothNormals.cpp */, - FFFDc285e4507fd8c285e450 /* ExtSphericalJoint.cpp */, - FFFDc285e4b87fd8c285e4b8 /* ExtSphericalJointSolverPrep.cpp */, - FFFDc285e5207fd8c285e520 /* ExtTriangleMeshExt.cpp */, + FFFD128320007fe812832000 /* ExtConstraintHelper.h */, + FFFD128320687fe812832068 /* ExtCpuWorkerThread.h */, + FFFD128320d07fe8128320d0 /* ExtD6Joint.h */, + FFFD128321387fe812832138 /* ExtDefaultCpuDispatcher.h */, + FFFD128321a07fe8128321a0 /* ExtDistanceJoint.h */, + FFFD128322087fe812832208 /* ExtFixedJoint.h */, + FFFD128322707fe812832270 /* ExtInertiaTensor.h */, + FFFD128322d87fe8128322d8 /* ExtJoint.h */, + FFFD128323407fe812832340 /* ExtJointMetaDataExtensions.h */, + FFFD128323a87fe8128323a8 /* ExtPlatform.h */, + FFFD128324107fe812832410 /* ExtPrismaticJoint.h */, + FFFD128324787fe812832478 /* ExtPvd.h */, + FFFD128324e07fe8128324e0 /* ExtRevoluteJoint.h */, + FFFD128325487fe812832548 /* ExtSerialization.h */, + FFFD128325b07fe8128325b0 /* ExtSharedQueueEntryPool.h */, + FFFD128326187fe812832618 /* ExtSphericalJoint.h */, + FFFD128326807fe812832680 /* ExtTaskQueueHelper.h */, + FFFD128326e87fe8128326e8 /* ExtBroadPhase.cpp */, + FFFD128327507fe812832750 /* ExtClothFabricCooker.cpp */, + FFFD128327b87fe8128327b8 /* ExtClothGeodesicTetherCooker.cpp */, + FFFD128328207fe812832820 /* ExtClothMeshQuadifier.cpp */, + FFFD128328887fe812832888 /* ExtClothSimpleTetherCooker.cpp */, + FFFD128328f07fe8128328f0 /* ExtCollection.cpp */, + FFFD128329587fe812832958 /* ExtConvexMeshExt.cpp */, + FFFD128329c07fe8128329c0 /* ExtCpuWorkerThread.cpp */, + FFFD12832a287fe812832a28 /* ExtD6Joint.cpp */, + FFFD12832a907fe812832a90 /* ExtD6JointSolverPrep.cpp */, + FFFD12832af87fe812832af8 /* ExtDefaultCpuDispatcher.cpp */, + FFFD12832b607fe812832b60 /* ExtDefaultErrorCallback.cpp */, + FFFD12832bc87fe812832bc8 /* ExtDefaultSimulationFilterShader.cpp */, + FFFD12832c307fe812832c30 /* ExtDefaultStreams.cpp */, + FFFD12832c987fe812832c98 /* ExtDistanceJoint.cpp */, + FFFD12832d007fe812832d00 /* ExtDistanceJointSolverPrep.cpp */, + FFFD12832d687fe812832d68 /* ExtExtensions.cpp */, + FFFD12832dd07fe812832dd0 /* ExtFixedJoint.cpp */, + FFFD12832e387fe812832e38 /* ExtFixedJointSolverPrep.cpp */, + FFFD12832ea07fe812832ea0 /* ExtJoint.cpp */, + FFFD12832f087fe812832f08 /* ExtMetaData.cpp */, + FFFD12832f707fe812832f70 /* ExtParticleExt.cpp */, + FFFD12832fd87fe812832fd8 /* ExtPrismaticJoint.cpp */, + FFFD128330407fe812833040 /* ExtPrismaticJointSolverPrep.cpp */, + FFFD128330a87fe8128330a8 /* ExtPvd.cpp */, + FFFD128331107fe812833110 /* ExtPxStringTable.cpp */, + FFFD128331787fe812833178 /* ExtRaycastCCD.cpp */, + FFFD128331e07fe8128331e0 /* ExtRevoluteJoint.cpp */, + FFFD128332487fe812833248 /* ExtRevoluteJointSolverPrep.cpp */, + FFFD128332b07fe8128332b0 /* ExtRigidBodyExt.cpp */, + FFFD128333187fe812833318 /* ExtSceneQueryExt.cpp */, + FFFD128333807fe812833380 /* ExtSimpleFactory.cpp */, + FFFD128333e87fe8128333e8 /* ExtSmoothNormals.cpp */, + FFFD128334507fe812833450 /* ExtSphericalJoint.cpp */, + FFFD128334b87fe8128334b8 /* ExtSphericalJointSolverPrep.cpp */, + FFFD128335207fe812833520 /* ExtTriangleMeshExt.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc49153207fd8c4915320 /* serialization */ = { + FFFB126872807fe812687280 /* serialization */ = { isa = PBXGroup; children = ( - FFFDc2860c007fd8c2860c00 /* SnSerialUtils.h */, - FFFDc2860c687fd8c2860c68 /* SnSerializationRegistry.h */, - FFFDc2860cd07fd8c2860cd0 /* SnSerialUtils.cpp */, - FFFDc2860d387fd8c2860d38 /* SnSerialization.cpp */, - FFFDc2860da07fd8c2860da0 /* SnSerializationRegistry.cpp */, - FFFDc2860e087fd8c2860e08 /* Binary/SnConvX.h */, - FFFDc2860e707fd8c2860e70 /* Binary/SnConvX_Align.h */, - FFFDc2860ed87fd8c2860ed8 /* Binary/SnConvX_Common.h */, - FFFDc2860f407fd8c2860f40 /* Binary/SnConvX_MetaData.h */, - FFFDc2860fa87fd8c2860fa8 /* Binary/SnConvX_Output.h */, - FFFDc28610107fd8c2861010 /* Binary/SnConvX_Union.h */, - FFFDc28610787fd8c2861078 /* Binary/SnSerializationContext.h */, - FFFDc28610e07fd8c28610e0 /* Binary/SnBinaryDeserialization.cpp */, - FFFDc28611487fd8c2861148 /* Binary/SnBinarySerialization.cpp */, - FFFDc28611b07fd8c28611b0 /* Binary/SnConvX.cpp */, - FFFDc28612187fd8c2861218 /* Binary/SnConvX_Align.cpp */, - FFFDc28612807fd8c2861280 /* Binary/SnConvX_Convert.cpp */, - FFFDc28612e87fd8c28612e8 /* Binary/SnConvX_Error.cpp */, - FFFDc28613507fd8c2861350 /* Binary/SnConvX_MetaData.cpp */, - FFFDc28613b87fd8c28613b8 /* Binary/SnConvX_Output.cpp */, - FFFDc28614207fd8c2861420 /* Binary/SnConvX_Union.cpp */, - FFFDc28614887fd8c2861488 /* Binary/SnSerializationContext.cpp */, - FFFDc28614f07fd8c28614f0 /* Xml/SnPxStreamOperators.h */, - FFFDc28615587fd8c2861558 /* Xml/SnRepX1_0Defaults.h */, - FFFDc28615c07fd8c28615c0 /* Xml/SnRepX3_1Defaults.h */, - FFFDc28616287fd8c2861628 /* Xml/SnRepX3_2Defaults.h */, - FFFDc28616907fd8c2861690 /* Xml/SnRepXCollection.h */, - FFFDc28616f87fd8c28616f8 /* Xml/SnRepXCoreSerializer.h */, - FFFDc28617607fd8c2861760 /* Xml/SnRepXSerializerImpl.h */, - FFFDc28617c87fd8c28617c8 /* Xml/SnRepXUpgrader.h */, - FFFDc28618307fd8c2861830 /* Xml/SnSimpleXmlWriter.h */, - FFFDc28618987fd8c2861898 /* Xml/SnXmlDeserializer.h */, - FFFDc28619007fd8c2861900 /* Xml/SnXmlImpl.h */, - FFFDc28619687fd8c2861968 /* Xml/SnXmlMemoryAllocator.h */, - FFFDc28619d07fd8c28619d0 /* Xml/SnXmlMemoryPool.h */, - FFFDc2861a387fd8c2861a38 /* Xml/SnXmlMemoryPoolStreams.h */, - FFFDc2861aa07fd8c2861aa0 /* Xml/SnXmlReader.h */, - FFFDc2861b087fd8c2861b08 /* Xml/SnXmlSerializer.h */, - FFFDc2861b707fd8c2861b70 /* Xml/SnXmlSimpleXmlWriter.h */, - FFFDc2861bd87fd8c2861bd8 /* Xml/SnXmlStringToType.h */, - FFFDc2861c407fd8c2861c40 /* Xml/SnXmlVisitorReader.h */, - FFFDc2861ca87fd8c2861ca8 /* Xml/SnXmlVisitorWriter.h */, - FFFDc2861d107fd8c2861d10 /* Xml/SnXmlWriter.h */, - FFFDc2861d787fd8c2861d78 /* Xml/SnJointRepXSerializer.cpp */, - FFFDc2861de07fd8c2861de0 /* Xml/SnRepXCoreSerializer.cpp */, - FFFDc2861e487fd8c2861e48 /* Xml/SnRepXUpgrader.cpp */, - FFFDc2861eb07fd8c2861eb0 /* Xml/SnXmlSerialization.cpp */, - FFFDc2861f187fd8c2861f18 /* File/SnFile.h */, + FFFD12836a007fe812836a00 /* SnSerialUtils.h */, + FFFD12836a687fe812836a68 /* SnSerializationRegistry.h */, + FFFD12836ad07fe812836ad0 /* SnSerialUtils.cpp */, + FFFD12836b387fe812836b38 /* SnSerialization.cpp */, + FFFD12836ba07fe812836ba0 /* SnSerializationRegistry.cpp */, + FFFD12836c087fe812836c08 /* Binary/SnConvX.h */, + FFFD12836c707fe812836c70 /* Binary/SnConvX_Align.h */, + FFFD12836cd87fe812836cd8 /* Binary/SnConvX_Common.h */, + FFFD12836d407fe812836d40 /* Binary/SnConvX_MetaData.h */, + FFFD12836da87fe812836da8 /* Binary/SnConvX_Output.h */, + FFFD12836e107fe812836e10 /* Binary/SnConvX_Union.h */, + FFFD12836e787fe812836e78 /* Binary/SnSerializationContext.h */, + FFFD12836ee07fe812836ee0 /* Binary/SnBinaryDeserialization.cpp */, + FFFD12836f487fe812836f48 /* Binary/SnBinarySerialization.cpp */, + FFFD12836fb07fe812836fb0 /* Binary/SnConvX.cpp */, + FFFD128370187fe812837018 /* Binary/SnConvX_Align.cpp */, + FFFD128370807fe812837080 /* Binary/SnConvX_Convert.cpp */, + FFFD128370e87fe8128370e8 /* Binary/SnConvX_Error.cpp */, + FFFD128371507fe812837150 /* Binary/SnConvX_MetaData.cpp */, + FFFD128371b87fe8128371b8 /* Binary/SnConvX_Output.cpp */, + FFFD128372207fe812837220 /* Binary/SnConvX_Union.cpp */, + FFFD128372887fe812837288 /* Binary/SnSerializationContext.cpp */, + FFFD128372f07fe8128372f0 /* Xml/SnPxStreamOperators.h */, + FFFD128373587fe812837358 /* Xml/SnRepX1_0Defaults.h */, + FFFD128373c07fe8128373c0 /* Xml/SnRepX3_1Defaults.h */, + FFFD128374287fe812837428 /* Xml/SnRepX3_2Defaults.h */, + FFFD128374907fe812837490 /* Xml/SnRepXCollection.h */, + FFFD128374f87fe8128374f8 /* Xml/SnRepXCoreSerializer.h */, + FFFD128375607fe812837560 /* Xml/SnRepXSerializerImpl.h */, + FFFD128375c87fe8128375c8 /* Xml/SnRepXUpgrader.h */, + FFFD128376307fe812837630 /* Xml/SnSimpleXmlWriter.h */, + FFFD128376987fe812837698 /* Xml/SnXmlDeserializer.h */, + FFFD128377007fe812837700 /* Xml/SnXmlImpl.h */, + FFFD128377687fe812837768 /* Xml/SnXmlMemoryAllocator.h */, + FFFD128377d07fe8128377d0 /* Xml/SnXmlMemoryPool.h */, + FFFD128378387fe812837838 /* Xml/SnXmlMemoryPoolStreams.h */, + FFFD128378a07fe8128378a0 /* Xml/SnXmlReader.h */, + FFFD128379087fe812837908 /* Xml/SnXmlSerializer.h */, + FFFD128379707fe812837970 /* Xml/SnXmlSimpleXmlWriter.h */, + FFFD128379d87fe8128379d8 /* Xml/SnXmlStringToType.h */, + FFFD12837a407fe812837a40 /* Xml/SnXmlVisitorReader.h */, + FFFD12837aa87fe812837aa8 /* Xml/SnXmlVisitorWriter.h */, + FFFD12837b107fe812837b10 /* Xml/SnXmlWriter.h */, + FFFD12837b787fe812837b78 /* Xml/SnJointRepXSerializer.cpp */, + FFFD12837be07fe812837be0 /* Xml/SnRepXCoreSerializer.cpp */, + FFFD12837c487fe812837c48 /* Xml/SnRepXUpgrader.cpp */, + FFFD12837cb07fe812837cb0 /* Xml/SnXmlSerialization.cpp */, + FFFD12837d187fe812837d18 /* File/SnFile.h */, ); name = "serialization"; sourceTree = SOURCE_ROOT; }; - FFFBc49153487fd8c4915348 /* metadata */ = { + FFFB126872a87fe8126872a8 /* metadata */ = { isa = PBXGroup; children = ( - FFFDc285f6007fd8c285f600 /* core/include/PvdMetaDataDefineProperties.h */, - FFFDc285f6687fd8c285f668 /* core/include/PvdMetaDataExtensions.h */, - FFFDc285f6d07fd8c285f6d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFDc285f7387fd8c285f738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFDc285f7a07fd8c285f7a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFDc285f8087fd8c285f808 /* core/include/PxMetaDataCompare.h */, - FFFDc285f8707fd8c285f870 /* core/include/PxMetaDataCppPrefix.h */, - FFFDc285f8d87fd8c285f8d8 /* core/include/PxMetaDataObjects.h */, - FFFDc285f9407fd8c285f940 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFDc285f9a87fd8c285f9a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, - FFFDc285fa107fd8c285fa10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, - FFFDc285fa787fd8c285fa78 /* extensions/include/PxExtensionMetaDataObjects.h */, - FFFDc285fae07fd8c285fae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, + FFFD128346007fe812834600 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD128346687fe812834668 /* core/include/PvdMetaDataExtensions.h */, + FFFD128346d07fe8128346d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD128347387fe812834738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD128347a07fe8128347a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD128348087fe812834808 /* core/include/PxMetaDataCompare.h */, + FFFD128348707fe812834870 /* core/include/PxMetaDataCppPrefix.h */, + FFFD128348d87fe8128348d8 /* core/include/PxMetaDataObjects.h */, + FFFD128349407fe812834940 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD128349a87fe8128349a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, + FFFD12834a107fe812834a10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, + FFFD12834a787fe812834a78 /* extensions/include/PxExtensionMetaDataObjects.h */, + FFFD12834ae07fe812834ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBc491f0907fd8c491f090 /* SceneQuery */ = { + FFFB12694cb07fe812694cb0 /* SceneQuery */ = { isa = PBXGroup; children = ( - FFFBc49221807fd8c4922180 /* src */, - FFFBc49221a87fd8c49221a8 /* include */, + FFFB12697e207fe812697e20 /* src */, + FFFB12697e487fe812697e48 /* include */, ); name = "SceneQuery"; sourceTree = "<group>"; }; - FFFBc49221807fd8c4922180 /* src */ = { + FFFB12697e207fe812697e20 /* src */ = { isa = PBXGroup; children = ( - FFFDc28662007fd8c2866200 /* SqAABBPruner.cpp */, - FFFDc28662687fd8c2866268 /* SqAABBTree.cpp */, - FFFDc28662d07fd8c28662d0 /* SqAABBTreeUpdateMap.cpp */, - FFFDc28663387fd8c2866338 /* SqBounds.cpp */, - FFFDc28663a07fd8c28663a0 /* SqBucketPruner.cpp */, - FFFDc28664087fd8c2866408 /* SqExtendedBucketPruner.cpp */, - FFFDc28664707fd8c2866470 /* SqMetaData.cpp */, - FFFDc28664d87fd8c28664d8 /* SqPruningPool.cpp */, - FFFDc28665407fd8c2866540 /* SqPruningStructure.cpp */, - FFFDc28665a87fd8c28665a8 /* SqSceneQueryManager.cpp */, - FFFDc28666107fd8c2866610 /* SqAABBPruner.h */, - FFFDc28666787fd8c2866678 /* SqAABBTree.h */, - FFFDc28666e07fd8c28666e0 /* SqAABBTreeQuery.h */, - FFFDc28667487fd8c2866748 /* SqAABBTreeUpdateMap.h */, - FFFDc28667b07fd8c28667b0 /* SqBounds.h */, - FFFDc28668187fd8c2866818 /* SqBucketPruner.h */, - FFFDc28668807fd8c2866880 /* SqExtendedBucketPruner.h */, - FFFDc28668e87fd8c28668e8 /* SqPrunerTestsSIMD.h */, - FFFDc28669507fd8c2866950 /* SqPruningPool.h */, - FFFDc28669b87fd8c28669b8 /* SqTypedef.h */, + FFFD1283aa007fe81283aa00 /* SqAABBPruner.cpp */, + FFFD1283aa687fe81283aa68 /* SqAABBTree.cpp */, + FFFD1283aad07fe81283aad0 /* SqAABBTreeUpdateMap.cpp */, + FFFD1283ab387fe81283ab38 /* SqBounds.cpp */, + FFFD1283aba07fe81283aba0 /* SqBucketPruner.cpp */, + FFFD1283ac087fe81283ac08 /* SqExtendedBucketPruner.cpp */, + FFFD1283ac707fe81283ac70 /* SqMetaData.cpp */, + FFFD1283acd87fe81283acd8 /* SqPruningPool.cpp */, + FFFD1283ad407fe81283ad40 /* SqPruningStructure.cpp */, + FFFD1283ada87fe81283ada8 /* SqSceneQueryManager.cpp */, + FFFD1283ae107fe81283ae10 /* SqAABBPruner.h */, + FFFD1283ae787fe81283ae78 /* SqAABBTree.h */, + FFFD1283aee07fe81283aee0 /* SqAABBTreeQuery.h */, + FFFD1283af487fe81283af48 /* SqAABBTreeUpdateMap.h */, + FFFD1283afb07fe81283afb0 /* SqBounds.h */, + FFFD1283b0187fe81283b018 /* SqBucketPruner.h */, + FFFD1283b0807fe81283b080 /* SqExtendedBucketPruner.h */, + FFFD1283b0e87fe81283b0e8 /* SqPrunerTestsSIMD.h */, + FFFD1283b1507fe81283b150 /* SqPruningPool.h */, + FFFD1283b1b87fe81283b1b8 /* SqTypedef.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc49221a87fd8c49221a8 /* include */ = { + FFFB12697e487fe812697e48 /* include */ = { isa = PBXGroup; children = ( - FFFDc49232d07fd8c49232d0 /* SqPruner.h */, - FFFDc49233387fd8c4923338 /* SqPrunerMergeData.h */, - FFFDc49233a07fd8c49233a0 /* SqPruningStructure.h */, - FFFDc49234087fd8c4923408 /* SqSceneQueryManager.h */, + FFFD12698f507fe812698f50 /* SqPruner.h */, + FFFD12698fb87fe812698fb8 /* SqPrunerMergeData.h */, + FFFD126990207fe812699020 /* SqPruningStructure.h */, + FFFD126990887fe812699088 /* SqSceneQueryManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc49236207fd8c4923620 /* SimulationController */ = { + FFFB126992107fe812699210 /* SimulationController */ = { isa = PBXGroup; children = ( - FFFBc49256a07fd8c49256a0 /* include */, - FFFBc49256c87fd8c49256c8 /* src */, + FFFB1269d4207fe81269d420 /* include */, + FFFB1269d4487fe81269d448 /* src */, ); name = "SimulationController"; sourceTree = "<group>"; }; - FFFBc49256a07fd8c49256a0 /* include */ = { + FFFB1269d4207fe81269d420 /* include */ = { isa = PBXGroup; children = ( - FFFDc2868c007fd8c2868c00 /* ScActorCore.h */, - FFFDc2868c687fd8c2868c68 /* ScArticulationCore.h */, - FFFDc2868cd07fd8c2868cd0 /* ScArticulationJointCore.h */, - FFFDc2868d387fd8c2868d38 /* ScBodyCore.h */, - FFFDc2868da07fd8c2868da0 /* ScClothCore.h */, - FFFDc2868e087fd8c2868e08 /* ScClothFabricCore.h */, - FFFDc2868e707fd8c2868e70 /* ScConstraintCore.h */, - FFFDc2868ed87fd8c2868ed8 /* ScIterators.h */, - FFFDc2868f407fd8c2868f40 /* ScMaterialCore.h */, - FFFDc2868fa87fd8c2868fa8 /* ScParticleSystemCore.h */, - FFFDc28690107fd8c2869010 /* ScPhysics.h */, - FFFDc28690787fd8c2869078 /* ScRigidCore.h */, - FFFDc28690e07fd8c28690e0 /* ScScene.h */, - FFFDc28691487fd8c2869148 /* ScShapeCore.h */, - FFFDc28691b07fd8c28691b0 /* ScStaticCore.h */, + FFFD1283d4007fe81283d400 /* ScActorCore.h */, + FFFD1283d4687fe81283d468 /* ScArticulationCore.h */, + FFFD1283d4d07fe81283d4d0 /* ScArticulationJointCore.h */, + FFFD1283d5387fe81283d538 /* ScBodyCore.h */, + FFFD1283d5a07fe81283d5a0 /* ScClothCore.h */, + FFFD1283d6087fe81283d608 /* ScClothFabricCore.h */, + FFFD1283d6707fe81283d670 /* ScConstraintCore.h */, + FFFD1283d6d87fe81283d6d8 /* ScIterators.h */, + FFFD1283d7407fe81283d740 /* ScMaterialCore.h */, + FFFD1283d7a87fe81283d7a8 /* ScParticleSystemCore.h */, + FFFD1283d8107fe81283d810 /* ScPhysics.h */, + FFFD1283d8787fe81283d878 /* ScRigidCore.h */, + FFFD1283d8e07fe81283d8e0 /* ScScene.h */, + FFFD1283d9487fe81283d948 /* ScShapeCore.h */, + FFFD1283d9b07fe81283d9b0 /* ScStaticCore.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc49256c87fd8c49256c8 /* src */ = { + FFFB1269d4487fe81269d448 /* src */ = { isa = PBXGroup; children = ( - FFFDc18856007fd8c1885600 /* ScActorElementPair.h */, - FFFDc18856687fd8c1885668 /* ScActorInteraction.h */, - FFFDc18856d07fd8c18856d0 /* ScActorPair.h */, - FFFDc18857387fd8c1885738 /* ScActorSim.h */, - FFFDc18857a07fd8c18857a0 /* ScArticulationJointSim.h */, - FFFDc18858087fd8c1885808 /* ScArticulationSim.h */, - FFFDc18858707fd8c1885870 /* ScBodySim.h */, - FFFDc18858d87fd8c18858d8 /* ScClient.h */, - FFFDc18859407fd8c1885940 /* ScConstraintGroupNode.h */, - FFFDc18859a87fd8c18859a8 /* ScConstraintInteraction.h */, - FFFDc1885a107fd8c1885a10 /* ScConstraintProjectionManager.h */, - FFFDc1885a787fd8c1885a78 /* ScConstraintProjectionTree.h */, - FFFDc1885ae07fd8c1885ae0 /* ScConstraintSim.h */, - FFFDc1885b487fd8c1885b48 /* ScContactReportBuffer.h */, - FFFDc1885bb07fd8c1885bb0 /* ScContactStream.h */, - FFFDc1885c187fd8c1885c18 /* ScElementInteractionMarker.h */, - FFFDc1885c807fd8c1885c80 /* ScElementSim.h */, - FFFDc1885ce87fd8c1885ce8 /* ScElementSimInteraction.h */, - FFFDc1885d507fd8c1885d50 /* ScInteraction.h */, - FFFDc1885db87fd8c1885db8 /* ScInteractionFlags.h */, - FFFDc1885e207fd8c1885e20 /* ScNPhaseCore.h */, - FFFDc1885e887fd8c1885e88 /* ScObjectIDTracker.h */, - FFFDc1885ef07fd8c1885ef0 /* ScRbElementInteraction.h */, - FFFDc1885f587fd8c1885f58 /* ScRigidSim.h */, - FFFDc1885fc07fd8c1885fc0 /* ScShapeInteraction.h */, - FFFDc18860287fd8c1886028 /* ScShapeIterator.h */, - FFFDc18860907fd8c1886090 /* ScShapeSim.h */, - FFFDc18860f87fd8c18860f8 /* ScSimStateData.h */, - FFFDc18861607fd8c1886160 /* ScSimStats.h */, - FFFDc18861c87fd8c18861c8 /* ScSimulationController.h */, - FFFDc18862307fd8c1886230 /* ScSqBoundsManager.h */, - FFFDc18862987fd8c1886298 /* ScStaticSim.h */, - FFFDc18863007fd8c1886300 /* ScTriggerInteraction.h */, - FFFDc18863687fd8c1886368 /* ScTriggerPairs.h */, - FFFDc18863d07fd8c18863d0 /* ScActorCore.cpp */, - FFFDc18864387fd8c1886438 /* ScActorSim.cpp */, - FFFDc18864a07fd8c18864a0 /* ScArticulationCore.cpp */, - FFFDc18865087fd8c1886508 /* ScArticulationJointCore.cpp */, - FFFDc18865707fd8c1886570 /* ScArticulationJointSim.cpp */, - FFFDc18865d87fd8c18865d8 /* ScArticulationSim.cpp */, - FFFDc18866407fd8c1886640 /* ScBodyCore.cpp */, - FFFDc18866a87fd8c18866a8 /* ScBodyCoreKinematic.cpp */, - FFFDc18867107fd8c1886710 /* ScBodySim.cpp */, - FFFDc18867787fd8c1886778 /* ScConstraintCore.cpp */, - FFFDc18867e07fd8c18867e0 /* ScConstraintGroupNode.cpp */, - FFFDc18868487fd8c1886848 /* ScConstraintInteraction.cpp */, - FFFDc18868b07fd8c18868b0 /* ScConstraintProjectionManager.cpp */, - FFFDc18869187fd8c1886918 /* ScConstraintProjectionTree.cpp */, - FFFDc18869807fd8c1886980 /* ScConstraintSim.cpp */, - FFFDc18869e87fd8c18869e8 /* ScElementInteractionMarker.cpp */, - FFFDc1886a507fd8c1886a50 /* ScElementSim.cpp */, - FFFDc1886ab87fd8c1886ab8 /* ScInteraction.cpp */, - FFFDc1886b207fd8c1886b20 /* ScIterators.cpp */, - FFFDc1886b887fd8c1886b88 /* ScMaterialCore.cpp */, - FFFDc1886bf07fd8c1886bf0 /* ScMetaData.cpp */, - FFFDc1886c587fd8c1886c58 /* ScNPhaseCore.cpp */, - FFFDc1886cc07fd8c1886cc0 /* ScPhysics.cpp */, - FFFDc1886d287fd8c1886d28 /* ScRigidCore.cpp */, - FFFDc1886d907fd8c1886d90 /* ScRigidSim.cpp */, - FFFDc1886df87fd8c1886df8 /* ScScene.cpp */, - FFFDc1886e607fd8c1886e60 /* ScShapeCore.cpp */, - FFFDc1886ec87fd8c1886ec8 /* ScShapeInteraction.cpp */, - FFFDc1886f307fd8c1886f30 /* ScShapeSim.cpp */, - FFFDc1886f987fd8c1886f98 /* ScSimStats.cpp */, - FFFDc18870007fd8c1887000 /* ScSimulationController.cpp */, - FFFDc18870687fd8c1887068 /* ScSqBoundsManager.cpp */, - FFFDc18870d07fd8c18870d0 /* ScStaticCore.cpp */, - FFFDc18871387fd8c1887138 /* ScStaticSim.cpp */, - FFFDc18871a07fd8c18871a0 /* ScTriggerInteraction.cpp */, - FFFDc18872087fd8c1887208 /* particles/ScParticleBodyInteraction.h */, - FFFDc18872707fd8c1887270 /* particles/ScParticlePacketShape.h */, - FFFDc18872d87fd8c18872d8 /* particles/ScParticleSystemSim.h */, - FFFDc18873407fd8c1887340 /* particles/ScParticleBodyInteraction.cpp */, - FFFDc18873a87fd8c18873a8 /* particles/ScParticlePacketShape.cpp */, - FFFDc18874107fd8c1887410 /* particles/ScParticleSystemCore.cpp */, - FFFDc18874787fd8c1887478 /* particles/ScParticleSystemSim.cpp */, - FFFDc18874e07fd8c18874e0 /* cloth/ScClothShape.h */, - FFFDc18875487fd8c1887548 /* cloth/ScClothSim.h */, - FFFDc18875b07fd8c18875b0 /* cloth/ScClothCore.cpp */, - FFFDc18876187fd8c1887618 /* cloth/ScClothFabricCore.cpp */, - FFFDc18876807fd8c1887680 /* cloth/ScClothShape.cpp */, - FFFDc18876e87fd8c18876e8 /* cloth/ScClothSim.cpp */, + FFFD110698007fe811069800 /* ScActorElementPair.h */, + FFFD110698687fe811069868 /* ScActorInteraction.h */, + FFFD110698d07fe8110698d0 /* ScActorPair.h */, + FFFD110699387fe811069938 /* ScActorSim.h */, + FFFD110699a07fe8110699a0 /* ScArticulationJointSim.h */, + FFFD11069a087fe811069a08 /* ScArticulationSim.h */, + FFFD11069a707fe811069a70 /* ScBodySim.h */, + FFFD11069ad87fe811069ad8 /* ScClient.h */, + FFFD11069b407fe811069b40 /* ScConstraintGroupNode.h */, + FFFD11069ba87fe811069ba8 /* ScConstraintInteraction.h */, + FFFD11069c107fe811069c10 /* ScConstraintProjectionManager.h */, + FFFD11069c787fe811069c78 /* ScConstraintProjectionTree.h */, + FFFD11069ce07fe811069ce0 /* ScConstraintSim.h */, + FFFD11069d487fe811069d48 /* ScContactReportBuffer.h */, + FFFD11069db07fe811069db0 /* ScContactStream.h */, + FFFD11069e187fe811069e18 /* ScElementInteractionMarker.h */, + FFFD11069e807fe811069e80 /* ScElementSim.h */, + FFFD11069ee87fe811069ee8 /* ScElementSimInteraction.h */, + FFFD11069f507fe811069f50 /* ScInteraction.h */, + FFFD11069fb87fe811069fb8 /* ScInteractionFlags.h */, + FFFD1106a0207fe81106a020 /* ScNPhaseCore.h */, + FFFD1106a0887fe81106a088 /* ScObjectIDTracker.h */, + FFFD1106a0f07fe81106a0f0 /* ScRbElementInteraction.h */, + FFFD1106a1587fe81106a158 /* ScRigidSim.h */, + FFFD1106a1c07fe81106a1c0 /* ScShapeInteraction.h */, + FFFD1106a2287fe81106a228 /* ScShapeIterator.h */, + FFFD1106a2907fe81106a290 /* ScShapeSim.h */, + FFFD1106a2f87fe81106a2f8 /* ScSimStateData.h */, + FFFD1106a3607fe81106a360 /* ScSimStats.h */, + FFFD1106a3c87fe81106a3c8 /* ScSimulationController.h */, + FFFD1106a4307fe81106a430 /* ScSqBoundsManager.h */, + FFFD1106a4987fe81106a498 /* ScStaticSim.h */, + FFFD1106a5007fe81106a500 /* ScTriggerInteraction.h */, + FFFD1106a5687fe81106a568 /* ScTriggerPairs.h */, + FFFD1106a5d07fe81106a5d0 /* ScActorCore.cpp */, + FFFD1106a6387fe81106a638 /* ScActorSim.cpp */, + FFFD1106a6a07fe81106a6a0 /* ScArticulationCore.cpp */, + FFFD1106a7087fe81106a708 /* ScArticulationJointCore.cpp */, + FFFD1106a7707fe81106a770 /* ScArticulationJointSim.cpp */, + FFFD1106a7d87fe81106a7d8 /* ScArticulationSim.cpp */, + FFFD1106a8407fe81106a840 /* ScBodyCore.cpp */, + FFFD1106a8a87fe81106a8a8 /* ScBodyCoreKinematic.cpp */, + FFFD1106a9107fe81106a910 /* ScBodySim.cpp */, + FFFD1106a9787fe81106a978 /* ScConstraintCore.cpp */, + FFFD1106a9e07fe81106a9e0 /* ScConstraintGroupNode.cpp */, + FFFD1106aa487fe81106aa48 /* ScConstraintInteraction.cpp */, + FFFD1106aab07fe81106aab0 /* ScConstraintProjectionManager.cpp */, + FFFD1106ab187fe81106ab18 /* ScConstraintProjectionTree.cpp */, + FFFD1106ab807fe81106ab80 /* ScConstraintSim.cpp */, + FFFD1106abe87fe81106abe8 /* ScElementInteractionMarker.cpp */, + FFFD1106ac507fe81106ac50 /* ScElementSim.cpp */, + FFFD1106acb87fe81106acb8 /* ScInteraction.cpp */, + FFFD1106ad207fe81106ad20 /* ScIterators.cpp */, + FFFD1106ad887fe81106ad88 /* ScMaterialCore.cpp */, + FFFD1106adf07fe81106adf0 /* ScMetaData.cpp */, + FFFD1106ae587fe81106ae58 /* ScNPhaseCore.cpp */, + FFFD1106aec07fe81106aec0 /* ScPhysics.cpp */, + FFFD1106af287fe81106af28 /* ScRigidCore.cpp */, + FFFD1106af907fe81106af90 /* ScRigidSim.cpp */, + FFFD1106aff87fe81106aff8 /* ScScene.cpp */, + FFFD1106b0607fe81106b060 /* ScShapeCore.cpp */, + FFFD1106b0c87fe81106b0c8 /* ScShapeInteraction.cpp */, + FFFD1106b1307fe81106b130 /* ScShapeSim.cpp */, + FFFD1106b1987fe81106b198 /* ScSimStats.cpp */, + FFFD1106b2007fe81106b200 /* ScSimulationController.cpp */, + FFFD1106b2687fe81106b268 /* ScSqBoundsManager.cpp */, + FFFD1106b2d07fe81106b2d0 /* ScStaticCore.cpp */, + FFFD1106b3387fe81106b338 /* ScStaticSim.cpp */, + FFFD1106b3a07fe81106b3a0 /* ScTriggerInteraction.cpp */, + FFFD1106b4087fe81106b408 /* particles/ScParticleBodyInteraction.h */, + FFFD1106b4707fe81106b470 /* particles/ScParticlePacketShape.h */, + FFFD1106b4d87fe81106b4d8 /* particles/ScParticleSystemSim.h */, + FFFD1106b5407fe81106b540 /* particles/ScParticleBodyInteraction.cpp */, + FFFD1106b5a87fe81106b5a8 /* particles/ScParticlePacketShape.cpp */, + FFFD1106b6107fe81106b610 /* particles/ScParticleSystemCore.cpp */, + FFFD1106b6787fe81106b678 /* particles/ScParticleSystemSim.cpp */, + FFFD1106b6e07fe81106b6e0 /* cloth/ScClothShape.h */, + FFFD1106b7487fe81106b748 /* cloth/ScClothSim.h */, + FFFD1106b7b07fe81106b7b0 /* cloth/ScClothCore.cpp */, + FFFD1106b8187fe81106b818 /* cloth/ScClothFabricCore.cpp */, + FFFD1106b8807fe81106b880 /* cloth/ScClothShape.cpp */, + FFFD1106b8e87fe81106b8e8 /* cloth/ScClothSim.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc10c82107fd8c10c8210 /* PhysXCooking */ = { + FFFB134ec9b07fe8134ec9b0 /* PhysXCooking */ = { isa = PBXGroup; children = ( - FFFBc484eac07fd8c484eac0 /* include */, - FFFBc484eae87fd8c484eae8 /* src */, + FFFB134edcb07fe8134edcb0 /* include */, + FFFB134edcd87fe8134edcd8 /* src */, ); name = "PhysXCooking"; sourceTree = "<group>"; }; - FFFBc484eac07fd8c484eac0 /* include */ = { + FFFB134edcb07fe8134edcb0 /* include */ = { isa = PBXGroup; children = ( - FFFDc484f2a07fd8c484f2a0 /* PxBVH33MidphaseDesc.h */, - FFFDc484f3087fd8c484f308 /* PxBVH34MidphaseDesc.h */, - FFFDc484f3707fd8c484f370 /* PxConvexMeshDesc.h */, - FFFDc484f3d87fd8c484f3d8 /* PxCooking.h */, - FFFDc484f4407fd8c484f440 /* PxMidphaseDesc.h */, - FFFDc484f4a87fd8c484f4a8 /* PxTriangleMeshDesc.h */, - FFFDc484f5107fd8c484f510 /* Pxc.h */, + FFFD134ef7507fe8134ef750 /* PxBVH33MidphaseDesc.h */, + FFFD134ef7b87fe8134ef7b8 /* PxBVH34MidphaseDesc.h */, + FFFD134ef8207fe8134ef820 /* PxConvexMeshDesc.h */, + FFFD134ef8887fe8134ef888 /* PxCooking.h */, + FFFD134ef8f07fe8134ef8f0 /* PxMidphaseDesc.h */, + FFFD134ef9587fe8134ef958 /* PxTriangleMeshDesc.h */, + FFFD134ef9c07fe8134ef9c0 /* Pxc.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc484eae87fd8c484eae8 /* src */ = { + FFFB134edcd87fe8134edcd8 /* src */ = { isa = PBXGroup; children = ( - FFFDc18898007fd8c1889800 /* Adjacencies.cpp */, - FFFDc18898687fd8c1889868 /* Cooking.cpp */, - FFFDc18898d07fd8c18898d0 /* CookingUtils.cpp */, - FFFDc18899387fd8c1889938 /* EdgeList.cpp */, - FFFDc18899a07fd8c18899a0 /* MeshCleaner.cpp */, - FFFDc1889a087fd8c1889a08 /* Quantizer.cpp */, - FFFDc1889a707fd8c1889a70 /* Adjacencies.h */, - FFFDc1889ad87fd8c1889ad8 /* Cooking.h */, - FFFDc1889b407fd8c1889b40 /* CookingUtils.h */, - FFFDc1889ba87fd8c1889ba8 /* EdgeList.h */, - FFFDc1889c107fd8c1889c10 /* MeshCleaner.h */, - FFFDc1889c787fd8c1889c78 /* Quantizer.h */, - FFFDc1889ce07fd8c1889ce0 /* mesh/GrbTriangleMeshCooking.cpp */, - FFFDc1889d487fd8c1889d48 /* mesh/HeightFieldCooking.cpp */, - FFFDc1889db07fd8c1889db0 /* mesh/RTreeCooking.cpp */, - FFFDc1889e187fd8c1889e18 /* mesh/TriangleMeshBuilder.cpp */, - FFFDc1889e807fd8c1889e80 /* mesh/GrbTriangleMeshCooking.h */, - FFFDc1889ee87fd8c1889ee8 /* mesh/HeightFieldCooking.h */, - FFFDc1889f507fd8c1889f50 /* mesh/QuickSelect.h */, - FFFDc1889fb87fd8c1889fb8 /* mesh/RTreeCooking.h */, - FFFDc188a0207fd8c188a020 /* mesh/TriangleMeshBuilder.h */, - FFFDc188a0887fd8c188a088 /* convex/BigConvexDataBuilder.cpp */, - FFFDc188a0f07fd8c188a0f0 /* convex/ConvexHullBuilder.cpp */, - FFFDc188a1587fd8c188a158 /* convex/ConvexHullLib.cpp */, - FFFDc188a1c07fd8c188a1c0 /* convex/ConvexHullUtils.cpp */, - FFFDc188a2287fd8c188a228 /* convex/ConvexMeshBuilder.cpp */, - FFFDc188a2907fd8c188a290 /* convex/ConvexPolygonsBuilder.cpp */, - FFFDc188a2f87fd8c188a2f8 /* convex/InflationConvexHullLib.cpp */, - FFFDc188a3607fd8c188a360 /* convex/QuickHullConvexHullLib.cpp */, - FFFDc188a3c87fd8c188a3c8 /* convex/VolumeIntegration.cpp */, - FFFDc188a4307fd8c188a430 /* convex/BigConvexDataBuilder.h */, - FFFDc188a4987fd8c188a498 /* convex/ConvexHullBuilder.h */, - FFFDc188a5007fd8c188a500 /* convex/ConvexHullLib.h */, - FFFDc188a5687fd8c188a568 /* convex/ConvexHullUtils.h */, - FFFDc188a5d07fd8c188a5d0 /* convex/ConvexMeshBuilder.h */, - FFFDc188a6387fd8c188a638 /* convex/ConvexPolygonsBuilder.h */, - FFFDc188a6a07fd8c188a6a0 /* convex/InflationConvexHullLib.h */, - FFFDc188a7087fd8c188a708 /* convex/QuickHullConvexHullLib.h */, - FFFDc188a7707fd8c188a770 /* convex/VolumeIntegration.h */, + FFFD11071a007fe811071a00 /* Adjacencies.cpp */, + FFFD11071a687fe811071a68 /* Cooking.cpp */, + FFFD11071ad07fe811071ad0 /* CookingUtils.cpp */, + FFFD11071b387fe811071b38 /* EdgeList.cpp */, + FFFD11071ba07fe811071ba0 /* MeshCleaner.cpp */, + FFFD11071c087fe811071c08 /* Quantizer.cpp */, + FFFD11071c707fe811071c70 /* Adjacencies.h */, + FFFD11071cd87fe811071cd8 /* Cooking.h */, + FFFD11071d407fe811071d40 /* CookingUtils.h */, + FFFD11071da87fe811071da8 /* EdgeList.h */, + FFFD11071e107fe811071e10 /* MeshCleaner.h */, + FFFD11071e787fe811071e78 /* Quantizer.h */, + FFFD11071ee07fe811071ee0 /* mesh/GrbTriangleMeshCooking.cpp */, + FFFD11071f487fe811071f48 /* mesh/HeightFieldCooking.cpp */, + FFFD11071fb07fe811071fb0 /* mesh/RTreeCooking.cpp */, + FFFD110720187fe811072018 /* mesh/TriangleMeshBuilder.cpp */, + FFFD110720807fe811072080 /* mesh/GrbTriangleMeshCooking.h */, + FFFD110720e87fe8110720e8 /* mesh/HeightFieldCooking.h */, + FFFD110721507fe811072150 /* mesh/QuickSelect.h */, + FFFD110721b87fe8110721b8 /* mesh/RTreeCooking.h */, + FFFD110722207fe811072220 /* mesh/TriangleMeshBuilder.h */, + FFFD110722887fe811072288 /* convex/BigConvexDataBuilder.cpp */, + FFFD110722f07fe8110722f0 /* convex/ConvexHullBuilder.cpp */, + FFFD110723587fe811072358 /* convex/ConvexHullLib.cpp */, + FFFD110723c07fe8110723c0 /* convex/ConvexHullUtils.cpp */, + FFFD110724287fe811072428 /* convex/ConvexMeshBuilder.cpp */, + FFFD110724907fe811072490 /* convex/ConvexPolygonsBuilder.cpp */, + FFFD110724f87fe8110724f8 /* convex/InflationConvexHullLib.cpp */, + FFFD110725607fe811072560 /* convex/QuickHullConvexHullLib.cpp */, + FFFD110725c87fe8110725c8 /* convex/VolumeIntegration.cpp */, + FFFD110726307fe811072630 /* convex/BigConvexDataBuilder.h */, + FFFD110726987fe811072698 /* convex/ConvexHullBuilder.h */, + FFFD110727007fe811072700 /* convex/ConvexHullLib.h */, + FFFD110727687fe811072768 /* convex/ConvexHullUtils.h */, + FFFD110727d07fe8110727d0 /* convex/ConvexMeshBuilder.h */, + FFFD110728387fe811072838 /* convex/ConvexPolygonsBuilder.h */, + FFFD110728a07fe8110728a0 /* convex/InflationConvexHullLib.h */, + FFFD110729087fe811072908 /* convex/QuickHullConvexHullLib.h */, + FFFD110729707fe811072970 /* convex/VolumeIntegration.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc1414ed07fd8c1414ed0 /* PhysXCommon */ = { + FFFB12128d507fe812128d50 /* PhysXCommon */ = { isa = PBXGroup; children = ( - FFFBc11a74a07fd8c11a74a0 /* include */, - FFFBc11a74c87fd8c11a74c8 /* common */, - FFFBc11a74f07fd8c11a74f0 /* geomutils */, + FFFB1211e4207fe81211e420 /* include */, + FFFB1211e4487fe81211e448 /* common */, + FFFB1211e4707fe81211e470 /* geomutils */, ); name = "PhysXCommon"; sourceTree = "<group>"; }; - FFFBc11a74a07fd8c11a74a0 /* include */ = { + FFFB1211e4207fe81211e420 /* include */ = { isa = PBXGroup; children = ( - FFFDc1876c007fd8c1876c00 /* common/PxBase.h */, - FFFDc1876c687fd8c1876c68 /* common/PxCollection.h */, - FFFDc1876cd07fd8c1876cd0 /* common/PxCoreUtilityTypes.h */, - FFFDc1876d387fd8c1876d38 /* common/PxMetaData.h */, - FFFDc1876da07fd8c1876da0 /* common/PxMetaDataFlags.h */, - FFFDc1876e087fd8c1876e08 /* common/PxPhysXCommonConfig.h */, - FFFDc1876e707fd8c1876e70 /* common/PxPhysicsInsertionCallback.h */, - FFFDc1876ed87fd8c1876ed8 /* common/PxRenderBuffer.h */, - FFFDc1876f407fd8c1876f40 /* common/PxSerialFramework.h */, - FFFDc1876fa87fd8c1876fa8 /* common/PxSerializer.h */, - FFFDc18770107fd8c1877010 /* common/PxStringTable.h */, - FFFDc18770787fd8c1877078 /* common/PxTolerancesScale.h */, - FFFDc18770e07fd8c18770e0 /* common/PxTypeInfo.h */, - FFFDc18771487fd8c1877148 /* geometry/PxBoxGeometry.h */, - FFFDc18771b07fd8c18771b0 /* geometry/PxCapsuleGeometry.h */, - FFFDc18772187fd8c1877218 /* geometry/PxConvexMesh.h */, - FFFDc18772807fd8c1877280 /* geometry/PxConvexMeshGeometry.h */, - FFFDc18772e87fd8c18772e8 /* geometry/PxGeometry.h */, - FFFDc18773507fd8c1877350 /* geometry/PxGeometryHelpers.h */, - FFFDc18773b87fd8c18773b8 /* geometry/PxGeometryQuery.h */, - FFFDc18774207fd8c1877420 /* geometry/PxHeightField.h */, - FFFDc18774887fd8c1877488 /* geometry/PxHeightFieldDesc.h */, - FFFDc18774f07fd8c18774f0 /* geometry/PxHeightFieldFlag.h */, - FFFDc18775587fd8c1877558 /* geometry/PxHeightFieldGeometry.h */, - FFFDc18775c07fd8c18775c0 /* geometry/PxHeightFieldSample.h */, - FFFDc18776287fd8c1877628 /* geometry/PxMeshQuery.h */, - FFFDc18776907fd8c1877690 /* geometry/PxMeshScale.h */, - FFFDc18776f87fd8c18776f8 /* geometry/PxPlaneGeometry.h */, - FFFDc18777607fd8c1877760 /* geometry/PxSimpleTriangleMesh.h */, - FFFDc18777c87fd8c18777c8 /* geometry/PxSphereGeometry.h */, - FFFDc18778307fd8c1877830 /* geometry/PxTriangle.h */, - FFFDc18778987fd8c1877898 /* geometry/PxTriangleMesh.h */, - FFFDc18779007fd8c1877900 /* geometry/PxTriangleMeshGeometry.h */, + FFFD110252007fe811025200 /* common/PxBase.h */, + FFFD110252687fe811025268 /* common/PxCollection.h */, + FFFD110252d07fe8110252d0 /* common/PxCoreUtilityTypes.h */, + FFFD110253387fe811025338 /* common/PxMetaData.h */, + FFFD110253a07fe8110253a0 /* common/PxMetaDataFlags.h */, + FFFD110254087fe811025408 /* common/PxPhysXCommonConfig.h */, + FFFD110254707fe811025470 /* common/PxPhysicsInsertionCallback.h */, + FFFD110254d87fe8110254d8 /* common/PxRenderBuffer.h */, + FFFD110255407fe811025540 /* common/PxSerialFramework.h */, + FFFD110255a87fe8110255a8 /* common/PxSerializer.h */, + FFFD110256107fe811025610 /* common/PxStringTable.h */, + FFFD110256787fe811025678 /* common/PxTolerancesScale.h */, + FFFD110256e07fe8110256e0 /* common/PxTypeInfo.h */, + FFFD110257487fe811025748 /* geometry/PxBoxGeometry.h */, + FFFD110257b07fe8110257b0 /* geometry/PxCapsuleGeometry.h */, + FFFD110258187fe811025818 /* geometry/PxConvexMesh.h */, + FFFD110258807fe811025880 /* geometry/PxConvexMeshGeometry.h */, + FFFD110258e87fe8110258e8 /* geometry/PxGeometry.h */, + FFFD110259507fe811025950 /* geometry/PxGeometryHelpers.h */, + FFFD110259b87fe8110259b8 /* geometry/PxGeometryQuery.h */, + FFFD11025a207fe811025a20 /* geometry/PxHeightField.h */, + FFFD11025a887fe811025a88 /* geometry/PxHeightFieldDesc.h */, + FFFD11025af07fe811025af0 /* geometry/PxHeightFieldFlag.h */, + FFFD11025b587fe811025b58 /* geometry/PxHeightFieldGeometry.h */, + FFFD11025bc07fe811025bc0 /* geometry/PxHeightFieldSample.h */, + FFFD11025c287fe811025c28 /* geometry/PxMeshQuery.h */, + FFFD11025c907fe811025c90 /* geometry/PxMeshScale.h */, + FFFD11025cf87fe811025cf8 /* geometry/PxPlaneGeometry.h */, + FFFD11025d607fe811025d60 /* geometry/PxSimpleTriangleMesh.h */, + FFFD11025dc87fe811025dc8 /* geometry/PxSphereGeometry.h */, + FFFD11025e307fe811025e30 /* geometry/PxTriangle.h */, + FFFD11025e987fe811025e98 /* geometry/PxTriangleMesh.h */, + FFFD11025f007fe811025f00 /* geometry/PxTriangleMeshGeometry.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc11a74c87fd8c11a74c8 /* common */ = { + FFFB1211e4487fe81211e448 /* common */ = { isa = PBXGroup; children = ( - FFFDc20174007fd8c2017400 /* src/CmBoxPruning.cpp */, - FFFDc20174687fd8c2017468 /* src/CmCollection.cpp */, - FFFDc20174d07fd8c20174d0 /* src/CmMathUtils.cpp */, - FFFDc20175387fd8c2017538 /* src/CmPtrTable.cpp */, - FFFDc20175a07fd8c20175a0 /* src/CmRadixSort.cpp */, - FFFDc20176087fd8c2017608 /* src/CmRadixSortBuffered.cpp */, - FFFDc20176707fd8c2017670 /* src/CmRenderOutput.cpp */, - FFFDc20176d87fd8c20176d8 /* src/CmVisualization.cpp */, - FFFDc20177407fd8c2017740 /* src/CmBitMap.h */, - FFFDc20177a87fd8c20177a8 /* src/CmBoxPruning.h */, - FFFDc20178107fd8c2017810 /* src/CmCollection.h */, - FFFDc20178787fd8c2017878 /* src/CmConeLimitHelper.h */, - FFFDc20178e07fd8c20178e0 /* src/CmFlushPool.h */, - FFFDc20179487fd8c2017948 /* src/CmIDPool.h */, - FFFDc20179b07fd8c20179b0 /* src/CmIO.h */, - FFFDc2017a187fd8c2017a18 /* src/CmMatrix34.h */, - FFFDc2017a807fd8c2017a80 /* src/CmPhysXCommon.h */, - FFFDc2017ae87fd8c2017ae8 /* src/CmPool.h */, - FFFDc2017b507fd8c2017b50 /* src/CmPreallocatingPool.h */, - FFFDc2017bb87fd8c2017bb8 /* src/CmPriorityQueue.h */, - FFFDc2017c207fd8c2017c20 /* src/CmPtrTable.h */, - FFFDc2017c887fd8c2017c88 /* src/CmQueue.h */, - FFFDc2017cf07fd8c2017cf0 /* src/CmRadixSort.h */, - FFFDc2017d587fd8c2017d58 /* src/CmRadixSortBuffered.h */, - FFFDc2017dc07fd8c2017dc0 /* src/CmReaderWriterLock.h */, - FFFDc2017e287fd8c2017e28 /* src/CmRefCountable.h */, - FFFDc2017e907fd8c2017e90 /* src/CmRenderBuffer.h */, - FFFDc2017ef87fd8c2017ef8 /* src/CmRenderOutput.h */, - FFFDc2017f607fd8c2017f60 /* src/CmScaling.h */, - FFFDc2017fc87fd8c2017fc8 /* src/CmSpatialVector.h */, - FFFDc20180307fd8c2018030 /* src/CmTask.h */, - FFFDc20180987fd8c2018098 /* src/CmTaskPool.h */, - FFFDc20181007fd8c2018100 /* src/CmTmpMem.h */, - FFFDc20181687fd8c2018168 /* src/CmTransformUtils.h */, - FFFDc20181d07fd8c20181d0 /* src/CmUtils.h */, - FFFDc20182387fd8c2018238 /* src/CmVisualization.h */, + FFFD1198a0007fe81198a000 /* src/CmBoxPruning.cpp */, + FFFD1198a0687fe81198a068 /* src/CmCollection.cpp */, + FFFD1198a0d07fe81198a0d0 /* src/CmMathUtils.cpp */, + FFFD1198a1387fe81198a138 /* src/CmPtrTable.cpp */, + FFFD1198a1a07fe81198a1a0 /* src/CmRadixSort.cpp */, + FFFD1198a2087fe81198a208 /* src/CmRadixSortBuffered.cpp */, + FFFD1198a2707fe81198a270 /* src/CmRenderOutput.cpp */, + FFFD1198a2d87fe81198a2d8 /* src/CmVisualization.cpp */, + FFFD1198a3407fe81198a340 /* src/CmBitMap.h */, + FFFD1198a3a87fe81198a3a8 /* src/CmBoxPruning.h */, + FFFD1198a4107fe81198a410 /* src/CmCollection.h */, + FFFD1198a4787fe81198a478 /* src/CmConeLimitHelper.h */, + FFFD1198a4e07fe81198a4e0 /* src/CmFlushPool.h */, + FFFD1198a5487fe81198a548 /* src/CmIDPool.h */, + FFFD1198a5b07fe81198a5b0 /* src/CmIO.h */, + FFFD1198a6187fe81198a618 /* src/CmMatrix34.h */, + FFFD1198a6807fe81198a680 /* src/CmPhysXCommon.h */, + FFFD1198a6e87fe81198a6e8 /* src/CmPool.h */, + FFFD1198a7507fe81198a750 /* src/CmPreallocatingPool.h */, + FFFD1198a7b87fe81198a7b8 /* src/CmPriorityQueue.h */, + FFFD1198a8207fe81198a820 /* src/CmPtrTable.h */, + FFFD1198a8887fe81198a888 /* src/CmQueue.h */, + FFFD1198a8f07fe81198a8f0 /* src/CmRadixSort.h */, + FFFD1198a9587fe81198a958 /* src/CmRadixSortBuffered.h */, + FFFD1198a9c07fe81198a9c0 /* src/CmReaderWriterLock.h */, + FFFD1198aa287fe81198aa28 /* src/CmRefCountable.h */, + FFFD1198aa907fe81198aa90 /* src/CmRenderBuffer.h */, + FFFD1198aaf87fe81198aaf8 /* src/CmRenderOutput.h */, + FFFD1198ab607fe81198ab60 /* src/CmScaling.h */, + FFFD1198abc87fe81198abc8 /* src/CmSpatialVector.h */, + FFFD1198ac307fe81198ac30 /* src/CmTask.h */, + FFFD1198ac987fe81198ac98 /* src/CmTaskPool.h */, + FFFD1198ad007fe81198ad00 /* src/CmTmpMem.h */, + FFFD1198ad687fe81198ad68 /* src/CmTransformUtils.h */, + FFFD1198add07fe81198add0 /* src/CmUtils.h */, + FFFD1198ae387fe81198ae38 /* src/CmVisualization.h */, ); name = "common"; sourceTree = SOURCE_ROOT; }; - FFFBc11a74f07fd8c11a74f0 /* geomutils */ = { + FFFB1211e4707fe81211e470 /* geomutils */ = { isa = PBXGroup; children = ( - FFFDc002da007fd8c002da00 /* headers/GuAxes.h */, - FFFDc002da687fd8c002da68 /* headers/GuBox.h */, - FFFDc002dad07fd8c002dad0 /* headers/GuDistanceSegmentBox.h */, - FFFDc002db387fd8c002db38 /* headers/GuDistanceSegmentSegment.h */, - FFFDc002dba07fd8c002dba0 /* headers/GuIntersectionBoxBox.h */, - FFFDc002dc087fd8c002dc08 /* headers/GuIntersectionTriangleBox.h */, - FFFDc002dc707fd8c002dc70 /* headers/GuRaycastTests.h */, - FFFDc002dcd87fd8c002dcd8 /* headers/GuSIMDHelpers.h */, - FFFDc002dd407fd8c002dd40 /* headers/GuSegment.h */, - FFFDc002dda87fd8c002dda8 /* ../../Include/GeomUtils */, - FFFDc002de107fd8c002de10 /* src/GuBounds.h */, - FFFDc002de787fd8c002de78 /* src/GuCapsule.h */, - FFFDc002dee07fd8c002dee0 /* src/GuCenterExtents.h */, - FFFDc002df487fd8c002df48 /* src/GuGeometryUnion.h */, - FFFDc002dfb07fd8c002dfb0 /* src/GuInternal.h */, - FFFDc002e0187fd8c002e018 /* src/GuMTD.h */, - FFFDc002e0807fd8c002e080 /* src/GuMeshFactory.h */, - FFFDc002e0e87fd8c002e0e8 /* src/GuOverlapTests.h */, - FFFDc002e1507fd8c002e150 /* src/GuSerialize.h */, - FFFDc002e1b87fd8c002e1b8 /* src/GuSphere.h */, - FFFDc002e2207fd8c002e220 /* src/GuSweepMTD.h */, - FFFDc002e2887fd8c002e288 /* src/GuSweepSharedTests.h */, - FFFDc002e2f07fd8c002e2f0 /* src/GuSweepTests.h */, - FFFDc002e3587fd8c002e358 /* src/contact/GuContactMethodImpl.h */, - FFFDc002e3c07fd8c002e3c0 /* src/contact/GuContactPolygonPolygon.h */, - FFFDc002e4287fd8c002e428 /* src/contact/GuFeatureCode.h */, - FFFDc002e4907fd8c002e490 /* src/contact/GuLegacyTraceLineCallback.h */, - FFFDc002e4f87fd8c002e4f8 /* src/common/GuBarycentricCoordinates.h */, - FFFDc002e5607fd8c002e560 /* src/common/GuBoxConversion.h */, - FFFDc002e5c87fd8c002e5c8 /* src/common/GuEdgeCache.h */, - FFFDc002e6307fd8c002e630 /* src/common/GuEdgeListData.h */, - FFFDc002e6987fd8c002e698 /* src/common/GuSeparatingAxes.h */, - FFFDc002e7007fd8c002e700 /* src/convex/GuBigConvexData.h */, - FFFDc002e7687fd8c002e768 /* src/convex/GuBigConvexData2.h */, - FFFDc002e7d07fd8c002e7d0 /* src/convex/GuConvexEdgeFlags.h */, - FFFDc002e8387fd8c002e838 /* src/convex/GuConvexHelper.h */, - FFFDc002e8a07fd8c002e8a0 /* src/convex/GuConvexMesh.h */, - FFFDc002e9087fd8c002e908 /* src/convex/GuConvexMeshData.h */, - FFFDc002e9707fd8c002e970 /* src/convex/GuConvexSupportTable.h */, - FFFDc002e9d87fd8c002e9d8 /* src/convex/GuConvexUtilsInternal.h */, - FFFDc002ea407fd8c002ea40 /* src/convex/GuCubeIndex.h */, - FFFDc002eaa87fd8c002eaa8 /* src/convex/GuHillClimbing.h */, - FFFDc002eb107fd8c002eb10 /* src/convex/GuShapeConvex.h */, - FFFDc002eb787fd8c002eb78 /* src/distance/GuDistancePointBox.h */, - FFFDc002ebe07fd8c002ebe0 /* src/distance/GuDistancePointSegment.h */, - FFFDc002ec487fd8c002ec48 /* src/distance/GuDistancePointTriangle.h */, - FFFDc002ecb07fd8c002ecb0 /* src/distance/GuDistancePointTriangleSIMD.h */, - FFFDc002ed187fd8c002ed18 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, - FFFDc002ed807fd8c002ed80 /* src/distance/GuDistanceSegmentTriangle.h */, - FFFDc002ede87fd8c002ede8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, - FFFDc002ee507fd8c002ee50 /* src/sweep/GuSweepBoxBox.h */, - FFFDc002eeb87fd8c002eeb8 /* src/sweep/GuSweepBoxSphere.h */, - FFFDc002ef207fd8c002ef20 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, - FFFDc002ef887fd8c002ef88 /* src/sweep/GuSweepBoxTriangle_SAT.h */, - FFFDc002eff07fd8c002eff0 /* src/sweep/GuSweepCapsuleBox.h */, - FFFDc002f0587fd8c002f058 /* src/sweep/GuSweepCapsuleCapsule.h */, - FFFDc002f0c07fd8c002f0c0 /* src/sweep/GuSweepCapsuleTriangle.h */, - FFFDc002f1287fd8c002f128 /* src/sweep/GuSweepSphereCapsule.h */, - FFFDc002f1907fd8c002f190 /* src/sweep/GuSweepSphereSphere.h */, - FFFDc002f1f87fd8c002f1f8 /* src/sweep/GuSweepSphereTriangle.h */, - FFFDc002f2607fd8c002f260 /* src/sweep/GuSweepTriangleUtils.h */, - FFFDc002f2c87fd8c002f2c8 /* src/gjk/GuEPA.h */, - FFFDc002f3307fd8c002f330 /* src/gjk/GuEPAFacet.h */, - FFFDc002f3987fd8c002f398 /* src/gjk/GuGJK.h */, - FFFDc002f4007fd8c002f400 /* src/gjk/GuGJKPenetration.h */, - FFFDc002f4687fd8c002f468 /* src/gjk/GuGJKRaycast.h */, - FFFDc002f4d07fd8c002f4d0 /* src/gjk/GuGJKSimplex.h */, - FFFDc002f5387fd8c002f538 /* src/gjk/GuGJKTest.h */, - FFFDc002f5a07fd8c002f5a0 /* src/gjk/GuGJKType.h */, - FFFDc002f6087fd8c002f608 /* src/gjk/GuGJKUtil.h */, - FFFDc002f6707fd8c002f670 /* src/gjk/GuVecBox.h */, - FFFDc002f6d87fd8c002f6d8 /* src/gjk/GuVecCapsule.h */, - FFFDc002f7407fd8c002f740 /* src/gjk/GuVecConvex.h */, - FFFDc002f7a87fd8c002f7a8 /* src/gjk/GuVecConvexHull.h */, - FFFDc002f8107fd8c002f810 /* src/gjk/GuVecConvexHullNoScale.h */, - FFFDc002f8787fd8c002f878 /* src/gjk/GuVecPlane.h */, - FFFDc002f8e07fd8c002f8e0 /* src/gjk/GuVecShrunkBox.h */, - FFFDc002f9487fd8c002f948 /* src/gjk/GuVecShrunkConvexHull.h */, - FFFDc002f9b07fd8c002f9b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, - FFFDc002fa187fd8c002fa18 /* src/gjk/GuVecSphere.h */, - FFFDc002fa807fd8c002fa80 /* src/gjk/GuVecTriangle.h */, - FFFDc002fae87fd8c002fae8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, - FFFDc002fb507fd8c002fb50 /* src/intersection/GuIntersectionEdgeEdge.h */, - FFFDc002fbb87fd8c002fbb8 /* src/intersection/GuIntersectionRay.h */, - FFFDc002fc207fd8c002fc20 /* src/intersection/GuIntersectionRayBox.h */, - FFFDc002fc887fd8c002fc88 /* src/intersection/GuIntersectionRayBoxSIMD.h */, - FFFDc002fcf07fd8c002fcf0 /* src/intersection/GuIntersectionRayCapsule.h */, - FFFDc002fd587fd8c002fd58 /* src/intersection/GuIntersectionRayPlane.h */, - FFFDc002fdc07fd8c002fdc0 /* src/intersection/GuIntersectionRaySphere.h */, - FFFDc002fe287fd8c002fe28 /* src/intersection/GuIntersectionRayTriangle.h */, - FFFDc002fe907fd8c002fe90 /* src/intersection/GuIntersectionSphereBox.h */, - FFFDc002fef87fd8c002fef8 /* src/mesh/GuBV32.h */, - FFFDc002ff607fd8c002ff60 /* src/mesh/GuBV32Build.h */, - FFFDc002ffc87fd8c002ffc8 /* src/mesh/GuBV4.h */, - FFFDc00300307fd8c0030030 /* src/mesh/GuBV4Build.h */, - FFFDc00300987fd8c0030098 /* src/mesh/GuBV4Settings.h */, - FFFDc00301007fd8c0030100 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, - FFFDc00301687fd8c0030168 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, - FFFDc00301d07fd8c00301d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, - FFFDc00302387fd8c0030238 /* src/mesh/GuBV4_BoxSweep_Internal.h */, - FFFDc00302a07fd8c00302a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, - FFFDc00303087fd8c0030308 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, - FFFDc00303707fd8c0030370 /* src/mesh/GuBV4_Common.h */, - FFFDc00303d87fd8c00303d8 /* src/mesh/GuBV4_Internal.h */, - FFFDc00304407fd8c0030440 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, - FFFDc00304a87fd8c00304a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, - FFFDc00305107fd8c0030510 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, - FFFDc00305787fd8c0030578 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, - FFFDc00305e07fd8c00305e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, - FFFDc00306487fd8c0030648 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, - FFFDc00306b07fd8c00306b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, - FFFDc00307187fd8c0030718 /* src/mesh/GuBV4_Slabs.h */, - FFFDc00307807fd8c0030780 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, - FFFDc00307e87fd8c00307e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, - FFFDc00308507fd8c0030850 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, - FFFDc00308b87fd8c00308b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, - FFFDc00309207fd8c0030920 /* src/mesh/GuBVConstants.h */, - FFFDc00309887fd8c0030988 /* src/mesh/GuMeshData.h */, - FFFDc00309f07fd8c00309f0 /* src/mesh/GuMidphaseInterface.h */, - FFFDc0030a587fd8c0030a58 /* src/mesh/GuRTree.h */, - FFFDc0030ac07fd8c0030ac0 /* src/mesh/GuSweepConvexTri.h */, - FFFDc0030b287fd8c0030b28 /* src/mesh/GuSweepMesh.h */, - FFFDc0030b907fd8c0030b90 /* src/mesh/GuTriangle32.h */, - FFFDc0030bf87fd8c0030bf8 /* src/mesh/GuTriangleCache.h */, - FFFDc0030c607fd8c0030c60 /* src/mesh/GuTriangleMesh.h */, - FFFDc0030cc87fd8c0030cc8 /* src/mesh/GuTriangleMeshBV4.h */, - FFFDc0030d307fd8c0030d30 /* src/mesh/GuTriangleMeshRTree.h */, - FFFDc0030d987fd8c0030d98 /* src/mesh/GuTriangleVertexPointers.h */, - FFFDc0030e007fd8c0030e00 /* src/hf/GuEntityReport.h */, - FFFDc0030e687fd8c0030e68 /* src/hf/GuHeightField.h */, - FFFDc0030ed07fd8c0030ed0 /* src/hf/GuHeightFieldData.h */, - FFFDc0030f387fd8c0030f38 /* src/hf/GuHeightFieldUtil.h */, - FFFDc0030fa07fd8c0030fa0 /* src/pcm/GuPCMContactConvexCommon.h */, - FFFDc00310087fd8c0031008 /* src/pcm/GuPCMContactGen.h */, - FFFDc00310707fd8c0031070 /* src/pcm/GuPCMContactGenUtil.h */, - FFFDc00310d87fd8c00310d8 /* src/pcm/GuPCMContactMeshCallback.h */, - FFFDc00311407fd8c0031140 /* src/pcm/GuPCMShapeConvex.h */, - FFFDc00311a87fd8c00311a8 /* src/pcm/GuPCMTriangleContactGen.h */, - FFFDc00312107fd8c0031210 /* src/pcm/GuPersistentContactManifold.h */, - FFFDc00312787fd8c0031278 /* src/ccd/GuCCDSweepConvexMesh.h */, - FFFDc00312e07fd8c00312e0 /* src/GuBounds.cpp */, - FFFDc00313487fd8c0031348 /* src/GuBox.cpp */, - FFFDc00313b07fd8c00313b0 /* src/GuCCTSweepTests.cpp */, - FFFDc00314187fd8c0031418 /* src/GuCapsule.cpp */, - FFFDc00314807fd8c0031480 /* src/GuGeometryQuery.cpp */, - FFFDc00314e87fd8c00314e8 /* src/GuGeometryUnion.cpp */, - FFFDc00315507fd8c0031550 /* src/GuInternal.cpp */, - FFFDc00315b87fd8c00315b8 /* src/GuMTD.cpp */, - FFFDc00316207fd8c0031620 /* src/GuMeshFactory.cpp */, - FFFDc00316887fd8c0031688 /* src/GuMetaData.cpp */, - FFFDc00316f07fd8c00316f0 /* src/GuOverlapTests.cpp */, - FFFDc00317587fd8c0031758 /* src/GuRaycastTests.cpp */, - FFFDc00317c07fd8c00317c0 /* src/GuSerialize.cpp */, - FFFDc00318287fd8c0031828 /* src/GuSweepMTD.cpp */, - FFFDc00318907fd8c0031890 /* src/GuSweepSharedTests.cpp */, - FFFDc00318f87fd8c00318f8 /* src/GuSweepTests.cpp */, - FFFDc00319607fd8c0031960 /* src/contact/GuContactBoxBox.cpp */, - FFFDc00319c87fd8c00319c8 /* src/contact/GuContactCapsuleBox.cpp */, - FFFDc0031a307fd8c0031a30 /* src/contact/GuContactCapsuleCapsule.cpp */, - FFFDc0031a987fd8c0031a98 /* src/contact/GuContactCapsuleConvex.cpp */, - FFFDc0031b007fd8c0031b00 /* src/contact/GuContactCapsuleMesh.cpp */, - FFFDc0031b687fd8c0031b68 /* src/contact/GuContactConvexConvex.cpp */, - FFFDc0031bd07fd8c0031bd0 /* src/contact/GuContactConvexMesh.cpp */, - FFFDc0031c387fd8c0031c38 /* src/contact/GuContactPlaneBox.cpp */, - FFFDc0031ca07fd8c0031ca0 /* src/contact/GuContactPlaneCapsule.cpp */, - FFFDc0031d087fd8c0031d08 /* src/contact/GuContactPlaneConvex.cpp */, - FFFDc0031d707fd8c0031d70 /* src/contact/GuContactPolygonPolygon.cpp */, - FFFDc0031dd87fd8c0031dd8 /* src/contact/GuContactSphereBox.cpp */, - FFFDc0031e407fd8c0031e40 /* src/contact/GuContactSphereCapsule.cpp */, - FFFDc0031ea87fd8c0031ea8 /* src/contact/GuContactSphereMesh.cpp */, - FFFDc0031f107fd8c0031f10 /* src/contact/GuContactSpherePlane.cpp */, - FFFDc0031f787fd8c0031f78 /* src/contact/GuContactSphereSphere.cpp */, - FFFDc0031fe07fd8c0031fe0 /* src/contact/GuFeatureCode.cpp */, - FFFDc00320487fd8c0032048 /* src/contact/GuLegacyContactBoxHeightField.cpp */, - FFFDc00320b07fd8c00320b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, - FFFDc00321187fd8c0032118 /* src/contact/GuLegacyContactConvexHeightField.cpp */, - FFFDc00321807fd8c0032180 /* src/contact/GuLegacyContactSphereHeightField.cpp */, - FFFDc00321e87fd8c00321e8 /* src/common/GuBarycentricCoordinates.cpp */, - FFFDc00322507fd8c0032250 /* src/common/GuSeparatingAxes.cpp */, - FFFDc00322b87fd8c00322b8 /* src/convex/GuBigConvexData.cpp */, - FFFDc00323207fd8c0032320 /* src/convex/GuConvexHelper.cpp */, - FFFDc00323887fd8c0032388 /* src/convex/GuConvexMesh.cpp */, - FFFDc00323f07fd8c00323f0 /* src/convex/GuConvexSupportTable.cpp */, - FFFDc00324587fd8c0032458 /* src/convex/GuConvexUtilsInternal.cpp */, - FFFDc00324c07fd8c00324c0 /* src/convex/GuHillClimbing.cpp */, - FFFDc00325287fd8c0032528 /* src/convex/GuShapeConvex.cpp */, - FFFDc00325907fd8c0032590 /* src/distance/GuDistancePointBox.cpp */, - FFFDc00325f87fd8c00325f8 /* src/distance/GuDistancePointTriangle.cpp */, - FFFDc00326607fd8c0032660 /* src/distance/GuDistanceSegmentBox.cpp */, - FFFDc00326c87fd8c00326c8 /* src/distance/GuDistanceSegmentSegment.cpp */, - FFFDc00327307fd8c0032730 /* src/distance/GuDistanceSegmentTriangle.cpp */, - FFFDc00327987fd8c0032798 /* src/sweep/GuSweepBoxBox.cpp */, - FFFDc00328007fd8c0032800 /* src/sweep/GuSweepBoxSphere.cpp */, - FFFDc00328687fd8c0032868 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, - FFFDc00328d07fd8c00328d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, - FFFDc00329387fd8c0032938 /* src/sweep/GuSweepCapsuleBox.cpp */, - FFFDc00329a07fd8c00329a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, - FFFDc0032a087fd8c0032a08 /* src/sweep/GuSweepCapsuleTriangle.cpp */, - FFFDc0032a707fd8c0032a70 /* src/sweep/GuSweepSphereCapsule.cpp */, - FFFDc0032ad87fd8c0032ad8 /* src/sweep/GuSweepSphereSphere.cpp */, - FFFDc0032b407fd8c0032b40 /* src/sweep/GuSweepSphereTriangle.cpp */, - FFFDc0032ba87fd8c0032ba8 /* src/sweep/GuSweepTriangleUtils.cpp */, - FFFDc0032c107fd8c0032c10 /* src/gjk/GuEPA.cpp */, - FFFDc0032c787fd8c0032c78 /* src/gjk/GuGJKSimplex.cpp */, - FFFDc0032ce07fd8c0032ce0 /* src/gjk/GuGJKTest.cpp */, - FFFDc0032d487fd8c0032d48 /* src/intersection/GuIntersectionBoxBox.cpp */, - FFFDc0032db07fd8c0032db0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, - FFFDc0032e187fd8c0032e18 /* src/intersection/GuIntersectionEdgeEdge.cpp */, - FFFDc0032e807fd8c0032e80 /* src/intersection/GuIntersectionRayBox.cpp */, - FFFDc0032ee87fd8c0032ee8 /* src/intersection/GuIntersectionRayCapsule.cpp */, - FFFDc0032f507fd8c0032f50 /* src/intersection/GuIntersectionRaySphere.cpp */, - FFFDc0032fb87fd8c0032fb8 /* src/intersection/GuIntersectionSphereBox.cpp */, - FFFDc00330207fd8c0033020 /* src/intersection/GuIntersectionTriangleBox.cpp */, - FFFDc00330887fd8c0033088 /* src/mesh/GuBV32.cpp */, - FFFDc00330f07fd8c00330f0 /* src/mesh/GuBV32Build.cpp */, - FFFDc00331587fd8c0033158 /* src/mesh/GuBV4.cpp */, - FFFDc00331c07fd8c00331c0 /* src/mesh/GuBV4Build.cpp */, - FFFDc00332287fd8c0033228 /* src/mesh/GuBV4_AABBSweep.cpp */, - FFFDc00332907fd8c0033290 /* src/mesh/GuBV4_BoxOverlap.cpp */, - FFFDc00332f87fd8c00332f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, - FFFDc00333607fd8c0033360 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, - FFFDc00333c87fd8c00333c8 /* src/mesh/GuBV4_OBBSweep.cpp */, - FFFDc00334307fd8c0033430 /* src/mesh/GuBV4_Raycast.cpp */, - FFFDc00334987fd8c0033498 /* src/mesh/GuBV4_SphereOverlap.cpp */, - FFFDc00335007fd8c0033500 /* src/mesh/GuBV4_SphereSweep.cpp */, - FFFDc00335687fd8c0033568 /* src/mesh/GuMeshQuery.cpp */, - FFFDc00335d07fd8c00335d0 /* src/mesh/GuMidphaseBV4.cpp */, - FFFDc00336387fd8c0033638 /* src/mesh/GuMidphaseRTree.cpp */, - FFFDc00336a07fd8c00336a0 /* src/mesh/GuOverlapTestsMesh.cpp */, - FFFDc00337087fd8c0033708 /* src/mesh/GuRTree.cpp */, - FFFDc00337707fd8c0033770 /* src/mesh/GuRTreeQueries.cpp */, - FFFDc00337d87fd8c00337d8 /* src/mesh/GuSweepsMesh.cpp */, - FFFDc00338407fd8c0033840 /* src/mesh/GuTriangleMesh.cpp */, - FFFDc00338a87fd8c00338a8 /* src/mesh/GuTriangleMeshBV4.cpp */, - FFFDc00339107fd8c0033910 /* src/mesh/GuTriangleMeshRTree.cpp */, - FFFDc00339787fd8c0033978 /* src/hf/GuHeightField.cpp */, - FFFDc00339e07fd8c00339e0 /* src/hf/GuHeightFieldUtil.cpp */, - FFFDc0033a487fd8c0033a48 /* src/hf/GuOverlapTestsHF.cpp */, - FFFDc0033ab07fd8c0033ab0 /* src/hf/GuSweepsHF.cpp */, - FFFDc0033b187fd8c0033b18 /* src/pcm/GuPCMContactBoxBox.cpp */, - FFFDc0033b807fd8c0033b80 /* src/pcm/GuPCMContactBoxConvex.cpp */, - FFFDc0033be87fd8c0033be8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, - FFFDc0033c507fd8c0033c50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, - FFFDc0033cb87fd8c0033cb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, - FFFDc0033d207fd8c0033d20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, - FFFDc0033d887fd8c0033d88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, - FFFDc0033df07fd8c0033df0 /* src/pcm/GuPCMContactConvexCommon.cpp */, - FFFDc0033e587fd8c0033e58 /* src/pcm/GuPCMContactConvexConvex.cpp */, - FFFDc0033ec07fd8c0033ec0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, - FFFDc0033f287fd8c0033f28 /* src/pcm/GuPCMContactConvexMesh.cpp */, - FFFDc0033f907fd8c0033f90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, - FFFDc0033ff87fd8c0033ff8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, - FFFDc00340607fd8c0034060 /* src/pcm/GuPCMContactPlaneBox.cpp */, - FFFDc00340c87fd8c00340c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, - FFFDc00341307fd8c0034130 /* src/pcm/GuPCMContactPlaneConvex.cpp */, - FFFDc00341987fd8c0034198 /* src/pcm/GuPCMContactSphereBox.cpp */, - FFFDc00342007fd8c0034200 /* src/pcm/GuPCMContactSphereCapsule.cpp */, - FFFDc00342687fd8c0034268 /* src/pcm/GuPCMContactSphereConvex.cpp */, - FFFDc00342d07fd8c00342d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, - FFFDc00343387fd8c0034338 /* src/pcm/GuPCMContactSphereMesh.cpp */, - FFFDc00343a07fd8c00343a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, - FFFDc00344087fd8c0034408 /* src/pcm/GuPCMContactSphereSphere.cpp */, - FFFDc00344707fd8c0034470 /* src/pcm/GuPCMShapeConvex.cpp */, - FFFDc00344d87fd8c00344d8 /* src/pcm/GuPCMTriangleContactGen.cpp */, - FFFDc00345407fd8c0034540 /* src/pcm/GuPersistentContactManifold.cpp */, - FFFDc00345a87fd8c00345a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, - FFFDc00346107fd8c0034610 /* src/ccd/GuCCDSweepPrimitives.cpp */, + FFFD110182007fe811018200 /* headers/GuAxes.h */, + FFFD110182687fe811018268 /* headers/GuBox.h */, + FFFD110182d07fe8110182d0 /* headers/GuDistanceSegmentBox.h */, + FFFD110183387fe811018338 /* headers/GuDistanceSegmentSegment.h */, + FFFD110183a07fe8110183a0 /* headers/GuIntersectionBoxBox.h */, + FFFD110184087fe811018408 /* headers/GuIntersectionTriangleBox.h */, + FFFD110184707fe811018470 /* headers/GuRaycastTests.h */, + FFFD110184d87fe8110184d8 /* headers/GuSIMDHelpers.h */, + FFFD110185407fe811018540 /* headers/GuSegment.h */, + FFFD110185a87fe8110185a8 /* ../../Include/GeomUtils */, + FFFD110186107fe811018610 /* src/GuBounds.h */, + FFFD110186787fe811018678 /* src/GuCapsule.h */, + FFFD110186e07fe8110186e0 /* src/GuCenterExtents.h */, + FFFD110187487fe811018748 /* src/GuGeometryUnion.h */, + FFFD110187b07fe8110187b0 /* src/GuInternal.h */, + FFFD110188187fe811018818 /* src/GuMTD.h */, + FFFD110188807fe811018880 /* src/GuMeshFactory.h */, + FFFD110188e87fe8110188e8 /* src/GuOverlapTests.h */, + FFFD110189507fe811018950 /* src/GuSerialize.h */, + FFFD110189b87fe8110189b8 /* src/GuSphere.h */, + FFFD11018a207fe811018a20 /* src/GuSweepMTD.h */, + FFFD11018a887fe811018a88 /* src/GuSweepSharedTests.h */, + FFFD11018af07fe811018af0 /* src/GuSweepTests.h */, + FFFD11018b587fe811018b58 /* src/contact/GuContactMethodImpl.h */, + FFFD11018bc07fe811018bc0 /* src/contact/GuContactPolygonPolygon.h */, + FFFD11018c287fe811018c28 /* src/contact/GuFeatureCode.h */, + FFFD11018c907fe811018c90 /* src/contact/GuLegacyTraceLineCallback.h */, + FFFD11018cf87fe811018cf8 /* src/common/GuBarycentricCoordinates.h */, + FFFD11018d607fe811018d60 /* src/common/GuBoxConversion.h */, + FFFD11018dc87fe811018dc8 /* src/common/GuEdgeCache.h */, + FFFD11018e307fe811018e30 /* src/common/GuEdgeListData.h */, + FFFD11018e987fe811018e98 /* src/common/GuSeparatingAxes.h */, + FFFD11018f007fe811018f00 /* src/convex/GuBigConvexData.h */, + FFFD11018f687fe811018f68 /* src/convex/GuBigConvexData2.h */, + FFFD11018fd07fe811018fd0 /* src/convex/GuConvexEdgeFlags.h */, + FFFD110190387fe811019038 /* src/convex/GuConvexHelper.h */, + FFFD110190a07fe8110190a0 /* src/convex/GuConvexMesh.h */, + FFFD110191087fe811019108 /* src/convex/GuConvexMeshData.h */, + FFFD110191707fe811019170 /* src/convex/GuConvexSupportTable.h */, + FFFD110191d87fe8110191d8 /* src/convex/GuConvexUtilsInternal.h */, + FFFD110192407fe811019240 /* src/convex/GuCubeIndex.h */, + FFFD110192a87fe8110192a8 /* src/convex/GuHillClimbing.h */, + FFFD110193107fe811019310 /* src/convex/GuShapeConvex.h */, + FFFD110193787fe811019378 /* src/distance/GuDistancePointBox.h */, + FFFD110193e07fe8110193e0 /* src/distance/GuDistancePointSegment.h */, + FFFD110194487fe811019448 /* src/distance/GuDistancePointTriangle.h */, + FFFD110194b07fe8110194b0 /* src/distance/GuDistancePointTriangleSIMD.h */, + FFFD110195187fe811019518 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, + FFFD110195807fe811019580 /* src/distance/GuDistanceSegmentTriangle.h */, + FFFD110195e87fe8110195e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, + FFFD110196507fe811019650 /* src/sweep/GuSweepBoxBox.h */, + FFFD110196b87fe8110196b8 /* src/sweep/GuSweepBoxSphere.h */, + FFFD110197207fe811019720 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, + FFFD110197887fe811019788 /* src/sweep/GuSweepBoxTriangle_SAT.h */, + FFFD110197f07fe8110197f0 /* src/sweep/GuSweepCapsuleBox.h */, + FFFD110198587fe811019858 /* src/sweep/GuSweepCapsuleCapsule.h */, + FFFD110198c07fe8110198c0 /* src/sweep/GuSweepCapsuleTriangle.h */, + FFFD110199287fe811019928 /* src/sweep/GuSweepSphereCapsule.h */, + FFFD110199907fe811019990 /* src/sweep/GuSweepSphereSphere.h */, + FFFD110199f87fe8110199f8 /* src/sweep/GuSweepSphereTriangle.h */, + FFFD11019a607fe811019a60 /* src/sweep/GuSweepTriangleUtils.h */, + FFFD11019ac87fe811019ac8 /* src/gjk/GuEPA.h */, + FFFD11019b307fe811019b30 /* src/gjk/GuEPAFacet.h */, + FFFD11019b987fe811019b98 /* src/gjk/GuGJK.h */, + FFFD11019c007fe811019c00 /* src/gjk/GuGJKPenetration.h */, + FFFD11019c687fe811019c68 /* src/gjk/GuGJKRaycast.h */, + FFFD11019cd07fe811019cd0 /* src/gjk/GuGJKSimplex.h */, + FFFD11019d387fe811019d38 /* src/gjk/GuGJKTest.h */, + FFFD11019da07fe811019da0 /* src/gjk/GuGJKType.h */, + FFFD11019e087fe811019e08 /* src/gjk/GuGJKUtil.h */, + FFFD11019e707fe811019e70 /* src/gjk/GuVecBox.h */, + FFFD11019ed87fe811019ed8 /* src/gjk/GuVecCapsule.h */, + FFFD11019f407fe811019f40 /* src/gjk/GuVecConvex.h */, + FFFD11019fa87fe811019fa8 /* src/gjk/GuVecConvexHull.h */, + FFFD1101a0107fe81101a010 /* src/gjk/GuVecConvexHullNoScale.h */, + FFFD1101a0787fe81101a078 /* src/gjk/GuVecPlane.h */, + FFFD1101a0e07fe81101a0e0 /* src/gjk/GuVecShrunkBox.h */, + FFFD1101a1487fe81101a148 /* src/gjk/GuVecShrunkConvexHull.h */, + FFFD1101a1b07fe81101a1b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, + FFFD1101a2187fe81101a218 /* src/gjk/GuVecSphere.h */, + FFFD1101a2807fe81101a280 /* src/gjk/GuVecTriangle.h */, + FFFD1101a2e87fe81101a2e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, + FFFD1101a3507fe81101a350 /* src/intersection/GuIntersectionEdgeEdge.h */, + FFFD1101a3b87fe81101a3b8 /* src/intersection/GuIntersectionRay.h */, + FFFD1101a4207fe81101a420 /* src/intersection/GuIntersectionRayBox.h */, + FFFD1101a4887fe81101a488 /* src/intersection/GuIntersectionRayBoxSIMD.h */, + FFFD1101a4f07fe81101a4f0 /* src/intersection/GuIntersectionRayCapsule.h */, + FFFD1101a5587fe81101a558 /* src/intersection/GuIntersectionRayPlane.h */, + FFFD1101a5c07fe81101a5c0 /* src/intersection/GuIntersectionRaySphere.h */, + FFFD1101a6287fe81101a628 /* src/intersection/GuIntersectionRayTriangle.h */, + FFFD1101a6907fe81101a690 /* src/intersection/GuIntersectionSphereBox.h */, + FFFD1101a6f87fe81101a6f8 /* src/mesh/GuBV32.h */, + FFFD1101a7607fe81101a760 /* src/mesh/GuBV32Build.h */, + FFFD1101a7c87fe81101a7c8 /* src/mesh/GuBV4.h */, + FFFD1101a8307fe81101a830 /* src/mesh/GuBV4Build.h */, + FFFD1101a8987fe81101a898 /* src/mesh/GuBV4Settings.h */, + FFFD1101a9007fe81101a900 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, + FFFD1101a9687fe81101a968 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, + FFFD1101a9d07fe81101a9d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, + FFFD1101aa387fe81101aa38 /* src/mesh/GuBV4_BoxSweep_Internal.h */, + FFFD1101aaa07fe81101aaa0 /* src/mesh/GuBV4_BoxSweep_Params.h */, + FFFD1101ab087fe81101ab08 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, + FFFD1101ab707fe81101ab70 /* src/mesh/GuBV4_Common.h */, + FFFD1101abd87fe81101abd8 /* src/mesh/GuBV4_Internal.h */, + FFFD1101ac407fe81101ac40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, + FFFD1101aca87fe81101aca8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, + FFFD1101ad107fe81101ad10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, + FFFD1101ad787fe81101ad78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, + FFFD1101ade07fe81101ade0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, + FFFD1101ae487fe81101ae48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, + FFFD1101aeb07fe81101aeb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, + FFFD1101af187fe81101af18 /* src/mesh/GuBV4_Slabs.h */, + FFFD1101af807fe81101af80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, + FFFD1101afe87fe81101afe8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, + FFFD1101b0507fe81101b050 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, + FFFD1101b0b87fe81101b0b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, + FFFD1101b1207fe81101b120 /* src/mesh/GuBVConstants.h */, + FFFD1101b1887fe81101b188 /* src/mesh/GuMeshData.h */, + FFFD1101b1f07fe81101b1f0 /* src/mesh/GuMidphaseInterface.h */, + FFFD1101b2587fe81101b258 /* src/mesh/GuRTree.h */, + FFFD1101b2c07fe81101b2c0 /* src/mesh/GuSweepConvexTri.h */, + FFFD1101b3287fe81101b328 /* src/mesh/GuSweepMesh.h */, + FFFD1101b3907fe81101b390 /* src/mesh/GuTriangle32.h */, + FFFD1101b3f87fe81101b3f8 /* src/mesh/GuTriangleCache.h */, + FFFD1101b4607fe81101b460 /* src/mesh/GuTriangleMesh.h */, + FFFD1101b4c87fe81101b4c8 /* src/mesh/GuTriangleMeshBV4.h */, + FFFD1101b5307fe81101b530 /* src/mesh/GuTriangleMeshRTree.h */, + FFFD1101b5987fe81101b598 /* src/mesh/GuTriangleVertexPointers.h */, + FFFD1101b6007fe81101b600 /* src/hf/GuEntityReport.h */, + FFFD1101b6687fe81101b668 /* src/hf/GuHeightField.h */, + FFFD1101b6d07fe81101b6d0 /* src/hf/GuHeightFieldData.h */, + FFFD1101b7387fe81101b738 /* src/hf/GuHeightFieldUtil.h */, + FFFD1101b7a07fe81101b7a0 /* src/pcm/GuPCMContactConvexCommon.h */, + FFFD1101b8087fe81101b808 /* src/pcm/GuPCMContactGen.h */, + FFFD1101b8707fe81101b870 /* src/pcm/GuPCMContactGenUtil.h */, + FFFD1101b8d87fe81101b8d8 /* src/pcm/GuPCMContactMeshCallback.h */, + FFFD1101b9407fe81101b940 /* src/pcm/GuPCMShapeConvex.h */, + FFFD1101b9a87fe81101b9a8 /* src/pcm/GuPCMTriangleContactGen.h */, + FFFD1101ba107fe81101ba10 /* src/pcm/GuPersistentContactManifold.h */, + FFFD1101ba787fe81101ba78 /* src/ccd/GuCCDSweepConvexMesh.h */, + FFFD1101bae07fe81101bae0 /* src/GuBounds.cpp */, + FFFD1101bb487fe81101bb48 /* src/GuBox.cpp */, + FFFD1101bbb07fe81101bbb0 /* src/GuCCTSweepTests.cpp */, + FFFD1101bc187fe81101bc18 /* src/GuCapsule.cpp */, + FFFD1101bc807fe81101bc80 /* src/GuGeometryQuery.cpp */, + FFFD1101bce87fe81101bce8 /* src/GuGeometryUnion.cpp */, + FFFD1101bd507fe81101bd50 /* src/GuInternal.cpp */, + FFFD1101bdb87fe81101bdb8 /* src/GuMTD.cpp */, + FFFD1101be207fe81101be20 /* src/GuMeshFactory.cpp */, + FFFD1101be887fe81101be88 /* src/GuMetaData.cpp */, + FFFD1101bef07fe81101bef0 /* src/GuOverlapTests.cpp */, + FFFD1101bf587fe81101bf58 /* src/GuRaycastTests.cpp */, + FFFD1101bfc07fe81101bfc0 /* src/GuSerialize.cpp */, + FFFD1101c0287fe81101c028 /* src/GuSweepMTD.cpp */, + FFFD1101c0907fe81101c090 /* src/GuSweepSharedTests.cpp */, + FFFD1101c0f87fe81101c0f8 /* src/GuSweepTests.cpp */, + FFFD1101c1607fe81101c160 /* src/contact/GuContactBoxBox.cpp */, + FFFD1101c1c87fe81101c1c8 /* src/contact/GuContactCapsuleBox.cpp */, + FFFD1101c2307fe81101c230 /* src/contact/GuContactCapsuleCapsule.cpp */, + FFFD1101c2987fe81101c298 /* src/contact/GuContactCapsuleConvex.cpp */, + FFFD1101c3007fe81101c300 /* src/contact/GuContactCapsuleMesh.cpp */, + FFFD1101c3687fe81101c368 /* src/contact/GuContactConvexConvex.cpp */, + FFFD1101c3d07fe81101c3d0 /* src/contact/GuContactConvexMesh.cpp */, + FFFD1101c4387fe81101c438 /* src/contact/GuContactPlaneBox.cpp */, + FFFD1101c4a07fe81101c4a0 /* src/contact/GuContactPlaneCapsule.cpp */, + FFFD1101c5087fe81101c508 /* src/contact/GuContactPlaneConvex.cpp */, + FFFD1101c5707fe81101c570 /* src/contact/GuContactPolygonPolygon.cpp */, + FFFD1101c5d87fe81101c5d8 /* src/contact/GuContactSphereBox.cpp */, + FFFD1101c6407fe81101c640 /* src/contact/GuContactSphereCapsule.cpp */, + FFFD1101c6a87fe81101c6a8 /* src/contact/GuContactSphereMesh.cpp */, + FFFD1101c7107fe81101c710 /* src/contact/GuContactSpherePlane.cpp */, + FFFD1101c7787fe81101c778 /* src/contact/GuContactSphereSphere.cpp */, + FFFD1101c7e07fe81101c7e0 /* src/contact/GuFeatureCode.cpp */, + FFFD1101c8487fe81101c848 /* src/contact/GuLegacyContactBoxHeightField.cpp */, + FFFD1101c8b07fe81101c8b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, + FFFD1101c9187fe81101c918 /* src/contact/GuLegacyContactConvexHeightField.cpp */, + FFFD1101c9807fe81101c980 /* src/contact/GuLegacyContactSphereHeightField.cpp */, + FFFD1101c9e87fe81101c9e8 /* src/common/GuBarycentricCoordinates.cpp */, + FFFD1101ca507fe81101ca50 /* src/common/GuSeparatingAxes.cpp */, + FFFD1101cab87fe81101cab8 /* src/convex/GuBigConvexData.cpp */, + FFFD1101cb207fe81101cb20 /* src/convex/GuConvexHelper.cpp */, + FFFD1101cb887fe81101cb88 /* src/convex/GuConvexMesh.cpp */, + FFFD1101cbf07fe81101cbf0 /* src/convex/GuConvexSupportTable.cpp */, + FFFD1101cc587fe81101cc58 /* src/convex/GuConvexUtilsInternal.cpp */, + FFFD1101ccc07fe81101ccc0 /* src/convex/GuHillClimbing.cpp */, + FFFD1101cd287fe81101cd28 /* src/convex/GuShapeConvex.cpp */, + FFFD1101cd907fe81101cd90 /* src/distance/GuDistancePointBox.cpp */, + FFFD1101cdf87fe81101cdf8 /* src/distance/GuDistancePointTriangle.cpp */, + FFFD1101ce607fe81101ce60 /* src/distance/GuDistanceSegmentBox.cpp */, + FFFD1101cec87fe81101cec8 /* src/distance/GuDistanceSegmentSegment.cpp */, + FFFD1101cf307fe81101cf30 /* src/distance/GuDistanceSegmentTriangle.cpp */, + FFFD1101cf987fe81101cf98 /* src/sweep/GuSweepBoxBox.cpp */, + FFFD1101d0007fe81101d000 /* src/sweep/GuSweepBoxSphere.cpp */, + FFFD1101d0687fe81101d068 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, + FFFD1101d0d07fe81101d0d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, + FFFD1101d1387fe81101d138 /* src/sweep/GuSweepCapsuleBox.cpp */, + FFFD1101d1a07fe81101d1a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, + FFFD1101d2087fe81101d208 /* src/sweep/GuSweepCapsuleTriangle.cpp */, + FFFD1101d2707fe81101d270 /* src/sweep/GuSweepSphereCapsule.cpp */, + FFFD1101d2d87fe81101d2d8 /* src/sweep/GuSweepSphereSphere.cpp */, + FFFD1101d3407fe81101d340 /* src/sweep/GuSweepSphereTriangle.cpp */, + FFFD1101d3a87fe81101d3a8 /* src/sweep/GuSweepTriangleUtils.cpp */, + FFFD1101d4107fe81101d410 /* src/gjk/GuEPA.cpp */, + FFFD1101d4787fe81101d478 /* src/gjk/GuGJKSimplex.cpp */, + FFFD1101d4e07fe81101d4e0 /* src/gjk/GuGJKTest.cpp */, + FFFD1101d5487fe81101d548 /* src/intersection/GuIntersectionBoxBox.cpp */, + FFFD1101d5b07fe81101d5b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, + FFFD1101d6187fe81101d618 /* src/intersection/GuIntersectionEdgeEdge.cpp */, + FFFD1101d6807fe81101d680 /* src/intersection/GuIntersectionRayBox.cpp */, + FFFD1101d6e87fe81101d6e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, + FFFD1101d7507fe81101d750 /* src/intersection/GuIntersectionRaySphere.cpp */, + FFFD1101d7b87fe81101d7b8 /* src/intersection/GuIntersectionSphereBox.cpp */, + FFFD1101d8207fe81101d820 /* src/intersection/GuIntersectionTriangleBox.cpp */, + FFFD1101d8887fe81101d888 /* src/mesh/GuBV32.cpp */, + FFFD1101d8f07fe81101d8f0 /* src/mesh/GuBV32Build.cpp */, + FFFD1101d9587fe81101d958 /* src/mesh/GuBV4.cpp */, + FFFD1101d9c07fe81101d9c0 /* src/mesh/GuBV4Build.cpp */, + FFFD1101da287fe81101da28 /* src/mesh/GuBV4_AABBSweep.cpp */, + FFFD1101da907fe81101da90 /* src/mesh/GuBV4_BoxOverlap.cpp */, + FFFD1101daf87fe81101daf8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, + FFFD1101db607fe81101db60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, + FFFD1101dbc87fe81101dbc8 /* src/mesh/GuBV4_OBBSweep.cpp */, + FFFD1101dc307fe81101dc30 /* src/mesh/GuBV4_Raycast.cpp */, + FFFD1101dc987fe81101dc98 /* src/mesh/GuBV4_SphereOverlap.cpp */, + FFFD1101dd007fe81101dd00 /* src/mesh/GuBV4_SphereSweep.cpp */, + FFFD1101dd687fe81101dd68 /* src/mesh/GuMeshQuery.cpp */, + FFFD1101ddd07fe81101ddd0 /* src/mesh/GuMidphaseBV4.cpp */, + FFFD1101de387fe81101de38 /* src/mesh/GuMidphaseRTree.cpp */, + FFFD1101dea07fe81101dea0 /* src/mesh/GuOverlapTestsMesh.cpp */, + FFFD1101df087fe81101df08 /* src/mesh/GuRTree.cpp */, + FFFD1101df707fe81101df70 /* src/mesh/GuRTreeQueries.cpp */, + FFFD1101dfd87fe81101dfd8 /* src/mesh/GuSweepsMesh.cpp */, + FFFD1101e0407fe81101e040 /* src/mesh/GuTriangleMesh.cpp */, + FFFD1101e0a87fe81101e0a8 /* src/mesh/GuTriangleMeshBV4.cpp */, + FFFD1101e1107fe81101e110 /* src/mesh/GuTriangleMeshRTree.cpp */, + FFFD1101e1787fe81101e178 /* src/hf/GuHeightField.cpp */, + FFFD1101e1e07fe81101e1e0 /* src/hf/GuHeightFieldUtil.cpp */, + FFFD1101e2487fe81101e248 /* src/hf/GuOverlapTestsHF.cpp */, + FFFD1101e2b07fe81101e2b0 /* src/hf/GuSweepsHF.cpp */, + FFFD1101e3187fe81101e318 /* src/pcm/GuPCMContactBoxBox.cpp */, + FFFD1101e3807fe81101e380 /* src/pcm/GuPCMContactBoxConvex.cpp */, + FFFD1101e3e87fe81101e3e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, + FFFD1101e4507fe81101e450 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, + FFFD1101e4b87fe81101e4b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, + FFFD1101e5207fe81101e520 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, + FFFD1101e5887fe81101e588 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, + FFFD1101e5f07fe81101e5f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, + FFFD1101e6587fe81101e658 /* src/pcm/GuPCMContactConvexConvex.cpp */, + FFFD1101e6c07fe81101e6c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, + FFFD1101e7287fe81101e728 /* src/pcm/GuPCMContactConvexMesh.cpp */, + FFFD1101e7907fe81101e790 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, + FFFD1101e7f87fe81101e7f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, + FFFD1101e8607fe81101e860 /* src/pcm/GuPCMContactPlaneBox.cpp */, + FFFD1101e8c87fe81101e8c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, + FFFD1101e9307fe81101e930 /* src/pcm/GuPCMContactPlaneConvex.cpp */, + FFFD1101e9987fe81101e998 /* src/pcm/GuPCMContactSphereBox.cpp */, + FFFD1101ea007fe81101ea00 /* src/pcm/GuPCMContactSphereCapsule.cpp */, + FFFD1101ea687fe81101ea68 /* src/pcm/GuPCMContactSphereConvex.cpp */, + FFFD1101ead07fe81101ead0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, + FFFD1101eb387fe81101eb38 /* src/pcm/GuPCMContactSphereMesh.cpp */, + FFFD1101eba07fe81101eba0 /* src/pcm/GuPCMContactSpherePlane.cpp */, + FFFD1101ec087fe81101ec08 /* src/pcm/GuPCMContactSphereSphere.cpp */, + FFFD1101ec707fe81101ec70 /* src/pcm/GuPCMShapeConvex.cpp */, + FFFD1101ecd87fe81101ecd8 /* src/pcm/GuPCMTriangleContactGen.cpp */, + FFFD1101ed407fe81101ed40 /* src/pcm/GuPersistentContactManifold.cpp */, + FFFD1101eda87fe81101eda8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, + FFFD1101ee107fe81101ee10 /* src/ccd/GuCCDSweepPrimitives.cpp */, ); name = "geomutils"; sourceTree = SOURCE_ROOT; }; - FFFBc141af507fd8c141af50 /* PxFoundation */ = { + FFFB121657c07fe8121657c0 /* PxFoundation */ = { isa = PBXGroup; children = ( - FFFBc141c4407fd8c141c440 /* include */, - FFFBc141c4687fd8c141c468 /* src */, + FFFB121662f07fe8121662f0 /* include */, + FFFB121663187fe812166318 /* src */, ); name = "PxFoundation"; sourceTree = "<group>"; }; - FFFBc141c4407fd8c141c440 /* include */ = { + FFFB121662f07fe8121662f0 /* include */ = { isa = PBXGroup; children = ( - FFFDc400a8007fd8c400a800 /* Px.h */, - FFFDc400a8687fd8c400a868 /* PxAllocatorCallback.h */, - FFFDc400a8d07fd8c400a8d0 /* PxAssert.h */, - FFFDc400a9387fd8c400a938 /* PxBitAndData.h */, - FFFDc400a9a07fd8c400a9a0 /* PxBounds3.h */, - FFFDc400aa087fd8c400aa08 /* PxErrorCallback.h */, - FFFDc400aa707fd8c400aa70 /* PxErrors.h */, - FFFDc400aad87fd8c400aad8 /* PxFlags.h */, - FFFDc400ab407fd8c400ab40 /* PxFoundation.h */, - FFFDc400aba87fd8c400aba8 /* PxFoundationVersion.h */, - FFFDc400ac107fd8c400ac10 /* PxIO.h */, - FFFDc400ac787fd8c400ac78 /* PxIntrinsics.h */, - FFFDc400ace07fd8c400ace0 /* PxMat33.h */, - FFFDc400ad487fd8c400ad48 /* PxMat44.h */, - FFFDc400adb07fd8c400adb0 /* PxMath.h */, - FFFDc400ae187fd8c400ae18 /* PxMathUtils.h */, - FFFDc400ae807fd8c400ae80 /* PxMemory.h */, - FFFDc400aee87fd8c400aee8 /* PxPlane.h */, - FFFDc400af507fd8c400af50 /* PxPreprocessor.h */, - FFFDc400afb87fd8c400afb8 /* PxProfiler.h */, - FFFDc400b0207fd8c400b020 /* PxQuat.h */, - FFFDc400b0887fd8c400b088 /* PxSimpleTypes.h */, - FFFDc400b0f07fd8c400b0f0 /* PxStrideIterator.h */, - FFFDc400b1587fd8c400b158 /* PxTransform.h */, - FFFDc400b1c07fd8c400b1c0 /* PxUnionCast.h */, - FFFDc400b2287fd8c400b228 /* PxVec2.h */, - FFFDc400b2907fd8c400b290 /* PxVec3.h */, - FFFDc400b2f87fd8c400b2f8 /* PxVec4.h */, - FFFDc400b3607fd8c400b360 /* unix/PxUnixIntrinsics.h */, + FFFD119688007fe811968800 /* Px.h */, + FFFD119688687fe811968868 /* PxAllocatorCallback.h */, + FFFD119688d07fe8119688d0 /* PxAssert.h */, + FFFD119689387fe811968938 /* PxBitAndData.h */, + FFFD119689a07fe8119689a0 /* PxBounds3.h */, + FFFD11968a087fe811968a08 /* PxErrorCallback.h */, + FFFD11968a707fe811968a70 /* PxErrors.h */, + FFFD11968ad87fe811968ad8 /* PxFlags.h */, + FFFD11968b407fe811968b40 /* PxFoundation.h */, + FFFD11968ba87fe811968ba8 /* PxFoundationVersion.h */, + FFFD11968c107fe811968c10 /* PxIO.h */, + FFFD11968c787fe811968c78 /* PxIntrinsics.h */, + FFFD11968ce07fe811968ce0 /* PxMat33.h */, + FFFD11968d487fe811968d48 /* PxMat44.h */, + FFFD11968db07fe811968db0 /* PxMath.h */, + FFFD11968e187fe811968e18 /* PxMathUtils.h */, + FFFD11968e807fe811968e80 /* PxMemory.h */, + FFFD11968ee87fe811968ee8 /* PxPlane.h */, + FFFD11968f507fe811968f50 /* PxPreprocessor.h */, + FFFD11968fb87fe811968fb8 /* PxProfiler.h */, + FFFD119690207fe811969020 /* PxQuat.h */, + FFFD119690887fe811969088 /* PxSimpleTypes.h */, + FFFD119690f07fe8119690f0 /* PxStrideIterator.h */, + FFFD119691587fe811969158 /* PxTransform.h */, + FFFD119691c07fe8119691c0 /* PxUnionCast.h */, + FFFD119692287fe811969228 /* PxVec2.h */, + FFFD119692907fe811969290 /* PxVec3.h */, + FFFD119692f87fe8119692f8 /* PxVec4.h */, + FFFD119693607fe811969360 /* unix/PxUnixIntrinsics.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc141c4687fd8c141c468 /* src */ = { + FFFB121663187fe812166318 /* src */ = { isa = PBXGroup; children = ( - FFFDc3004e007fd8c3004e00 /* include/Ps.h */, - FFFDc3004e687fd8c3004e68 /* include/PsAlignedMalloc.h */, - FFFDc3004ed07fd8c3004ed0 /* include/PsAlloca.h */, - FFFDc3004f387fd8c3004f38 /* include/PsAllocator.h */, - FFFDc3004fa07fd8c3004fa0 /* include/PsAoS.h */, - FFFDc30050087fd8c3005008 /* include/PsArray.h */, - FFFDc30050707fd8c3005070 /* include/PsAtomic.h */, - FFFDc30050d87fd8c30050d8 /* include/PsBasicTemplates.h */, - FFFDc30051407fd8c3005140 /* include/PsBitUtils.h */, - FFFDc30051a87fd8c30051a8 /* include/PsBroadcast.h */, - FFFDc30052107fd8c3005210 /* include/PsCpu.h */, - FFFDc30052787fd8c3005278 /* include/PsFPU.h */, - FFFDc30052e07fd8c30052e0 /* include/PsFoundation.h */, - FFFDc30053487fd8c3005348 /* include/PsHash.h */, - FFFDc30053b07fd8c30053b0 /* include/PsHashInternals.h */, - FFFDc30054187fd8c3005418 /* include/PsHashMap.h */, - FFFDc30054807fd8c3005480 /* include/PsHashSet.h */, - FFFDc30054e87fd8c30054e8 /* include/PsInlineAllocator.h */, - FFFDc30055507fd8c3005550 /* include/PsInlineAoS.h */, - FFFDc30055b87fd8c30055b8 /* include/PsInlineArray.h */, - FFFDc30056207fd8c3005620 /* include/PsIntrinsics.h */, - FFFDc30056887fd8c3005688 /* include/PsMathUtils.h */, - FFFDc30056f07fd8c30056f0 /* include/PsMutex.h */, - FFFDc30057587fd8c3005758 /* include/PsPool.h */, - FFFDc30057c07fd8c30057c0 /* include/PsSList.h */, - FFFDc30058287fd8c3005828 /* include/PsSocket.h */, - FFFDc30058907fd8c3005890 /* include/PsSort.h */, - FFFDc30058f87fd8c30058f8 /* include/PsSortInternals.h */, - FFFDc30059607fd8c3005960 /* include/PsString.h */, - FFFDc30059c87fd8c30059c8 /* include/PsSync.h */, - FFFDc3005a307fd8c3005a30 /* include/PsTempAllocator.h */, - FFFDc3005a987fd8c3005a98 /* include/PsThread.h */, - FFFDc3005b007fd8c3005b00 /* include/PsTime.h */, - FFFDc3005b687fd8c3005b68 /* include/PsUserAllocated.h */, - FFFDc3005bd07fd8c3005bd0 /* include/PsUtilities.h */, - FFFDc3005c387fd8c3005c38 /* include/PsVecMath.h */, - FFFDc3005ca07fd8c3005ca0 /* include/PsVecMathAoSScalar.h */, - FFFDc3005d087fd8c3005d08 /* include/PsVecMathAoSScalarInline.h */, - FFFDc3005d707fd8c3005d70 /* include/PsVecMathSSE.h */, - FFFDc3005dd87fd8c3005dd8 /* include/PsVecMathUtilities.h */, - FFFDc3005e407fd8c3005e40 /* include/PsVecQuat.h */, - FFFDc3005ea87fd8c3005ea8 /* include/PsVecTransform.h */, - FFFDc3005f107fd8c3005f10 /* include/unix/PsUnixAoS.h */, - FFFDc3005f787fd8c3005f78 /* include/unix/PsUnixFPU.h */, - FFFDc3005fe07fd8c3005fe0 /* include/unix/PsUnixInlineAoS.h */, - FFFDc30060487fd8c3006048 /* include/unix/PsUnixIntrinsics.h */, - FFFDc30060b07fd8c30060b0 /* include/unix/PsUnixTrigConstants.h */, - FFFDc30061187fd8c3006118 /* src/PsAllocator.cpp */, - FFFDc30061807fd8c3006180 /* src/PsAssert.cpp */, - FFFDc30061e87fd8c30061e8 /* src/PsFoundation.cpp */, - FFFDc30062507fd8c3006250 /* src/PsMathUtils.cpp */, - FFFDc30062b87fd8c30062b8 /* src/PsString.cpp */, - FFFDc30063207fd8c3006320 /* src/PsTempAllocator.cpp */, - FFFDc30063887fd8c3006388 /* src/PsUtilities.cpp */, - FFFDc30063f07fd8c30063f0 /* src/unix/PsUnixAtomic.cpp */, - FFFDc30064587fd8c3006458 /* src/unix/PsUnixCpu.cpp */, - FFFDc30064c07fd8c30064c0 /* src/unix/PsUnixFPU.cpp */, - FFFDc30065287fd8c3006528 /* src/unix/PsUnixMutex.cpp */, - FFFDc30065907fd8c3006590 /* src/unix/PsUnixPrintString.cpp */, - FFFDc30065f87fd8c30065f8 /* src/unix/PsUnixSList.cpp */, - FFFDc30066607fd8c3006660 /* src/unix/PsUnixSocket.cpp */, - FFFDc30066c87fd8c30066c8 /* src/unix/PsUnixSync.cpp */, - FFFDc30067307fd8c3006730 /* src/unix/PsUnixThread.cpp */, - FFFDc30067987fd8c3006798 /* src/unix/PsUnixTime.cpp */, + FFFD11975c007fe811975c00 /* include/Ps.h */, + FFFD11975c687fe811975c68 /* include/PsAlignedMalloc.h */, + FFFD11975cd07fe811975cd0 /* include/PsAlloca.h */, + FFFD11975d387fe811975d38 /* include/PsAllocator.h */, + FFFD11975da07fe811975da0 /* include/PsAoS.h */, + FFFD11975e087fe811975e08 /* include/PsArray.h */, + FFFD11975e707fe811975e70 /* include/PsAtomic.h */, + FFFD11975ed87fe811975ed8 /* include/PsBasicTemplates.h */, + FFFD11975f407fe811975f40 /* include/PsBitUtils.h */, + FFFD11975fa87fe811975fa8 /* include/PsBroadcast.h */, + FFFD119760107fe811976010 /* include/PsCpu.h */, + FFFD119760787fe811976078 /* include/PsFPU.h */, + FFFD119760e07fe8119760e0 /* include/PsFoundation.h */, + FFFD119761487fe811976148 /* include/PsHash.h */, + FFFD119761b07fe8119761b0 /* include/PsHashInternals.h */, + FFFD119762187fe811976218 /* include/PsHashMap.h */, + FFFD119762807fe811976280 /* include/PsHashSet.h */, + FFFD119762e87fe8119762e8 /* include/PsInlineAllocator.h */, + FFFD119763507fe811976350 /* include/PsInlineAoS.h */, + FFFD119763b87fe8119763b8 /* include/PsInlineArray.h */, + FFFD119764207fe811976420 /* include/PsIntrinsics.h */, + FFFD119764887fe811976488 /* include/PsMathUtils.h */, + FFFD119764f07fe8119764f0 /* include/PsMutex.h */, + FFFD119765587fe811976558 /* include/PsPool.h */, + FFFD119765c07fe8119765c0 /* include/PsSList.h */, + FFFD119766287fe811976628 /* include/PsSocket.h */, + FFFD119766907fe811976690 /* include/PsSort.h */, + FFFD119766f87fe8119766f8 /* include/PsSortInternals.h */, + FFFD119767607fe811976760 /* include/PsString.h */, + FFFD119767c87fe8119767c8 /* include/PsSync.h */, + FFFD119768307fe811976830 /* include/PsTempAllocator.h */, + FFFD119768987fe811976898 /* include/PsThread.h */, + FFFD119769007fe811976900 /* include/PsTime.h */, + FFFD119769687fe811976968 /* include/PsUserAllocated.h */, + FFFD119769d07fe8119769d0 /* include/PsUtilities.h */, + FFFD11976a387fe811976a38 /* include/PsVecMath.h */, + FFFD11976aa07fe811976aa0 /* include/PsVecMathAoSScalar.h */, + FFFD11976b087fe811976b08 /* include/PsVecMathAoSScalarInline.h */, + FFFD11976b707fe811976b70 /* include/PsVecMathSSE.h */, + FFFD11976bd87fe811976bd8 /* include/PsVecMathUtilities.h */, + FFFD11976c407fe811976c40 /* include/PsVecQuat.h */, + FFFD11976ca87fe811976ca8 /* include/PsVecTransform.h */, + FFFD11976d107fe811976d10 /* include/unix/PsUnixAoS.h */, + FFFD11976d787fe811976d78 /* include/unix/PsUnixFPU.h */, + FFFD11976de07fe811976de0 /* include/unix/PsUnixInlineAoS.h */, + FFFD11976e487fe811976e48 /* include/unix/PsUnixIntrinsics.h */, + FFFD11976eb07fe811976eb0 /* include/unix/PsUnixTrigConstants.h */, + FFFD11976f187fe811976f18 /* src/PsAllocator.cpp */, + FFFD11976f807fe811976f80 /* src/PsAssert.cpp */, + FFFD11976fe87fe811976fe8 /* src/PsFoundation.cpp */, + FFFD119770507fe811977050 /* src/PsMathUtils.cpp */, + FFFD119770b87fe8119770b8 /* src/PsString.cpp */, + FFFD119771207fe811977120 /* src/PsTempAllocator.cpp */, + FFFD119771887fe811977188 /* src/PsUtilities.cpp */, + FFFD119771f07fe8119771f0 /* src/unix/PsUnixAtomic.cpp */, + FFFD119772587fe811977258 /* src/unix/PsUnixCpu.cpp */, + FFFD119772c07fe8119772c0 /* src/unix/PsUnixFPU.cpp */, + FFFD119773287fe811977328 /* src/unix/PsUnixMutex.cpp */, + FFFD119773907fe811977390 /* src/unix/PsUnixPrintString.cpp */, + FFFD119773f87fe8119773f8 /* src/unix/PsUnixSList.cpp */, + FFFD119774607fe811977460 /* src/unix/PsUnixSocket.cpp */, + FFFD119774c87fe8119774c8 /* src/unix/PsUnixSync.cpp */, + FFFD119775307fe811977530 /* src/unix/PsUnixThread.cpp */, + FFFD119775987fe811977598 /* src/unix/PsUnixTime.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc173fd607fd8c173fd60 /* PxPvdSDK */ = { + FFFB12609f207fe812609f20 /* PxPvdSDK */ = { isa = PBXGroup; children = ( - FFFBc171aa607fd8c171aa60 /* include */, - FFFBc171aa887fd8c171aa88 /* src */, + FFFB1260c5e07fe81260c5e0 /* include */, + FFFB1260c6087fe81260c608 /* src */, ); name = "PxPvdSDK"; sourceTree = "<group>"; }; - FFFBc171aa607fd8c171aa60 /* include */ = { + FFFB1260c5e07fe81260c5e0 /* include */ = { isa = PBXGroup; children = ( - FFFDc17599007fd8c1759900 /* PxPvd.h */, - FFFDc17599687fd8c1759968 /* PxPvdTransport.h */, + FFFD1260ccb07fe81260ccb0 /* PxPvd.h */, + FFFD1260cd187fe81260cd18 /* PxPvdTransport.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc171aa887fd8c171aa88 /* src */ = { + FFFB1260c6087fe81260c608 /* src */ = { isa = PBXGroup; children = ( - FFFDc28418007fd8c2841800 /* include/PsPvd.h */, - FFFDc28418687fd8c2841868 /* include/PxProfileAllocatorWrapper.h */, - FFFDc28418d07fd8c28418d0 /* include/PxPvdClient.h */, - FFFDc28419387fd8c2841938 /* include/PxPvdDataStream.h */, - FFFDc28419a07fd8c28419a0 /* include/PxPvdDataStreamHelpers.h */, - FFFDc2841a087fd8c2841a08 /* include/PxPvdErrorCodes.h */, - FFFDc2841a707fd8c2841a70 /* include/PxPvdObjectModelBaseTypes.h */, - FFFDc2841ad87fd8c2841ad8 /* include/PxPvdRenderBuffer.h */, - FFFDc2841b407fd8c2841b40 /* include/PxPvdUserRenderer.h */, - FFFDc2841ba87fd8c2841ba8 /* src/PxProfileEventImpl.cpp */, - FFFDc2841c107fd8c2841c10 /* src/PxPvd.cpp */, - FFFDc2841c787fd8c2841c78 /* src/PxPvdDataStream.cpp */, - FFFDc2841ce07fd8c2841ce0 /* src/PxPvdDefaultFileTransport.cpp */, - FFFDc2841d487fd8c2841d48 /* src/PxPvdDefaultSocketTransport.cpp */, - FFFDc2841db07fd8c2841db0 /* src/PxPvdImpl.cpp */, - FFFDc2841e187fd8c2841e18 /* src/PxPvdMemClient.cpp */, - FFFDc2841e807fd8c2841e80 /* src/PxPvdObjectModelMetaData.cpp */, - FFFDc2841ee87fd8c2841ee8 /* src/PxPvdObjectRegistrar.cpp */, - FFFDc2841f507fd8c2841f50 /* src/PxPvdProfileZoneClient.cpp */, - FFFDc2841fb87fd8c2841fb8 /* src/PxPvdUserRenderer.cpp */, - FFFDc28420207fd8c2842020 /* src/PxProfileBase.h */, - FFFDc28420887fd8c2842088 /* src/PxProfileCompileTimeEventFilter.h */, - FFFDc28420f07fd8c28420f0 /* src/PxProfileContextProvider.h */, - FFFDc28421587fd8c2842158 /* src/PxProfileContextProviderImpl.h */, - FFFDc28421c07fd8c28421c0 /* src/PxProfileDataBuffer.h */, - FFFDc28422287fd8c2842228 /* src/PxProfileDataParsing.h */, - FFFDc28422907fd8c2842290 /* src/PxProfileEventBuffer.h */, - FFFDc28422f87fd8c28422f8 /* src/PxProfileEventBufferAtomic.h */, - FFFDc28423607fd8c2842360 /* src/PxProfileEventBufferClient.h */, - FFFDc28423c87fd8c28423c8 /* src/PxProfileEventBufferClientManager.h */, - FFFDc28424307fd8c2842430 /* src/PxProfileEventFilter.h */, - FFFDc28424987fd8c2842498 /* src/PxProfileEventHandler.h */, - FFFDc28425007fd8c2842500 /* src/PxProfileEventId.h */, - FFFDc28425687fd8c2842568 /* src/PxProfileEventMutex.h */, - FFFDc28425d07fd8c28425d0 /* src/PxProfileEventNames.h */, - FFFDc28426387fd8c2842638 /* src/PxProfileEventParser.h */, - FFFDc28426a07fd8c28426a0 /* src/PxProfileEventSender.h */, - FFFDc28427087fd8c2842708 /* src/PxProfileEventSerialization.h */, - FFFDc28427707fd8c2842770 /* src/PxProfileEventSystem.h */, - FFFDc28427d87fd8c28427d8 /* src/PxProfileEvents.h */, - FFFDc28428407fd8c2842840 /* src/PxProfileMemory.h */, - FFFDc28428a87fd8c28428a8 /* src/PxProfileMemoryBuffer.h */, - FFFDc28429107fd8c2842910 /* src/PxProfileMemoryEventBuffer.h */, - FFFDc28429787fd8c2842978 /* src/PxProfileMemoryEventParser.h */, - FFFDc28429e07fd8c28429e0 /* src/PxProfileMemoryEventRecorder.h */, - FFFDc2842a487fd8c2842a48 /* src/PxProfileMemoryEventReflexiveWriter.h */, - FFFDc2842ab07fd8c2842ab0 /* src/PxProfileMemoryEventSummarizer.h */, - FFFDc2842b187fd8c2842b18 /* src/PxProfileMemoryEventTypes.h */, - FFFDc2842b807fd8c2842b80 /* src/PxProfileMemoryEvents.h */, - FFFDc2842be87fd8c2842be8 /* src/PxProfileScopedEvent.h */, - FFFDc2842c507fd8c2842c50 /* src/PxProfileScopedMutexLock.h */, - FFFDc2842cb87fd8c2842cb8 /* src/PxProfileZone.h */, - FFFDc2842d207fd8c2842d20 /* src/PxProfileZoneImpl.h */, - FFFDc2842d887fd8c2842d88 /* src/PxProfileZoneManager.h */, - FFFDc2842df07fd8c2842df0 /* src/PxProfileZoneManagerImpl.h */, - FFFDc2842e587fd8c2842e58 /* src/PxPvdBits.h */, - FFFDc2842ec07fd8c2842ec0 /* src/PxPvdByteStreams.h */, - FFFDc2842f287fd8c2842f28 /* src/PxPvdCommStreamEventSink.h */, - FFFDc2842f907fd8c2842f90 /* src/PxPvdCommStreamEvents.h */, - FFFDc2842ff87fd8c2842ff8 /* src/PxPvdCommStreamSDKEventTypes.h */, - FFFDc28430607fd8c2843060 /* src/PxPvdCommStreamTypes.h */, - FFFDc28430c87fd8c28430c8 /* src/PxPvdDefaultFileTransport.h */, - FFFDc28431307fd8c2843130 /* src/PxPvdDefaultSocketTransport.h */, - FFFDc28431987fd8c2843198 /* src/PxPvdFoundation.h */, - FFFDc28432007fd8c2843200 /* src/PxPvdImpl.h */, - FFFDc28432687fd8c2843268 /* src/PxPvdInternalByteStreams.h */, - FFFDc28432d07fd8c28432d0 /* src/PxPvdMarshalling.h */, - FFFDc28433387fd8c2843338 /* src/PxPvdMemClient.h */, - FFFDc28433a07fd8c28433a0 /* src/PxPvdObjectModel.h */, - FFFDc28434087fd8c2843408 /* src/PxPvdObjectModelInternalTypeDefs.h */, - FFFDc28434707fd8c2843470 /* src/PxPvdObjectModelInternalTypes.h */, - FFFDc28434d87fd8c28434d8 /* src/PxPvdObjectModelMetaData.h */, - FFFDc28435407fd8c2843540 /* src/PxPvdObjectRegistrar.h */, - FFFDc28435a87fd8c28435a8 /* src/PxPvdProfileZoneClient.h */, - FFFDc28436107fd8c2843610 /* src/PxPvdUserRenderImpl.h */, - FFFDc28436787fd8c2843678 /* src/PxPvdUserRenderTypes.h */, + FFFD128104007fe812810400 /* include/PsPvd.h */, + FFFD128104687fe812810468 /* include/PxProfileAllocatorWrapper.h */, + FFFD128104d07fe8128104d0 /* include/PxPvdClient.h */, + FFFD128105387fe812810538 /* include/PxPvdDataStream.h */, + FFFD128105a07fe8128105a0 /* include/PxPvdDataStreamHelpers.h */, + FFFD128106087fe812810608 /* include/PxPvdErrorCodes.h */, + FFFD128106707fe812810670 /* include/PxPvdObjectModelBaseTypes.h */, + FFFD128106d87fe8128106d8 /* include/PxPvdRenderBuffer.h */, + FFFD128107407fe812810740 /* include/PxPvdUserRenderer.h */, + FFFD128107a87fe8128107a8 /* src/PxProfileEventImpl.cpp */, + FFFD128108107fe812810810 /* src/PxPvd.cpp */, + FFFD128108787fe812810878 /* src/PxPvdDataStream.cpp */, + FFFD128108e07fe8128108e0 /* src/PxPvdDefaultFileTransport.cpp */, + FFFD128109487fe812810948 /* src/PxPvdDefaultSocketTransport.cpp */, + FFFD128109b07fe8128109b0 /* src/PxPvdImpl.cpp */, + FFFD12810a187fe812810a18 /* src/PxPvdMemClient.cpp */, + FFFD12810a807fe812810a80 /* src/PxPvdObjectModelMetaData.cpp */, + FFFD12810ae87fe812810ae8 /* src/PxPvdObjectRegistrar.cpp */, + FFFD12810b507fe812810b50 /* src/PxPvdProfileZoneClient.cpp */, + FFFD12810bb87fe812810bb8 /* src/PxPvdUserRenderer.cpp */, + FFFD12810c207fe812810c20 /* src/PxProfileBase.h */, + FFFD12810c887fe812810c88 /* src/PxProfileCompileTimeEventFilter.h */, + FFFD12810cf07fe812810cf0 /* src/PxProfileContextProvider.h */, + FFFD12810d587fe812810d58 /* src/PxProfileContextProviderImpl.h */, + FFFD12810dc07fe812810dc0 /* src/PxProfileDataBuffer.h */, + FFFD12810e287fe812810e28 /* src/PxProfileDataParsing.h */, + FFFD12810e907fe812810e90 /* src/PxProfileEventBuffer.h */, + FFFD12810ef87fe812810ef8 /* src/PxProfileEventBufferAtomic.h */, + FFFD12810f607fe812810f60 /* src/PxProfileEventBufferClient.h */, + FFFD12810fc87fe812810fc8 /* src/PxProfileEventBufferClientManager.h */, + FFFD128110307fe812811030 /* src/PxProfileEventFilter.h */, + FFFD128110987fe812811098 /* src/PxProfileEventHandler.h */, + FFFD128111007fe812811100 /* src/PxProfileEventId.h */, + FFFD128111687fe812811168 /* src/PxProfileEventMutex.h */, + FFFD128111d07fe8128111d0 /* src/PxProfileEventNames.h */, + FFFD128112387fe812811238 /* src/PxProfileEventParser.h */, + FFFD128112a07fe8128112a0 /* src/PxProfileEventSender.h */, + FFFD128113087fe812811308 /* src/PxProfileEventSerialization.h */, + FFFD128113707fe812811370 /* src/PxProfileEventSystem.h */, + FFFD128113d87fe8128113d8 /* src/PxProfileEvents.h */, + FFFD128114407fe812811440 /* src/PxProfileMemory.h */, + FFFD128114a87fe8128114a8 /* src/PxProfileMemoryBuffer.h */, + FFFD128115107fe812811510 /* src/PxProfileMemoryEventBuffer.h */, + FFFD128115787fe812811578 /* src/PxProfileMemoryEventParser.h */, + FFFD128115e07fe8128115e0 /* src/PxProfileMemoryEventRecorder.h */, + FFFD128116487fe812811648 /* src/PxProfileMemoryEventReflexiveWriter.h */, + FFFD128116b07fe8128116b0 /* src/PxProfileMemoryEventSummarizer.h */, + FFFD128117187fe812811718 /* src/PxProfileMemoryEventTypes.h */, + FFFD128117807fe812811780 /* src/PxProfileMemoryEvents.h */, + FFFD128117e87fe8128117e8 /* src/PxProfileScopedEvent.h */, + FFFD128118507fe812811850 /* src/PxProfileScopedMutexLock.h */, + FFFD128118b87fe8128118b8 /* src/PxProfileZone.h */, + FFFD128119207fe812811920 /* src/PxProfileZoneImpl.h */, + FFFD128119887fe812811988 /* src/PxProfileZoneManager.h */, + FFFD128119f07fe8128119f0 /* src/PxProfileZoneManagerImpl.h */, + FFFD12811a587fe812811a58 /* src/PxPvdBits.h */, + FFFD12811ac07fe812811ac0 /* src/PxPvdByteStreams.h */, + FFFD12811b287fe812811b28 /* src/PxPvdCommStreamEventSink.h */, + FFFD12811b907fe812811b90 /* src/PxPvdCommStreamEvents.h */, + FFFD12811bf87fe812811bf8 /* src/PxPvdCommStreamSDKEventTypes.h */, + FFFD12811c607fe812811c60 /* src/PxPvdCommStreamTypes.h */, + FFFD12811cc87fe812811cc8 /* src/PxPvdDefaultFileTransport.h */, + FFFD12811d307fe812811d30 /* src/PxPvdDefaultSocketTransport.h */, + FFFD12811d987fe812811d98 /* src/PxPvdFoundation.h */, + FFFD12811e007fe812811e00 /* src/PxPvdImpl.h */, + FFFD12811e687fe812811e68 /* src/PxPvdInternalByteStreams.h */, + FFFD12811ed07fe812811ed0 /* src/PxPvdMarshalling.h */, + FFFD12811f387fe812811f38 /* src/PxPvdMemClient.h */, + FFFD12811fa07fe812811fa0 /* src/PxPvdObjectModel.h */, + FFFD128120087fe812812008 /* src/PxPvdObjectModelInternalTypeDefs.h */, + FFFD128120707fe812812070 /* src/PxPvdObjectModelInternalTypes.h */, + FFFD128120d87fe8128120d8 /* src/PxPvdObjectModelMetaData.h */, + FFFD128121407fe812812140 /* src/PxPvdObjectRegistrar.h */, + FFFD128121a87fe8128121a8 /* src/PxPvdProfileZoneClient.h */, + FFFD128122107fe812812210 /* src/PxPvdUserRenderImpl.h */, + FFFD128122787fe812812278 /* src/PxPvdUserRenderTypes.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc10c0f007fd8c10c0f00 /* LowLevel */ = { + FFFB125b5b707fe8125b5b70 /* LowLevel */ = { isa = PBXGroup; children = ( - FFFBc16685507fd8c1668550 /* API Source */, - FFFBc16685787fd8c1668578 /* API Includes */, - FFFBc16685a07fd8c16685a0 /* Software Source */, - FFFBc16685c87fd8c16685c8 /* Software Includes */, - FFFBc16685f07fd8c16685f0 /* Common Source */, - FFFBc16686187fd8c1668618 /* Common Includes */, + FFFB125b91d07fe8125b91d0 /* API Source */, + FFFB125b91f87fe8125b91f8 /* API Includes */, + FFFB125b92207fe8125b9220 /* Software Source */, + FFFB125b92487fe8125b9248 /* Software Includes */, + FFFB125b92707fe8125b9270 /* Common Source */, + FFFB125b92987fe8125b9298 /* Common Includes */, ); name = "LowLevel"; sourceTree = "<group>"; }; - FFFBc16685507fd8c1668550 /* API Source */ = { + FFFB125b91d07fe8125b91d0 /* API Source */ = { isa = PBXGroup; children = ( - FFFDbfcde6407fd8bfcde640 /* px_globals.cpp */, + FFFD125cddd07fe8125cddd0 /* px_globals.cpp */, ); name = "API Source"; sourceTree = SOURCE_ROOT; }; - FFFBc16685787fd8c1668578 /* API Includes */ = { + FFFB125b91f87fe8125b91f8 /* API Includes */ = { isa = PBXGroup; children = ( - FFFDc165b3107fd8c165b310 /* PxsMaterialCore.h */, - FFFDc165b3787fd8c165b378 /* PxsMaterialManager.h */, - FFFDc165b3e07fd8c165b3e0 /* PxvConfig.h */, - FFFDc165b4487fd8c165b448 /* PxvContext.h */, - FFFDc165b4b07fd8c165b4b0 /* PxvDynamics.h */, - FFFDc165b5187fd8c165b518 /* PxvGeometry.h */, - FFFDc165b5807fd8c165b580 /* PxvGlobals.h */, - FFFDc165b5e87fd8c165b5e8 /* PxvManager.h */, - FFFDc165b6507fd8c165b650 /* PxvSimStats.h */, + FFFD125ba2d07fe8125ba2d0 /* PxsMaterialCore.h */, + FFFD125ba3387fe8125ba338 /* PxsMaterialManager.h */, + FFFD125ba3a07fe8125ba3a0 /* PxvConfig.h */, + FFFD125ba4087fe8125ba408 /* PxvContext.h */, + FFFD125ba4707fe8125ba470 /* PxvDynamics.h */, + FFFD125ba4d87fe8125ba4d8 /* PxvGeometry.h */, + FFFD125ba5407fe8125ba540 /* PxvGlobals.h */, + FFFD125ba5a87fe8125ba5a8 /* PxvManager.h */, + FFFD125ba6107fe8125ba610 /* PxvSimStats.h */, ); name = "API Includes"; sourceTree = SOURCE_ROOT; }; - FFFBc16685a07fd8c16685a0 /* Software Source */ = { + FFFB125b92207fe8125b9220 /* Software Source */ = { isa = PBXGroup; children = ( - FFFDc165b6c07fd8c165b6c0 /* PxsCCD.cpp */, - FFFDc165b7287fd8c165b728 /* PxsContactManager.cpp */, - FFFDc165b7907fd8c165b790 /* PxsContext.cpp */, - FFFDc165b7f87fd8c165b7f8 /* PxsDefaultMemoryManager.cpp */, - FFFDc165b8607fd8c165b860 /* PxsIslandSim.cpp */, - FFFDc165b8c87fd8c165b8c8 /* PxsMaterialCombiner.cpp */, - FFFDc165b9307fd8c165b930 /* PxsNphaseImplementationContext.cpp */, - FFFDc165b9987fd8c165b998 /* PxsSimpleIslandManager.cpp */, + FFFD12133aa07fe812133aa0 /* PxsCCD.cpp */, + FFFD12133b087fe812133b08 /* PxsContactManager.cpp */, + FFFD12133b707fe812133b70 /* PxsContext.cpp */, + FFFD12133bd87fe812133bd8 /* PxsDefaultMemoryManager.cpp */, + FFFD12133c407fe812133c40 /* PxsIslandSim.cpp */, + FFFD12133ca87fe812133ca8 /* PxsMaterialCombiner.cpp */, + FFFD12133d107fe812133d10 /* PxsNphaseImplementationContext.cpp */, + FFFD12133d787fe812133d78 /* PxsSimpleIslandManager.cpp */, ); name = "Software Source"; sourceTree = SOURCE_ROOT; }; - FFFBc16685c87fd8c16685c8 /* Software Includes */ = { + FFFB125b92487fe8125b9248 /* Software Includes */ = { isa = PBXGroup; children = ( - FFFDc003c0007fd8c003c000 /* PxsBodySim.h */, - FFFDc003c0687fd8c003c068 /* PxsCCD.h */, - FFFDc003c0d07fd8c003c0d0 /* PxsContactManager.h */, - FFFDc003c1387fd8c003c138 /* PxsContactManagerState.h */, - FFFDc003c1a07fd8c003c1a0 /* PxsContext.h */, - FFFDc003c2087fd8c003c208 /* PxsDefaultMemoryManager.h */, - FFFDc003c2707fd8c003c270 /* PxsHeapMemoryAllocator.h */, - FFFDc003c2d87fd8c003c2d8 /* PxsIncrementalConstraintPartitioning.h */, - FFFDc003c3407fd8c003c340 /* PxsIslandManagerTypes.h */, - FFFDc003c3a87fd8c003c3a8 /* PxsIslandSim.h */, - FFFDc003c4107fd8c003c410 /* PxsKernelWrangler.h */, - FFFDc003c4787fd8c003c478 /* PxsMaterialCombiner.h */, - FFFDc003c4e07fd8c003c4e0 /* PxsMemoryManager.h */, - FFFDc003c5487fd8c003c548 /* PxsNphaseImplementationContext.h */, - FFFDc003c5b07fd8c003c5b0 /* PxsRigidBody.h */, - FFFDc003c6187fd8c003c618 /* PxsShapeSim.h */, - FFFDc003c6807fd8c003c680 /* PxsSimpleIslandManager.h */, - FFFDc003c6e87fd8c003c6e8 /* PxsSimulationController.h */, - FFFDc003c7507fd8c003c750 /* PxsTransformCache.h */, - FFFDc003c7b87fd8c003c7b8 /* PxvNphaseImplementationContext.h */, + FFFD119af2007fe8119af200 /* PxsBodySim.h */, + FFFD119af2687fe8119af268 /* PxsCCD.h */, + FFFD119af2d07fe8119af2d0 /* PxsContactManager.h */, + FFFD119af3387fe8119af338 /* PxsContactManagerState.h */, + FFFD119af3a07fe8119af3a0 /* PxsContext.h */, + FFFD119af4087fe8119af408 /* PxsDefaultMemoryManager.h */, + FFFD119af4707fe8119af470 /* PxsHeapMemoryAllocator.h */, + FFFD119af4d87fe8119af4d8 /* PxsIncrementalConstraintPartitioning.h */, + FFFD119af5407fe8119af540 /* PxsIslandManagerTypes.h */, + FFFD119af5a87fe8119af5a8 /* PxsIslandSim.h */, + FFFD119af6107fe8119af610 /* PxsKernelWrangler.h */, + FFFD119af6787fe8119af678 /* PxsMaterialCombiner.h */, + FFFD119af6e07fe8119af6e0 /* PxsMemoryManager.h */, + FFFD119af7487fe8119af748 /* PxsNphaseImplementationContext.h */, + FFFD119af7b07fe8119af7b0 /* PxsRigidBody.h */, + FFFD119af8187fe8119af818 /* PxsShapeSim.h */, + FFFD119af8807fe8119af880 /* PxsSimpleIslandManager.h */, + FFFD119af8e87fe8119af8e8 /* PxsSimulationController.h */, + FFFD119af9507fe8119af950 /* PxsTransformCache.h */, + FFFD119af9b87fe8119af9b8 /* PxvNphaseImplementationContext.h */, ); name = "Software Includes"; sourceTree = SOURCE_ROOT; }; - FFFBc16685f07fd8c16685f0 /* Common Source */ = { + FFFB125b92707fe8125b9270 /* Common Source */ = { isa = PBXGroup; children = ( - FFFDc003aa007fd8c003aa00 /* collision/PxcContact.cpp */, - FFFDc003aa687fd8c003aa68 /* pipeline/PxcContactCache.cpp */, - FFFDc003aad07fd8c003aad0 /* pipeline/PxcContactMethodImpl.cpp */, - FFFDc003ab387fd8c003ab38 /* pipeline/PxcMaterialHeightField.cpp */, - FFFDc003aba07fd8c003aba0 /* pipeline/PxcMaterialMesh.cpp */, - FFFDc003ac087fd8c003ac08 /* pipeline/PxcMaterialMethodImpl.cpp */, - FFFDc003ac707fd8c003ac70 /* pipeline/PxcMaterialShape.cpp */, - FFFDc003acd87fd8c003acd8 /* pipeline/PxcNpBatch.cpp */, - FFFDc003ad407fd8c003ad40 /* pipeline/PxcNpCacheStreamPair.cpp */, - FFFDc003ada87fd8c003ada8 /* pipeline/PxcNpContactPrepShared.cpp */, - FFFDc003ae107fd8c003ae10 /* pipeline/PxcNpMemBlockPool.cpp */, - FFFDc003ae787fd8c003ae78 /* pipeline/PxcNpThreadContext.cpp */, + FFFD119b56007fe8119b5600 /* collision/PxcContact.cpp */, + FFFD119b56687fe8119b5668 /* pipeline/PxcContactCache.cpp */, + FFFD119b56d07fe8119b56d0 /* pipeline/PxcContactMethodImpl.cpp */, + FFFD119b57387fe8119b5738 /* pipeline/PxcMaterialHeightField.cpp */, + FFFD119b57a07fe8119b57a0 /* pipeline/PxcMaterialMesh.cpp */, + FFFD119b58087fe8119b5808 /* pipeline/PxcMaterialMethodImpl.cpp */, + FFFD119b58707fe8119b5870 /* pipeline/PxcMaterialShape.cpp */, + FFFD119b58d87fe8119b58d8 /* pipeline/PxcNpBatch.cpp */, + FFFD119b59407fe8119b5940 /* pipeline/PxcNpCacheStreamPair.cpp */, + FFFD119b59a87fe8119b59a8 /* pipeline/PxcNpContactPrepShared.cpp */, + FFFD119b5a107fe8119b5a10 /* pipeline/PxcNpMemBlockPool.cpp */, + FFFD119b5a787fe8119b5a78 /* pipeline/PxcNpThreadContext.cpp */, ); name = "Common Source"; sourceTree = SOURCE_ROOT; }; - FFFBc16686187fd8c1668618 /* Common Includes */ = { + FFFB125b92987fe8125b9298 /* Common Includes */ = { isa = PBXGroup; children = ( - FFFDc3001e007fd8c3001e00 /* collision/PxcContactMethodImpl.h */, - FFFDc3001e687fd8c3001e68 /* pipeline/PxcCCDStateStreamPair.h */, - FFFDc3001ed07fd8c3001ed0 /* pipeline/PxcConstraintBlockStream.h */, - FFFDc3001f387fd8c3001f38 /* pipeline/PxcContactCache.h */, - FFFDc3001fa07fd8c3001fa0 /* pipeline/PxcMaterialMethodImpl.h */, - FFFDc30020087fd8c3002008 /* pipeline/PxcNpBatch.h */, - FFFDc30020707fd8c3002070 /* pipeline/PxcNpCache.h */, - FFFDc30020d87fd8c30020d8 /* pipeline/PxcNpCacheStreamPair.h */, - FFFDc30021407fd8c3002140 /* pipeline/PxcNpContactPrepShared.h */, - FFFDc30021a87fd8c30021a8 /* pipeline/PxcNpMemBlockPool.h */, - FFFDc30022107fd8c3002210 /* pipeline/PxcNpThreadContext.h */, - FFFDc30022787fd8c3002278 /* pipeline/PxcNpWorkUnit.h */, - FFFDc30022e07fd8c30022e0 /* pipeline/PxcRigidBody.h */, - FFFDc30023487fd8c3002348 /* utils/PxcScratchAllocator.h */, - FFFDc30023b07fd8c30023b0 /* utils/PxcThreadCoherentCache.h */, + FFFD119b5e007fe8119b5e00 /* collision/PxcContactMethodImpl.h */, + FFFD119b5e687fe8119b5e68 /* pipeline/PxcCCDStateStreamPair.h */, + FFFD119b5ed07fe8119b5ed0 /* pipeline/PxcConstraintBlockStream.h */, + FFFD119b5f387fe8119b5f38 /* pipeline/PxcContactCache.h */, + FFFD119b5fa07fe8119b5fa0 /* pipeline/PxcMaterialMethodImpl.h */, + FFFD119b60087fe8119b6008 /* pipeline/PxcNpBatch.h */, + FFFD119b60707fe8119b6070 /* pipeline/PxcNpCache.h */, + FFFD119b60d87fe8119b60d8 /* pipeline/PxcNpCacheStreamPair.h */, + FFFD119b61407fe8119b6140 /* pipeline/PxcNpContactPrepShared.h */, + FFFD119b61a87fe8119b61a8 /* pipeline/PxcNpMemBlockPool.h */, + FFFD119b62107fe8119b6210 /* pipeline/PxcNpThreadContext.h */, + FFFD119b62787fe8119b6278 /* pipeline/PxcNpWorkUnit.h */, + FFFD119b62e07fe8119b62e0 /* pipeline/PxcRigidBody.h */, + FFFD119b63487fe8119b6348 /* utils/PxcScratchAllocator.h */, + FFFD119b63b07fe8119b63b0 /* utils/PxcThreadCoherentCache.h */, ); name = "Common Includes"; sourceTree = SOURCE_ROOT; }; - FFFBc17390207fd8c1739020 /* LowLevelAABB */ = { + FFFB1261e8907fe81261e890 /* LowLevelAABB */ = { isa = PBXGroup; children = ( - FFFBc1719e807fd8c1719e80 /* include */, - FFFBc1719ea87fd8c1719ea8 /* src */, + FFFB1262e5207fe81262e520 /* include */, + FFFB1262e5487fe81262e548 /* src */, ); name = "LowLevelAABB"; sourceTree = "<group>"; }; - FFFBc1719e807fd8c1719e80 /* include */ = { + FFFB1262e5207fe81262e520 /* include */ = { isa = PBXGroup; children = ( - FFFDc17393b07fd8c17393b0 /* BpAABBManagerTasks.h */, - FFFDc17394187fd8c1739418 /* BpBroadPhase.h */, - FFFDc17394807fd8c1739480 /* BpBroadPhaseUpdate.h */, - FFFDc17394e87fd8c17394e8 /* BpSimpleAABBManager.h */, + FFFD1262e5707fe81262e570 /* BpAABBManagerTasks.h */, + FFFD1262e5d87fe81262e5d8 /* BpBroadPhase.h */, + FFFD1262e6407fe81262e640 /* BpBroadPhaseUpdate.h */, + FFFD1262e6a87fe81262e6a8 /* BpSimpleAABBManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc1719ea87fd8c1719ea8 /* src */ = { + FFFB1262e5487fe81262e548 /* src */ = { isa = PBXGroup; children = ( - FFFDc28410007fd8c2841000 /* BpBroadPhaseMBP.h */, - FFFDc28410687fd8c2841068 /* BpBroadPhaseMBPCommon.h */, - FFFDc28410d07fd8c28410d0 /* BpBroadPhaseSap.h */, - FFFDc28411387fd8c2841138 /* BpBroadPhaseSapAux.h */, - FFFDc28411a07fd8c28411a0 /* BpMBPTasks.h */, - FFFDc28412087fd8c2841208 /* BpSAPTasks.h */, - FFFDc28412707fd8c2841270 /* BpBroadPhase.cpp */, - FFFDc28412d87fd8c28412d8 /* BpBroadPhaseMBP.cpp */, - FFFDc28413407fd8c2841340 /* BpBroadPhaseSap.cpp */, - FFFDc28413a87fd8c28413a8 /* BpBroadPhaseSapAux.cpp */, - FFFDc28414107fd8c2841410 /* BpMBPTasks.cpp */, - FFFDc28414787fd8c2841478 /* BpSAPTasks.cpp */, - FFFDc28414e07fd8c28414e0 /* BpSimpleAABBManager.cpp */, + FFFD128174007fe812817400 /* BpBroadPhaseMBP.h */, + FFFD128174687fe812817468 /* BpBroadPhaseMBPCommon.h */, + FFFD128174d07fe8128174d0 /* BpBroadPhaseSap.h */, + FFFD128175387fe812817538 /* BpBroadPhaseSapAux.h */, + FFFD128175a07fe8128175a0 /* BpMBPTasks.h */, + FFFD128176087fe812817608 /* BpSAPTasks.h */, + FFFD128176707fe812817670 /* BpBroadPhase.cpp */, + FFFD128176d87fe8128176d8 /* BpBroadPhaseMBP.cpp */, + FFFD128177407fe812817740 /* BpBroadPhaseSap.cpp */, + FFFD128177a87fe8128177a8 /* BpBroadPhaseSapAux.cpp */, + FFFD128178107fe812817810 /* BpMBPTasks.cpp */, + FFFD128178787fe812817878 /* BpSAPTasks.cpp */, + FFFD128178e07fe8128178e0 /* BpSimpleAABBManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc10c8d107fd8c10c8d10 /* LowLevelDynamics */ = { + FFFB125e9ce07fe8125e9ce0 /* LowLevelDynamics */ = { isa = PBXGroup; children = ( - FFFBc14641107fd8c1464110 /* Dynamics Source */, - FFFBc14641387fd8c1464138 /* Dynamics Includes */, - FFFBc14641607fd8c1464160 /* Dynamics Internal Includes */, + FFFB125ef1f07fe8125ef1f0 /* Dynamics Source */, + FFFB125ef2187fe8125ef218 /* Dynamics Includes */, + FFFB125ef2407fe8125ef240 /* Dynamics Internal Includes */, ); name = "LowLevelDynamics"; sourceTree = "<group>"; }; - FFFBc14641107fd8c1464110 /* Dynamics Source */ = { + FFFB125ef1f07fe8125ef1f0 /* Dynamics Source */ = { isa = PBXGroup; children = ( - FFFDc40122007fd8c4012200 /* DyArticulation.cpp */, - FFFDc40122687fd8c4012268 /* DyArticulationContactPrep.cpp */, - FFFDc40122d07fd8c40122d0 /* DyArticulationContactPrepPF.cpp */, - FFFDc40123387fd8c4012338 /* DyArticulationHelper.cpp */, - FFFDc40123a07fd8c40123a0 /* DyArticulationSIMD.cpp */, - FFFDc40124087fd8c4012408 /* DyArticulationScalar.cpp */, - FFFDc40124707fd8c4012470 /* DyConstraintPartition.cpp */, - FFFDc40124d87fd8c40124d8 /* DyConstraintSetup.cpp */, - FFFDc40125407fd8c4012540 /* DyConstraintSetupBlock.cpp */, - FFFDc40125a87fd8c40125a8 /* DyContactPrep.cpp */, - FFFDc40126107fd8c4012610 /* DyContactPrep4.cpp */, - FFFDc40126787fd8c4012678 /* DyContactPrep4PF.cpp */, - FFFDc40126e07fd8c40126e0 /* DyContactPrepPF.cpp */, - FFFDc40127487fd8c4012748 /* DyDynamics.cpp */, - FFFDc40127b07fd8c40127b0 /* DyFrictionCorrelation.cpp */, - FFFDc40128187fd8c4012818 /* DyRigidBodyToSolverBody.cpp */, - FFFDc40128807fd8c4012880 /* DySolverConstraints.cpp */, - FFFDc40128e87fd8c40128e8 /* DySolverConstraintsBlock.cpp */, - FFFDc40129507fd8c4012950 /* DySolverControl.cpp */, - FFFDc40129b87fd8c40129b8 /* DySolverControlPF.cpp */, - FFFDc4012a207fd8c4012a20 /* DySolverPFConstraints.cpp */, - FFFDc4012a887fd8c4012a88 /* DySolverPFConstraintsBlock.cpp */, - FFFDc4012af07fd8c4012af0 /* DyThreadContext.cpp */, - FFFDc4012b587fd8c4012b58 /* DyThresholdTable.cpp */, + FFFD119bfa007fe8119bfa00 /* DyArticulation.cpp */, + FFFD119bfa687fe8119bfa68 /* DyArticulationContactPrep.cpp */, + FFFD119bfad07fe8119bfad0 /* DyArticulationContactPrepPF.cpp */, + FFFD119bfb387fe8119bfb38 /* DyArticulationHelper.cpp */, + FFFD119bfba07fe8119bfba0 /* DyArticulationSIMD.cpp */, + FFFD119bfc087fe8119bfc08 /* DyArticulationScalar.cpp */, + FFFD119bfc707fe8119bfc70 /* DyConstraintPartition.cpp */, + FFFD119bfcd87fe8119bfcd8 /* DyConstraintSetup.cpp */, + FFFD119bfd407fe8119bfd40 /* DyConstraintSetupBlock.cpp */, + FFFD119bfda87fe8119bfda8 /* DyContactPrep.cpp */, + FFFD119bfe107fe8119bfe10 /* DyContactPrep4.cpp */, + FFFD119bfe787fe8119bfe78 /* DyContactPrep4PF.cpp */, + FFFD119bfee07fe8119bfee0 /* DyContactPrepPF.cpp */, + FFFD119bff487fe8119bff48 /* DyDynamics.cpp */, + FFFD119bffb07fe8119bffb0 /* DyFrictionCorrelation.cpp */, + FFFD119c00187fe8119c0018 /* DyRigidBodyToSolverBody.cpp */, + FFFD119c00807fe8119c0080 /* DySolverConstraints.cpp */, + FFFD119c00e87fe8119c00e8 /* DySolverConstraintsBlock.cpp */, + FFFD119c01507fe8119c0150 /* DySolverControl.cpp */, + FFFD119c01b87fe8119c01b8 /* DySolverControlPF.cpp */, + FFFD119c02207fe8119c0220 /* DySolverPFConstraints.cpp */, + FFFD119c02887fe8119c0288 /* DySolverPFConstraintsBlock.cpp */, + FFFD119c02f07fe8119c02f0 /* DyThreadContext.cpp */, + FFFD119c03587fe8119c0358 /* DyThresholdTable.cpp */, ); name = "Dynamics Source"; sourceTree = SOURCE_ROOT; }; - FFFBc14641387fd8c1464138 /* Dynamics Includes */ = { + FFFB125ef2187fe8125ef218 /* Dynamics Includes */ = { isa = PBXGroup; children = ( - FFFDc14787807fd8c1478780 /* DyArticulation.h */, - FFFDc14787e87fd8c14787e8 /* DyConstraint.h */, - FFFDc14788507fd8c1478850 /* DyConstraintWriteBack.h */, - FFFDc14788b87fd8c14788b8 /* DyContext.h */, - FFFDc14789207fd8c1478920 /* DyGpuAPI.h */, - FFFDc14789887fd8c1478988 /* DySleepingConfigulation.h */, - FFFDc14789f07fd8c14789f0 /* DyThresholdTable.h */, + FFFD125e22f07fe8125e22f0 /* DyArticulation.h */, + FFFD125e23587fe8125e2358 /* DyConstraint.h */, + FFFD125e23c07fe8125e23c0 /* DyConstraintWriteBack.h */, + FFFD125e24287fe8125e2428 /* DyContext.h */, + FFFD125e24907fe8125e2490 /* DyGpuAPI.h */, + FFFD125e24f87fe8125e24f8 /* DySleepingConfigulation.h */, + FFFD125e25607fe8125e2560 /* DyThresholdTable.h */, ); name = "Dynamics Includes"; sourceTree = SOURCE_ROOT; }; - FFFBc14641607fd8c1464160 /* Dynamics Internal Includes */ = { + FFFB125ef2407fe8125ef240 /* Dynamics Internal Includes */ = { isa = PBXGroup; children = ( - FFFDc40158007fd8c4015800 /* DyArticulationContactPrep.h */, - FFFDc40158687fd8c4015868 /* DyArticulationFnsDebug.h */, - FFFDc40158d07fd8c40158d0 /* DyArticulationFnsScalar.h */, - FFFDc40159387fd8c4015938 /* DyArticulationFnsSimd.h */, - FFFDc40159a07fd8c40159a0 /* DyArticulationHelper.h */, - FFFDc4015a087fd8c4015a08 /* DyArticulationPImpl.h */, - FFFDc4015a707fd8c4015a70 /* DyArticulationReference.h */, - FFFDc4015ad87fd8c4015ad8 /* DyArticulationScalar.h */, - FFFDc4015b407fd8c4015b40 /* DyArticulationUtils.h */, - FFFDc4015ba87fd8c4015ba8 /* DyBodyCoreIntegrator.h */, - FFFDc4015c107fd8c4015c10 /* DyConstraintPartition.h */, - FFFDc4015c787fd8c4015c78 /* DyConstraintPrep.h */, - FFFDc4015ce07fd8c4015ce0 /* DyContactPrep.h */, - FFFDc4015d487fd8c4015d48 /* DyContactPrepShared.h */, - FFFDc4015db07fd8c4015db0 /* DyContactReduction.h */, - FFFDc4015e187fd8c4015e18 /* DyCorrelationBuffer.h */, - FFFDc4015e807fd8c4015e80 /* DyDynamics.h */, - FFFDc4015ee87fd8c4015ee8 /* DyFrictionPatch.h */, - FFFDc4015f507fd8c4015f50 /* DyFrictionPatchStreamPair.h */, - FFFDc4015fb87fd8c4015fb8 /* DySolverBody.h */, - FFFDc40160207fd8c4016020 /* DySolverConstraint1D.h */, - FFFDc40160887fd8c4016088 /* DySolverConstraint1D4.h */, - FFFDc40160f07fd8c40160f0 /* DySolverConstraintDesc.h */, - FFFDc40161587fd8c4016158 /* DySolverConstraintExtShared.h */, - FFFDc40161c07fd8c40161c0 /* DySolverConstraintTypes.h */, - FFFDc40162287fd8c4016228 /* DySolverConstraintsShared.h */, - FFFDc40162907fd8c4016290 /* DySolverContact.h */, - FFFDc40162f87fd8c40162f8 /* DySolverContact4.h */, - FFFDc40163607fd8c4016360 /* DySolverContactPF.h */, - FFFDc40163c87fd8c40163c8 /* DySolverContactPF4.h */, - FFFDc40164307fd8c4016430 /* DySolverContext.h */, - FFFDc40164987fd8c4016498 /* DySolverControl.h */, - FFFDc40165007fd8c4016500 /* DySolverControlPF.h */, - FFFDc40165687fd8c4016568 /* DySolverCore.h */, - FFFDc40165d07fd8c40165d0 /* DySolverExt.h */, - FFFDc40166387fd8c4016638 /* DySpatial.h */, - FFFDc40166a07fd8c40166a0 /* DyThreadContext.h */, + FFFD119c0c007fe8119c0c00 /* DyArticulationContactPrep.h */, + FFFD119c0c687fe8119c0c68 /* DyArticulationFnsDebug.h */, + FFFD119c0cd07fe8119c0cd0 /* DyArticulationFnsScalar.h */, + FFFD119c0d387fe8119c0d38 /* DyArticulationFnsSimd.h */, + FFFD119c0da07fe8119c0da0 /* DyArticulationHelper.h */, + FFFD119c0e087fe8119c0e08 /* DyArticulationPImpl.h */, + FFFD119c0e707fe8119c0e70 /* DyArticulationReference.h */, + FFFD119c0ed87fe8119c0ed8 /* DyArticulationScalar.h */, + FFFD119c0f407fe8119c0f40 /* DyArticulationUtils.h */, + FFFD119c0fa87fe8119c0fa8 /* DyBodyCoreIntegrator.h */, + FFFD119c10107fe8119c1010 /* DyConstraintPartition.h */, + FFFD119c10787fe8119c1078 /* DyConstraintPrep.h */, + FFFD119c10e07fe8119c10e0 /* DyContactPrep.h */, + FFFD119c11487fe8119c1148 /* DyContactPrepShared.h */, + FFFD119c11b07fe8119c11b0 /* DyContactReduction.h */, + FFFD119c12187fe8119c1218 /* DyCorrelationBuffer.h */, + FFFD119c12807fe8119c1280 /* DyDynamics.h */, + FFFD119c12e87fe8119c12e8 /* DyFrictionPatch.h */, + FFFD119c13507fe8119c1350 /* DyFrictionPatchStreamPair.h */, + FFFD119c13b87fe8119c13b8 /* DySolverBody.h */, + FFFD119c14207fe8119c1420 /* DySolverConstraint1D.h */, + FFFD119c14887fe8119c1488 /* DySolverConstraint1D4.h */, + FFFD119c14f07fe8119c14f0 /* DySolverConstraintDesc.h */, + FFFD119c15587fe8119c1558 /* DySolverConstraintExtShared.h */, + FFFD119c15c07fe8119c15c0 /* DySolverConstraintTypes.h */, + FFFD119c16287fe8119c1628 /* DySolverConstraintsShared.h */, + FFFD119c16907fe8119c1690 /* DySolverContact.h */, + FFFD119c16f87fe8119c16f8 /* DySolverContact4.h */, + FFFD119c17607fe8119c1760 /* DySolverContactPF.h */, + FFFD119c17c87fe8119c17c8 /* DySolverContactPF4.h */, + FFFD119c18307fe8119c1830 /* DySolverContext.h */, + FFFD119c18987fe8119c1898 /* DySolverControl.h */, + FFFD119c19007fe8119c1900 /* DySolverControlPF.h */, + FFFD119c19687fe8119c1968 /* DySolverCore.h */, + FFFD119c19d07fe8119c19d0 /* DySolverExt.h */, + FFFD119c1a387fe8119c1a38 /* DySpatial.h */, + FFFD119c1aa07fe8119c1aa0 /* DyThreadContext.h */, ); name = "Dynamics Internal Includes"; sourceTree = SOURCE_ROOT; }; - FFFBc172f9207fd8c172f920 /* LowLevelCloth */ = { + FFFB130090807fe813009080 /* LowLevelCloth */ = { isa = PBXGroup; children = ( - FFFBc172d1b07fd8c172d1b0 /* include */, - FFFBc172d1d87fd8c172d1d8 /* src */, + FFFB1300b2907fe81300b290 /* include */, + FFFB1300b2b87fe81300b2b8 /* src */, ); name = "LowLevelCloth"; sourceTree = "<group>"; }; - FFFBc172d1b07fd8c172d1b0 /* include */ = { + FFFB1300b2907fe81300b290 /* include */ = { isa = PBXGroup; children = ( - FFFDc173c1707fd8c173c170 /* Cloth.h */, - FFFDc173c1d87fd8c173c1d8 /* Fabric.h */, - FFFDc173c2407fd8c173c240 /* Factory.h */, - FFFDc173c2a87fd8c173c2a8 /* PhaseConfig.h */, - FFFDc173c3107fd8c173c310 /* Range.h */, - FFFDc173c3787fd8c173c378 /* Solver.h */, - FFFDc173c3e07fd8c173c3e0 /* Types.h */, + FFFD1300ca507fe81300ca50 /* Cloth.h */, + FFFD1300cab87fe81300cab8 /* Fabric.h */, + FFFD1300cb207fe81300cb20 /* Factory.h */, + FFFD1300cb887fe81300cb88 /* PhaseConfig.h */, + FFFD1300cbf07fe81300cbf0 /* Range.h */, + FFFD1300cc587fe81300cc58 /* Solver.h */, + FFFD1300ccc07fe81300ccc0 /* Types.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc172d1d87fd8c172d1d8 /* src */ = { + FFFB1300b2b87fe81300b2b8 /* src */ = { isa = PBXGroup; children = ( - FFFDc003ca007fd8c003ca00 /* Allocator.h */, - FFFDc003ca687fd8c003ca68 /* Array.h */, - FFFDc003cad07fd8c003cad0 /* BoundingBox.h */, - FFFDc003cb387fd8c003cb38 /* ClothBase.h */, - FFFDc003cba07fd8c003cba0 /* ClothImpl.h */, - FFFDc003cc087fd8c003cc08 /* IndexPair.h */, - FFFDc003cc707fd8c003cc70 /* IterationState.h */, - FFFDc003ccd87fd8c003ccd8 /* MovingAverage.h */, - FFFDc003cd407fd8c003cd40 /* PointInterpolator.h */, - FFFDc003cda87fd8c003cda8 /* Simd.h */, - FFFDc003ce107fd8c003ce10 /* StackAllocator.h */, - FFFDc003ce787fd8c003ce78 /* SwCloth.h */, - FFFDc003cee07fd8c003cee0 /* SwClothData.h */, - FFFDc003cf487fd8c003cf48 /* SwCollision.h */, - FFFDc003cfb07fd8c003cfb0 /* SwCollisionHelpers.h */, - FFFDc003d0187fd8c003d018 /* SwFabric.h */, - FFFDc003d0807fd8c003d080 /* SwFactory.h */, - FFFDc003d0e87fd8c003d0e8 /* SwInterCollision.h */, - FFFDc003d1507fd8c003d150 /* SwSelfCollision.h */, - FFFDc003d1b87fd8c003d1b8 /* SwSolver.h */, - FFFDc003d2207fd8c003d220 /* SwSolverKernel.h */, - FFFDc003d2887fd8c003d288 /* TripletScheduler.h */, - FFFDc003d2f07fd8c003d2f0 /* Vec4T.h */, - FFFDc003d3587fd8c003d358 /* Allocator.cpp */, - FFFDc003d3c07fd8c003d3c0 /* Factory.cpp */, - FFFDc003d4287fd8c003d428 /* PhaseConfig.cpp */, - FFFDc003d4907fd8c003d490 /* SwCloth.cpp */, - FFFDc003d4f87fd8c003d4f8 /* SwClothData.cpp */, - FFFDc003d5607fd8c003d560 /* SwCollision.cpp */, - FFFDc003d5c87fd8c003d5c8 /* SwFabric.cpp */, - FFFDc003d6307fd8c003d630 /* SwFactory.cpp */, - FFFDc003d6987fd8c003d698 /* SwInterCollision.cpp */, - FFFDc003d7007fd8c003d700 /* SwSelfCollision.cpp */, - FFFDc003d7687fd8c003d768 /* SwSolver.cpp */, - FFFDc003d7d07fd8c003d7d0 /* SwSolverKernel.cpp */, - FFFDc003d8387fd8c003d838 /* TripletScheduler.cpp */, + FFFD13808e007fe813808e00 /* Allocator.h */, + FFFD13808e687fe813808e68 /* Array.h */, + FFFD13808ed07fe813808ed0 /* BoundingBox.h */, + FFFD13808f387fe813808f38 /* ClothBase.h */, + FFFD13808fa07fe813808fa0 /* ClothImpl.h */, + FFFD138090087fe813809008 /* IndexPair.h */, + FFFD138090707fe813809070 /* IterationState.h */, + FFFD138090d87fe8138090d8 /* MovingAverage.h */, + FFFD138091407fe813809140 /* PointInterpolator.h */, + FFFD138091a87fe8138091a8 /* Simd.h */, + FFFD138092107fe813809210 /* StackAllocator.h */, + FFFD138092787fe813809278 /* SwCloth.h */, + FFFD138092e07fe8138092e0 /* SwClothData.h */, + FFFD138093487fe813809348 /* SwCollision.h */, + FFFD138093b07fe8138093b0 /* SwCollisionHelpers.h */, + FFFD138094187fe813809418 /* SwFabric.h */, + FFFD138094807fe813809480 /* SwFactory.h */, + FFFD138094e87fe8138094e8 /* SwInterCollision.h */, + FFFD138095507fe813809550 /* SwSelfCollision.h */, + FFFD138095b87fe8138095b8 /* SwSolver.h */, + FFFD138096207fe813809620 /* SwSolverKernel.h */, + FFFD138096887fe813809688 /* TripletScheduler.h */, + FFFD138096f07fe8138096f0 /* Vec4T.h */, + FFFD138097587fe813809758 /* Allocator.cpp */, + FFFD138097c07fe8138097c0 /* Factory.cpp */, + FFFD138098287fe813809828 /* PhaseConfig.cpp */, + FFFD138098907fe813809890 /* SwCloth.cpp */, + FFFD138098f87fe8138098f8 /* SwClothData.cpp */, + FFFD138099607fe813809960 /* SwCollision.cpp */, + FFFD138099c87fe8138099c8 /* SwFabric.cpp */, + FFFD13809a307fe813809a30 /* SwFactory.cpp */, + FFFD13809a987fe813809a98 /* SwInterCollision.cpp */, + FFFD13809b007fe813809b00 /* SwSelfCollision.cpp */, + FFFD13809b687fe813809b68 /* SwSolver.cpp */, + FFFD13809bd07fe813809bd0 /* SwSolverKernel.cpp */, + FFFD13809c387fe813809c38 /* TripletScheduler.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc133d4f07fd8c133d4f0 /* LowLevelParticles */ = { + FFFB12708bc07fe812708bc0 /* LowLevelParticles */ = { isa = PBXGroup; children = ( - FFFBc10cbdd07fd8c10cbdd0 /* include */, - FFFBc10cbdf87fd8c10cbdf8 /* src */, + FFFB1270d5c07fe81270d5c0 /* include */, + FFFB1270d5e87fe81270d5e8 /* src */, ); name = "LowLevelParticles"; sourceTree = "<group>"; }; - FFFBc10cbdd07fd8c10cbdd0 /* include */ = { + FFFB1270d5c07fe81270d5c0 /* include */ = { isa = PBXGroup; children = ( - FFFDc187da007fd8c187da00 /* PtBodyTransformVault.h */, - FFFDc187da687fd8c187da68 /* PtContext.h */, - FFFDc187dad07fd8c187dad0 /* PtGridCellVector.h */, - FFFDc187db387fd8c187db38 /* PtParticle.h */, - FFFDc187dba07fd8c187dba0 /* PtParticleContactManagerStream.h */, - FFFDc187dc087fd8c187dc08 /* PtParticleData.h */, - FFFDc187dc707fd8c187dc70 /* PtParticleShape.h */, - FFFDc187dcd87fd8c187dcd8 /* PtParticleSystemCore.h */, - FFFDc187dd407fd8c187dd40 /* PtParticleSystemFlags.h */, - FFFDc187dda87fd8c187dda8 /* PtParticleSystemSim.h */, + FFFD119c90007fe8119c9000 /* PtBodyTransformVault.h */, + FFFD119c90687fe8119c9068 /* PtContext.h */, + FFFD119c90d07fe8119c90d0 /* PtGridCellVector.h */, + FFFD119c91387fe8119c9138 /* PtParticle.h */, + FFFD119c91a07fe8119c91a0 /* PtParticleContactManagerStream.h */, + FFFD119c92087fe8119c9208 /* PtParticleData.h */, + FFFD119c92707fe8119c9270 /* PtParticleShape.h */, + FFFD119c92d87fe8119c92d8 /* PtParticleSystemCore.h */, + FFFD119c93407fe8119c9340 /* PtParticleSystemFlags.h */, + FFFD119c93a87fe8119c93a8 /* PtParticleSystemSim.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc10cbdf87fd8c10cbdf8 /* src */ = { + FFFB1270d5e87fe81270d5e8 /* src */ = { isa = PBXGroup; children = ( - FFFDc18822007fd8c1882200 /* PtBatcher.h */, - FFFDc18822687fd8c1882268 /* PtCollision.h */, - FFFDc18822d07fd8c18822d0 /* PtCollisionData.h */, - FFFDc18823387fd8c1882338 /* PtCollisionHelper.h */, - FFFDc18823a07fd8c18823a0 /* PtCollisionMethods.h */, - FFFDc18824087fd8c1882408 /* PtCollisionParameters.h */, - FFFDc18824707fd8c1882470 /* PtConfig.h */, - FFFDc18824d87fd8c18824d8 /* PtConstants.h */, - FFFDc18825407fd8c1882540 /* PtContextCpu.h */, - FFFDc18825a87fd8c18825a8 /* PtDynamicHelper.h */, - FFFDc18826107fd8c1882610 /* PtDynamics.h */, - FFFDc18826787fd8c1882678 /* PtDynamicsKernels.h */, - FFFDc18826e07fd8c18826e0 /* PtDynamicsParameters.h */, - FFFDc18827487fd8c1882748 /* PtDynamicsTempBuffers.h */, - FFFDc18827b07fd8c18827b0 /* PtHeightFieldAabbTest.h */, - FFFDc18828187fd8c1882818 /* PtPacketSections.h */, - FFFDc18828807fd8c1882880 /* PtParticleCell.h */, - FFFDc18828e87fd8c18828e8 /* PtParticleOpcodeCache.h */, - FFFDc18829507fd8c1882950 /* PtParticleShapeCpu.h */, - FFFDc18829b87fd8c18829b8 /* PtParticleSystemSimCpu.h */, - FFFDc1882a207fd8c1882a20 /* PtSpatialHash.h */, - FFFDc1882a887fd8c1882a88 /* PtSpatialHashHelper.h */, - FFFDc1882af07fd8c1882af0 /* PtTwoWayData.h */, - FFFDc1882b587fd8c1882b58 /* PtBatcher.cpp */, - FFFDc1882bc07fd8c1882bc0 /* PtBodyTransformVault.cpp */, - FFFDc1882c287fd8c1882c28 /* PtCollision.cpp */, - FFFDc1882c907fd8c1882c90 /* PtCollisionBox.cpp */, - FFFDc1882cf87fd8c1882cf8 /* PtCollisionCapsule.cpp */, - FFFDc1882d607fd8c1882d60 /* PtCollisionConvex.cpp */, - FFFDc1882dc87fd8c1882dc8 /* PtCollisionMesh.cpp */, - FFFDc1882e307fd8c1882e30 /* PtCollisionPlane.cpp */, - FFFDc1882e987fd8c1882e98 /* PtCollisionSphere.cpp */, - FFFDc1882f007fd8c1882f00 /* PtContextCpu.cpp */, - FFFDc1882f687fd8c1882f68 /* PtDynamics.cpp */, - FFFDc1882fd07fd8c1882fd0 /* PtParticleData.cpp */, - FFFDc18830387fd8c1883038 /* PtParticleShapeCpu.cpp */, - FFFDc18830a07fd8c18830a0 /* PtParticleSystemSimCpu.cpp */, - FFFDc18831087fd8c1883108 /* PtSpatialHash.cpp */, - FFFDc18831707fd8c1883170 /* PtSpatialLocalHash.cpp */, + FFFD119ca6007fe8119ca600 /* PtBatcher.h */, + FFFD119ca6687fe8119ca668 /* PtCollision.h */, + FFFD119ca6d07fe8119ca6d0 /* PtCollisionData.h */, + FFFD119ca7387fe8119ca738 /* PtCollisionHelper.h */, + FFFD119ca7a07fe8119ca7a0 /* PtCollisionMethods.h */, + FFFD119ca8087fe8119ca808 /* PtCollisionParameters.h */, + FFFD119ca8707fe8119ca870 /* PtConfig.h */, + FFFD119ca8d87fe8119ca8d8 /* PtConstants.h */, + FFFD119ca9407fe8119ca940 /* PtContextCpu.h */, + FFFD119ca9a87fe8119ca9a8 /* PtDynamicHelper.h */, + FFFD119caa107fe8119caa10 /* PtDynamics.h */, + FFFD119caa787fe8119caa78 /* PtDynamicsKernels.h */, + FFFD119caae07fe8119caae0 /* PtDynamicsParameters.h */, + FFFD119cab487fe8119cab48 /* PtDynamicsTempBuffers.h */, + FFFD119cabb07fe8119cabb0 /* PtHeightFieldAabbTest.h */, + FFFD119cac187fe8119cac18 /* PtPacketSections.h */, + FFFD119cac807fe8119cac80 /* PtParticleCell.h */, + FFFD119cace87fe8119cace8 /* PtParticleOpcodeCache.h */, + FFFD119cad507fe8119cad50 /* PtParticleShapeCpu.h */, + FFFD119cadb87fe8119cadb8 /* PtParticleSystemSimCpu.h */, + FFFD119cae207fe8119cae20 /* PtSpatialHash.h */, + FFFD119cae887fe8119cae88 /* PtSpatialHashHelper.h */, + FFFD119caef07fe8119caef0 /* PtTwoWayData.h */, + FFFD119caf587fe8119caf58 /* PtBatcher.cpp */, + FFFD119cafc07fe8119cafc0 /* PtBodyTransformVault.cpp */, + FFFD119cb0287fe8119cb028 /* PtCollision.cpp */, + FFFD119cb0907fe8119cb090 /* PtCollisionBox.cpp */, + FFFD119cb0f87fe8119cb0f8 /* PtCollisionCapsule.cpp */, + FFFD119cb1607fe8119cb160 /* PtCollisionConvex.cpp */, + FFFD119cb1c87fe8119cb1c8 /* PtCollisionMesh.cpp */, + FFFD119cb2307fe8119cb230 /* PtCollisionPlane.cpp */, + FFFD119cb2987fe8119cb298 /* PtCollisionSphere.cpp */, + FFFD119cb3007fe8119cb300 /* PtContextCpu.cpp */, + FFFD119cb3687fe8119cb368 /* PtDynamics.cpp */, + FFFD119cb3d07fe8119cb3d0 /* PtParticleData.cpp */, + FFFD119cb4387fe8119cb438 /* PtParticleShapeCpu.cpp */, + FFFD119cb4a07fe8119cb4a0 /* PtParticleSystemSimCpu.cpp */, + FFFD119cb5087fe8119cb508 /* PtSpatialHash.cpp */, + FFFD119cb5707fe8119cb570 /* PtSpatialLocalHash.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc13406907fd8c1340690 /* PxTask */ = { + FFFB132a0da07fe8132a0da0 /* PxTask */ = { isa = PBXGroup; children = ( - FFFBc4a6b3b07fd8c4a6b3b0 /* include */, - FFFBc4a6b3d87fd8c4a6b3d8 /* src */, + FFFB132814207fe813281420 /* include */, + FFFB132814487fe813281448 /* src */, ); name = "PxTask"; sourceTree = "<group>"; }; - FFFBc4a6b3b07fd8c4a6b3b0 /* include */ = { + FFFB132814207fe813281420 /* include */ = { isa = PBXGroup; children = ( - FFFDc4a62ec07fd8c4a62ec0 /* PxCpuDispatcher.h */, - FFFDc4a62f287fd8c4a62f28 /* PxGpuDispatcher.h */, - FFFDc4a62f907fd8c4a62f90 /* PxGpuTask.h */, - FFFDc4a62ff87fd8c4a62ff8 /* PxTask.h */, - FFFDc4a630607fd8c4a63060 /* PxTaskDefine.h */, - FFFDc4a630c87fd8c4a630c8 /* PxTaskManager.h */, + FFFD132815307fe813281530 /* PxCpuDispatcher.h */, + FFFD132815987fe813281598 /* PxGpuDispatcher.h */, + FFFD132816007fe813281600 /* PxGpuTask.h */, + FFFD132816687fe813281668 /* PxTask.h */, + FFFD132816d07fe8132816d0 /* PxTaskDefine.h */, + FFFD132817387fe813281738 /* PxTaskManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc4a6b3d87fd8c4a6b3d8 /* src */ = { + FFFB132814487fe813281448 /* src */ = { isa = PBXGroup; children = ( - FFFDc4a6b5907fd8c4a6b590 /* src/TaskManager.cpp */, + FFFD132817a07fe8132817a0 /* src/TaskManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBc4a7d6007fd8c4a7d600 /* PsFastXml */ = { + FFFB1265b4d07fe81265b4d0 /* PsFastXml */ = { isa = PBXGroup; children = ( - FFFBc4a8edc07fd8c4a8edc0 /* include */, - FFFBc4a8ede87fd8c4a8ede8 /* src */, + FFFB126395307fe812639530 /* include */, + FFFB126395587fe812639558 /* src */, ); name = "PsFastXml"; sourceTree = "<group>"; }; - FFFBc4a8edc07fd8c4a8edc0 /* include */ = { + FFFB126395307fe812639530 /* include */ = { isa = PBXGroup; children = ( - FFFDc4a8ef507fd8c4a8ef50 /* PsFastXml.h */, + FFFD126394307fe812639430 /* PsFastXml.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBc4a8ede87fd8c4a8ede8 /* src */ = { + FFFB126395587fe812639558 /* src */ = { isa = PBXGroup; children = ( - FFFDc4a8f0507fd8c4a8f050 /* PsFastXml.cpp */, + FFFD1263f1107fe81263f110 /* PsFastXml.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; @@ -4991,61 +4991,61 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - FFFAc4a8bb607fd8c4a8bb60 /* PhysX */ = { + FFFA1266ac007fe81266ac00 /* PhysX */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c4a8bb607fd8c4a8bb60 /* Build configuration list for PBXNativeTarget "PhysX" */; + buildConfigurationList = FFF61266ac007fe81266ac00 /* Build configuration list for PBXNativeTarget "PhysX" */; buildPhases = ( - FFF2c4a8bb607fd8c4a8bb60, - FFF8c4a8bb607fd8c4a8bb60, - FFFCc4a8bb607fd8c4a8bb60, + FFF21266ac007fe81266ac00, + FFF81266ac007fe81266ac00, + FFFC1266ac007fe81266ac00, ); buildRules = ( ); dependencies = ( - FFF4c171ecd07fd8c171ecd0, /* LowLevel */ - FFF4c171ed307fd8c171ed30, /* LowLevelAABB */ - FFF4c1727c607fd8c1727c60, /* LowLevelCloth */ - FFF4c1723e007fd8c1723e00, /* LowLevelDynamics */ - FFF4c1727cc07fd8c1727cc0, /* LowLevelParticles */ - FFF4c171e4607fd8c171e460, /* PhysXCommon */ - FFF4c4a8be907fd8c4a8be90, /* PxFoundation */ - FFF4c4a8bd707fd8c4a8bd70, /* PxPvdSDK */ - FFF4c49048907fd8c4904890, /* PxTask */ - FFF4c49048007fd8c4904800, /* SceneQuery */ - FFF4c49048607fd8c4904860, /* SimulationController */ + FFF4126713b07fe8126713b0, /* LowLevel */ + FFF4126714107fe812671410, /* LowLevelAABB */ + FFF412670fd07fe812670fd0, /* LowLevelCloth */ + FFF412670f707fe812670f70, /* LowLevelDynamics */ + FFF4126710307fe812671030, /* LowLevelParticles */ + FFF4126750107fe812675010, /* PhysXCommon */ + FFF41266aef07fe81266aef0, /* PxFoundation */ + FFF41266aba07fe81266aba0, /* PxPvdSDK */ + FFF4126754d07fe8126754d0, /* PxTask */ + FFF4126754407fe812675440, /* SceneQuery */ + FFF4126754a07fe8126754a0, /* SimulationController */ ); name = "PhysX"; productName = "PhysX"; - productReference = FFFDc4a8bb607fd8c4a8bb60 /* PhysX */; + productReference = FFFD1266ac007fe81266ac00 /* PhysX */; productType = "com.apple.product-type.library.static"; }; - FFFAc49045107fd8c4904510 /* PhysXCharacterKinematic */ = { + FFFA126754e07fe8126754e0 /* PhysXCharacterKinematic */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c49045107fd8c4904510 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; + buildConfigurationList = FFF6126754e07fe8126754e0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; buildPhases = ( - FFF2c49045107fd8c4904510, - FFF8c49045107fd8c4904510, - FFFCc49045107fd8c4904510, + FFF2126754e07fe8126754e0, + FFF8126754e07fe8126754e0, + FFFC126754e07fe8126754e0, ); buildRules = ( ); dependencies = ( - FFF4c490a3d07fd8c490a3d0, /* PhysXCommon */ - FFF4c490d8907fd8c490d890, /* PhysXExtensions */ - FFF4c490b9507fd8c490b950, /* PxFoundation */ + FFF412677ec07fe812677ec0, /* PhysXCommon */ + FFF412675e107fe812675e10, /* PhysXExtensions */ + FFF4126724907fe812672490, /* PxFoundation */ ); name = "PhysXCharacterKinematic"; productName = "PhysXCharacterKinematic"; - productReference = FFFDc49045107fd8c4904510 /* PhysXCharacterKinematic */; + productReference = FFFD126754e07fe8126754e0 /* PhysXCharacterKinematic */; productType = "com.apple.product-type.library.static"; }; - FFFAc490d1007fd8c490d100 /* PhysXVehicle */ = { + FFFA126728307fe812672830 /* PhysXVehicle */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c490d1007fd8c490d100 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; + buildConfigurationList = FFF6126728307fe812672830 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; buildPhases = ( - FFF2c490d1007fd8c490d100, - FFF8c490d1007fd8c490d100, - FFFCc490d1007fd8c490d100, + FFF2126728307fe812672830, + FFF8126728307fe812672830, + FFFC126728307fe812672830, ); buildRules = ( ); @@ -5053,34 +5053,34 @@ ); name = "PhysXVehicle"; productName = "PhysXVehicle"; - productReference = FFFDc490d1007fd8c490d100 /* PhysXVehicle */; + productReference = FFFD126728307fe812672830 /* PhysXVehicle */; productType = "com.apple.product-type.library.static"; }; - FFFAc4912c607fd8c4912c60 /* PhysXExtensions */ = { + FFFA12683c607fe812683c60 /* PhysXExtensions */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c4912c607fd8c4912c60 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; + buildConfigurationList = FFF612683c607fe812683c60 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; buildPhases = ( - FFF2c4912c607fd8c4912c60, - FFF8c4912c607fd8c4912c60, - FFFCc4912c607fd8c4912c60, + FFF212683c607fe812683c60, + FFF812683c607fe812683c60, + FFFC12683c607fe812683c60, ); buildRules = ( ); dependencies = ( - FFF4c4910c007fd8c4910c00, /* PsFastXml */ + FFF412681b107fe812681b10, /* PsFastXml */ ); name = "PhysXExtensions"; productName = "PhysXExtensions"; - productReference = FFFDc4912c607fd8c4912c60 /* PhysXExtensions */; + productReference = FFFD12683c607fe812683c60 /* PhysXExtensions */; productType = "com.apple.product-type.library.static"; }; - FFFAc491f0907fd8c491f090 /* SceneQuery */ = { + FFFA12694cb07fe812694cb0 /* SceneQuery */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c491f0907fd8c491f090 /* Build configuration list for PBXNativeTarget "SceneQuery" */; + buildConfigurationList = FFF612694cb07fe812694cb0 /* Build configuration list for PBXNativeTarget "SceneQuery" */; buildPhases = ( - FFF2c491f0907fd8c491f090, - FFF8c491f0907fd8c491f090, - FFFCc491f0907fd8c491f090, + FFF212694cb07fe812694cb0, + FFF812694cb07fe812694cb0, + FFFC12694cb07fe812694cb0, ); buildRules = ( ); @@ -5088,16 +5088,16 @@ ); name = "SceneQuery"; productName = "SceneQuery"; - productReference = FFFDc491f0907fd8c491f090 /* SceneQuery */; + productReference = FFFD12694cb07fe812694cb0 /* SceneQuery */; productType = "com.apple.product-type.library.static"; }; - FFFAc49236207fd8c4923620 /* SimulationController */ = { + FFFA126992107fe812699210 /* SimulationController */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c49236207fd8c4923620 /* Build configuration list for PBXNativeTarget "SimulationController" */; + buildConfigurationList = FFF6126992107fe812699210 /* Build configuration list for PBXNativeTarget "SimulationController" */; buildPhases = ( - FFF2c49236207fd8c4923620, - FFF8c49236207fd8c4923620, - FFFCc49236207fd8c4923620, + FFF2126992107fe812699210, + FFF8126992107fe812699210, + FFFC126992107fe812699210, ); buildRules = ( ); @@ -5105,54 +5105,54 @@ ); name = "SimulationController"; productName = "SimulationController"; - productReference = FFFDc49236207fd8c4923620 /* SimulationController */; + productReference = FFFD126992107fe812699210 /* SimulationController */; productType = "com.apple.product-type.library.static"; }; - FFFAc10c82107fd8c10c8210 /* PhysXCooking */ = { + FFFA134ec9b07fe8134ec9b0 /* PhysXCooking */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c10c82107fd8c10c8210 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; + buildConfigurationList = FFF6134ec9b07fe8134ec9b0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; buildPhases = ( - FFF2c10c82107fd8c10c8210, - FFF8c10c82107fd8c10c8210, - FFFCc10c82107fd8c10c8210, + FFF2134ec9b07fe8134ec9b0, + FFF8134ec9b07fe8134ec9b0, + FFFC134ec9b07fe8134ec9b0, ); buildRules = ( ); dependencies = ( - FFF4c484dff07fd8c484dff0, /* PhysXCommon */ - FFF4c484fd007fd8c484fd00, /* PhysXExtensions */ - FFF4c10fa6707fd8c10fa670, /* PxFoundation */ + FFF4134edd807fe8134edd80, /* PhysXCommon */ + FFF4134eef007fe8134eef00, /* PhysXExtensions */ + FFF4134ec8807fe8134ec880, /* PxFoundation */ ); name = "PhysXCooking"; productName = "PhysXCooking"; - productReference = FFFDc10c82107fd8c10c8210 /* PhysXCooking */; + productReference = FFFD134ec9b07fe8134ec9b0 /* PhysXCooking */; productType = "com.apple.product-type.library.static"; }; - FFFAc1414ed07fd8c1414ed0 /* PhysXCommon */ = { + FFFA12128d507fe812128d50 /* PhysXCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c1414ed07fd8c1414ed0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; + buildConfigurationList = FFF612128d507fe812128d50 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; buildPhases = ( - FFF2c1414ed07fd8c1414ed0, - FFF8c1414ed07fd8c1414ed0, - FFFCc1414ed07fd8c1414ed0, + FFF212128d507fe812128d50, + FFF812128d507fe812128d50, + FFFC12128d507fe812128d50, ); buildRules = ( ); dependencies = ( - FFF4c140d6907fd8c140d690, /* PxFoundation */ + FFF4121222807fe812122280, /* PxFoundation */ ); name = "PhysXCommon"; productName = "PhysXCommon"; - productReference = FFFDc1414ed07fd8c1414ed0 /* PhysXCommon */; + productReference = FFFD12128d507fe812128d50 /* PhysXCommon */; productType = "com.apple.product-type.library.static"; }; - FFFAc141af507fd8c141af50 /* PxFoundation */ = { + FFFA121657c07fe8121657c0 /* PxFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c141af507fd8c141af50 /* Build configuration list for PBXNativeTarget "PxFoundation" */; + buildConfigurationList = FFF6121657c07fe8121657c0 /* Build configuration list for PBXNativeTarget "PxFoundation" */; buildPhases = ( - FFF2c141af507fd8c141af50, - FFF8c141af507fd8c141af50, - FFFCc141af507fd8c141af50, + FFF2121657c07fe8121657c0, + FFF8121657c07fe8121657c0, + FFFC121657c07fe8121657c0, ); buildRules = ( ); @@ -5160,34 +5160,34 @@ ); name = "PxFoundation"; productName = "PxFoundation"; - productReference = FFFDc141af507fd8c141af50 /* PxFoundation */; + productReference = FFFD121657c07fe8121657c0 /* PxFoundation */; productType = "com.apple.product-type.library.static"; }; - FFFAc173fd607fd8c173fd60 /* PxPvdSDK */ = { + FFFA12609f207fe812609f20 /* PxPvdSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c173fd607fd8c173fd60 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; + buildConfigurationList = FFF612609f207fe812609f20 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; buildPhases = ( - FFF2c173fd607fd8c173fd60, - FFF8c173fd607fd8c173fd60, - FFFCc173fd607fd8c173fd60, + FFF212609f207fe812609f20, + FFF812609f207fe812609f20, + FFFC12609f207fe812609f20, ); buildRules = ( ); dependencies = ( - FFF4c1758a407fd8c1758a40, /* PxFoundation */ + FFF4126081907fe812608190, /* PxFoundation */ ); name = "PxPvdSDK"; productName = "PxPvdSDK"; - productReference = FFFDc173fd607fd8c173fd60 /* PxPvdSDK */; + productReference = FFFD12609f207fe812609f20 /* PxPvdSDK */; productType = "com.apple.product-type.library.static"; }; - FFFAc10c0f007fd8c10c0f00 /* LowLevel */ = { + FFFA125b5b707fe8125b5b70 /* LowLevel */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c10c0f007fd8c10c0f00 /* Build configuration list for PBXNativeTarget "LowLevel" */; + buildConfigurationList = FFF6125b5b707fe8125b5b70 /* Build configuration list for PBXNativeTarget "LowLevel" */; buildPhases = ( - FFF2c10c0f007fd8c10c0f00, - FFF8c10c0f007fd8c10c0f00, - FFFCc10c0f007fd8c10c0f00, + FFF2125b5b707fe8125b5b70, + FFF8125b5b707fe8125b5b70, + FFFC125b5b707fe8125b5b70, ); buildRules = ( ); @@ -5195,16 +5195,16 @@ ); name = "LowLevel"; productName = "LowLevel"; - productReference = FFFDc10c0f007fd8c10c0f00 /* LowLevel */; + productReference = FFFD125b5b707fe8125b5b70 /* LowLevel */; productType = "com.apple.product-type.library.static"; }; - FFFAc17390207fd8c1739020 /* LowLevelAABB */ = { + FFFA1261e8907fe81261e890 /* LowLevelAABB */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c17390207fd8c1739020 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; + buildConfigurationList = FFF61261e8907fe81261e890 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; buildPhases = ( - FFF2c17390207fd8c1739020, - FFF8c17390207fd8c1739020, - FFFCc17390207fd8c1739020, + FFF21261e8907fe81261e890, + FFF81261e8907fe81261e890, + FFFC1261e8907fe81261e890, ); buildRules = ( ); @@ -5212,16 +5212,16 @@ ); name = "LowLevelAABB"; productName = "LowLevelAABB"; - productReference = FFFDc17390207fd8c1739020 /* LowLevelAABB */; + productReference = FFFD1261e8907fe81261e890 /* LowLevelAABB */; productType = "com.apple.product-type.library.static"; }; - FFFAc10c8d107fd8c10c8d10 /* LowLevelDynamics */ = { + FFFA125e9ce07fe8125e9ce0 /* LowLevelDynamics */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c10c8d107fd8c10c8d10 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; + buildConfigurationList = FFF6125e9ce07fe8125e9ce0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; buildPhases = ( - FFF2c10c8d107fd8c10c8d10, - FFF8c10c8d107fd8c10c8d10, - FFFCc10c8d107fd8c10c8d10, + FFF2125e9ce07fe8125e9ce0, + FFF8125e9ce07fe8125e9ce0, + FFFC125e9ce07fe8125e9ce0, ); buildRules = ( ); @@ -5229,16 +5229,16 @@ ); name = "LowLevelDynamics"; productName = "LowLevelDynamics"; - productReference = FFFDc10c8d107fd8c10c8d10 /* LowLevelDynamics */; + productReference = FFFD125e9ce07fe8125e9ce0 /* LowLevelDynamics */; productType = "com.apple.product-type.library.static"; }; - FFFAc172f9207fd8c172f920 /* LowLevelCloth */ = { + FFFA130090807fe813009080 /* LowLevelCloth */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c172f9207fd8c172f920 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; + buildConfigurationList = FFF6130090807fe813009080 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; buildPhases = ( - FFF2c172f9207fd8c172f920, - FFF8c172f9207fd8c172f920, - FFFCc172f9207fd8c172f920, + FFF2130090807fe813009080, + FFF8130090807fe813009080, + FFFC130090807fe813009080, ); buildRules = ( ); @@ -5246,16 +5246,16 @@ ); name = "LowLevelCloth"; productName = "LowLevelCloth"; - productReference = FFFDc172f9207fd8c172f920 /* LowLevelCloth */; + productReference = FFFD130090807fe813009080 /* LowLevelCloth */; productType = "com.apple.product-type.library.static"; }; - FFFAc133d4f07fd8c133d4f0 /* LowLevelParticles */ = { + FFFA12708bc07fe812708bc0 /* LowLevelParticles */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c133d4f07fd8c133d4f0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; + buildConfigurationList = FFF612708bc07fe812708bc0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; buildPhases = ( - FFF2c133d4f07fd8c133d4f0, - FFF8c133d4f07fd8c133d4f0, - FFFCc133d4f07fd8c133d4f0, + FFF212708bc07fe812708bc0, + FFF812708bc07fe812708bc0, + FFFC12708bc07fe812708bc0, ); buildRules = ( ); @@ -5263,16 +5263,16 @@ ); name = "LowLevelParticles"; productName = "LowLevelParticles"; - productReference = FFFDc133d4f07fd8c133d4f0 /* LowLevelParticles */; + productReference = FFFD12708bc07fe812708bc0 /* LowLevelParticles */; productType = "com.apple.product-type.library.static"; }; - FFFAc13406907fd8c1340690 /* PxTask */ = { + FFFA132a0da07fe8132a0da0 /* PxTask */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c13406907fd8c1340690 /* Build configuration list for PBXNativeTarget "PxTask" */; + buildConfigurationList = FFF6132a0da07fe8132a0da0 /* Build configuration list for PBXNativeTarget "PxTask" */; buildPhases = ( - FFF2c13406907fd8c1340690, - FFF8c13406907fd8c1340690, - FFFCc13406907fd8c1340690, + FFF2132a0da07fe8132a0da0, + FFF8132a0da07fe8132a0da0, + FFFC132a0da07fe8132a0da0, ); buildRules = ( ); @@ -5280,16 +5280,16 @@ ); name = "PxTask"; productName = "PxTask"; - productReference = FFFDc13406907fd8c1340690 /* PxTask */; + productReference = FFFD132a0da07fe8132a0da0 /* PxTask */; productType = "com.apple.product-type.library.static"; }; - FFFAc4a7d6007fd8c4a7d600 /* PsFastXml */ = { + FFFA1265b4d07fe81265b4d0 /* PsFastXml */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6c4a7d6007fd8c4a7d600 /* Build configuration list for PBXNativeTarget "PsFastXml" */; + buildConfigurationList = FFF61265b4d07fe81265b4d0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; buildPhases = ( - FFF2c4a7d6007fd8c4a7d600, - FFF8c4a7d6007fd8c4a7d600, - FFFCc4a7d6007fd8c4a7d600, + FFF21265b4d07fe81265b4d0, + FFF81265b4d07fe81265b4d0, + FFFC1265b4d07fe81265b4d0, ); buildRules = ( ); @@ -5297,213 +5297,213 @@ ); name = "PsFastXml"; productName = "PsFastXml"; - productReference = FFFDc4a7d6007fd8c4a7d600 /* PsFastXml */; + productReference = FFFD1265b4d07fe81265b4d0 /* PsFastXml */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin XCConfigurationList section */ - FFF6c4a8bb607fd8c4a8bb60 = { + FFF61266ac007fe81266ac00 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c188b2007fd8c188b200, - FFF7c188b8f07fd8c188b8f0, - FFF7c188bfe07fd8c188bfe0, - FFF7c188c6d07fd8c188c6d0, + FFF7110734007fe811073400, + FFF711073af07fe811073af0, + FFF7110741e07fe8110741e0, + FFF7110748d07fe8110748d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6c49045107fd8c4904510 = { + FFF6126754e07fe8126754e0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c3809c007fd8c3809c00, - FFF7c380a2f07fd8c380a2f0, - FFF7c380a9e07fd8c380a9e0, - FFF7c380b0d07fd8c380b0d0, + FFF7110750007fe811075000, + FFF7110756f07fe8110756f0, + FFF711075de07fe811075de0, + FFF7110764d07fe8110764d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c490d1007fd8c490d100 = { + FFF6126728307fe812672830 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c380b8007fd8c380b800, - FFF7c380bef07fd8c380bef0, - FFF7c380c5e07fd8c380c5e0, - FFF7c380ccd07fd8c380ccd0, + FFF711076c007fe811076c00, + FFF7110772f07fe8110772f0, + FFF7110779e07fe8110779e0, + FFF7110780d07fe8110780d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c4912c607fd8c4912c60 = { + FFF612683c607fe812683c60 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c380d4007fd8c380d400, - FFF7c380daf07fd8c380daf0, - FFF7c380e1e07fd8c380e1e0, - FFF7c380e8d07fd8c380e8d0, + FFF7110788007fe811078800, + FFF711078ef07fe811078ef0, + FFF7110795e07fe8110795e0, + FFF711079cd07fe811079cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c491f0907fd8c491f090 = { + FFF612694cb07fe812694cb0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c006a6007fd8c006a600, - FFF7c006acf07fd8c006acf0, - FFF7c006b3e07fd8c006b3e0, - FFF7c006bad07fd8c006bad0, + FFF71107a4007fe81107a400, + FFF71107aaf07fe81107aaf0, + FFF71107b1e07fe81107b1e0, + FFF71107b8d07fe81107b8d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c49236207fd8c4923620 = { + FFF6126992107fe812699210 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c380f0007fd8c380f000, - FFF7c380f6f07fd8c380f6f0, - FFF7c380fde07fd8c380fde0, - FFF7c38104d07fd8c38104d0, + FFF71107c0007fe81107c000, + FFF71107c6f07fe81107c6f0, + FFF71107cde07fe81107cde0, + FFF71107d4d07fe81107d4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c10c82107fd8c10c8210 = { + FFF6134ec9b07fe8134ec9b0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c006c2007fd8c006c200, - FFF7c006c8f07fd8c006c8f0, - FFF7c006cfe07fd8c006cfe0, - FFF7c006d6d07fd8c006d6d0, + FFF71107dc007fe81107dc00, + FFF71107e2f07fe81107e2f0, + FFF71107e9e07fe81107e9e0, + FFF71107f0d07fe81107f0d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6c1414ed07fd8c1414ed0 = { + FFF612128d507fe812128d50 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c080fc007fd8c080fc00, - FFF7c08102f07fd8c08102f0, - FFF7c08109e07fd8c08109e0, - FFF7c08110d07fd8c08110d0, + FFF7110268007fe811026800, + FFF711026ef07fe811026ef0, + FFF7110275e07fe8110275e0, + FFF711027cd07fe811027cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6c141af507fd8c141af50 = { + FFF6121657c07fe8121657c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c18750007fd8c1875000, - FFF7c18756f07fd8c18756f0, - FFF7c1875de07fd8c1875de0, - FFF7c18764d07fd8c18764d0, + FFF71197a2007fe81197a200, + FFF71197a8f07fe81197a8f0, + FFF71197afe07fe81197afe0, + FFF71197b6d07fe81197b6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c173fd607fd8c173fd60 = { + FFF612609f207fe812609f20 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c186aa007fd8c186aa00, - FFF7c186b0f07fd8c186b0f0, - FFF7c186b7e07fd8c186b7e0, - FFF7c186bed07fd8c186bed0, + FFF71280b8007fe81280b800, + FFF71280bef07fe81280bef0, + FFF71280c5e07fe81280c5e0, + FFF71280ccd07fe81280ccd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c10c0f007fd8c10c0f00 = { + FFF6125b5b707fe8125b5b70 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c400d2007fd8c400d200, - FFF7c400d8f07fd8c400d8f0, - FFF7c400dfe07fd8c400dfe0, - FFF7c400e6d07fd8c400e6d0, + FFF7119b7c007fe8119b7c00, + FFF7119b82f07fe8119b82f0, + FFF7119b89e07fe8119b89e0, + FFF7119b90d07fe8119b90d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c17390207fd8c1739020 = { + FFF61261e8907fe81261e890 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c201e2007fd8c201e200, - FFF7c201e8f07fd8c201e8f0, - FFF7c201efe07fd8c201efe0, - FFF7c201f6d07fd8c201f6d0, + FFF7128192007fe812819200, + FFF7128198f07fe8128198f0, + FFF712819fe07fe812819fe0, + FFF71281a6d07fe81281a6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c10c8d107fd8c10c8d10 = { + FFF6125e9ce07fe8125e9ce0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c28478007fd8c2847800, - FFF7c2847ef07fd8c2847ef0, - FFF7c28485e07fd8c28485e0, - FFF7c2848cd07fd8c2848cd0, + FFF7119c26007fe8119c2600, + FFF7119c2cf07fe8119c2cf0, + FFF7119c33e07fe8119c33e0, + FFF7119c3ad07fe8119c3ad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c172f9207fd8c172f920 = { + FFF6130090807fe813009080 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c30090007fd8c3009000, - FFF7c30096f07fd8c30096f0, - FFF7c3009de07fd8c3009de0, - FFF7c300a4d07fd8c300a4d0, + FFF71380a8007fe81380a800, + FFF71380aef07fe81380aef0, + FFF71380b5e07fe81380b5e0, + FFF71380bcd07fe81380bcd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c133d4f07fd8c133d4f0 = { + FFF612708bc07fe812708bc0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c08118007fd8c0811800, - FFF7c0811ef07fd8c0811ef0, - FFF7c08125e07fd8c08125e0, - FFF7c0812cd07fd8c0812cd0, + FFF7119cc0007fe8119cc000, + FFF7119cc6f07fe8119cc6f0, + FFF7119ccde07fe8119ccde0, + FFF7119cd4d07fe8119cd4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c13406907fd8c1340690 = { + FFF6132a0da07fe8132a0da0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c080c4007fd8c080c400, - FFF7c080caf07fd8c080caf0, - FFF7c080d1e07fd8c080d1e0, - FFF7c080d8d07fd8c080d8d0, + FFF71104c0007fe81104c000, + FFF71104c6f07fe81104c6f0, + FFF71104cde07fe81104cde0, + FFF71104d4d07fe81104d4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6c4a7d6007fd8c4a7d600 = { + FFF61265b4d07fe81265b4d0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7c00442007fd8c0044200, - FFF7c00448f07fd8c00448f0, - FFF7c0044fe07fd8c0044fe0, - FFF7c00456d07fd8c00456d0, + FFF7128206007fe812820600, + FFF712820cf07fe812820cf0, + FFF7128213e07fe8128213e0, + FFF712821ad07fe812821ad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6bfd0c8107fd8bfd0c810 = { + FFF610f1e4907fe810f1e490 = { isa = XCConfigurationList; buildConfigurations = ( - FFF3c188b2007fd8c188b200 /* release */, - FFF3c188b8f07fd8c188b8f0 /* debug */, - FFF3c188bfe07fd8c188bfe0 /* checked */, - FFF3c188c6d07fd8c188c6d0 /* profile */, + FFF3110734007fe811073400 /* release */, + FFF311073af07fe811073af0 /* debug */, + FFF3110741e07fe8110741e0 /* checked */, + FFF3110748d07fe8110748d0 /* profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; /* End XCConfigurationList section */ /* Begin XCBuildConfiguration section */ - FFF7c188b2007fd8c188b200 /* release */ = { + FFF7110734007fe811073400 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5533,7 +5533,7 @@ }; name = "release"; }; - FFF7c188b8f07fd8c188b8f0 /* debug */ = { + FFF711073af07fe811073af0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5563,7 +5563,7 @@ }; name = "debug"; }; - FFF7c188bfe07fd8c188bfe0 /* checked */ = { + FFF7110741e07fe8110741e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5593,7 +5593,7 @@ }; name = "checked"; }; - FFF7c188c6d07fd8c188c6d0 /* profile */ = { + FFF7110748d07fe8110748d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5623,7 +5623,7 @@ }; name = "profile"; }; - FFF7c3809c007fd8c3809c00 /* debug */ = { + FFF7110750007fe811075000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5653,7 +5653,7 @@ }; name = "debug"; }; - FFF7c380a2f07fd8c380a2f0 /* checked */ = { + FFF7110756f07fe8110756f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5683,7 +5683,7 @@ }; name = "checked"; }; - FFF7c380a9e07fd8c380a9e0 /* profile */ = { + FFF711075de07fe811075de0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5713,7 +5713,7 @@ }; name = "profile"; }; - FFF7c380b0d07fd8c380b0d0 /* release */ = { + FFF7110764d07fe8110764d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5743,7 +5743,7 @@ }; name = "release"; }; - FFF7c380b8007fd8c380b800 /* debug */ = { + FFF711076c007fe811076c00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5773,7 +5773,7 @@ }; name = "debug"; }; - FFF7c380bef07fd8c380bef0 /* checked */ = { + FFF7110772f07fe8110772f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5803,7 +5803,7 @@ }; name = "checked"; }; - FFF7c380c5e07fd8c380c5e0 /* profile */ = { + FFF7110779e07fe8110779e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5833,7 +5833,7 @@ }; name = "profile"; }; - FFF7c380ccd07fd8c380ccd0 /* release */ = { + FFF7110780d07fe8110780d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5863,7 +5863,7 @@ }; name = "release"; }; - FFF7c380d4007fd8c380d400 /* debug */ = { + FFF7110788007fe811078800 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5871,7 +5871,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5893,7 +5893,7 @@ }; name = "debug"; }; - FFF7c380daf07fd8c380daf0 /* checked */ = { + FFF711078ef07fe811078ef0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5901,7 +5901,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5923,7 +5923,7 @@ }; name = "checked"; }; - FFF7c380e1e07fd8c380e1e0 /* profile */ = { + FFF7110795e07fe8110795e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5931,7 +5931,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5953,7 +5953,7 @@ }; name = "profile"; }; - FFF7c380e8d07fd8c380e8d0 /* release */ = { + FFF711079cd07fe811079cd0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5961,7 +5961,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", + "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5983,7 +5983,7 @@ }; name = "release"; }; - FFF7c006a6007fd8c006a600 /* debug */ = { + FFF71107a4007fe81107a400 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6013,7 +6013,7 @@ }; name = "debug"; }; - FFF7c006acf07fd8c006acf0 /* checked */ = { + FFF71107aaf07fe81107aaf0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6043,7 +6043,7 @@ }; name = "checked"; }; - FFF7c006b3e07fd8c006b3e0 /* profile */ = { + FFF71107b1e07fe81107b1e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6073,7 +6073,7 @@ }; name = "profile"; }; - FFF7c006bad07fd8c006bad0 /* release */ = { + FFF71107b8d07fe81107b8d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6103,7 +6103,7 @@ }; name = "release"; }; - FFF7c380f0007fd8c380f000 /* debug */ = { + FFF71107c0007fe81107c000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6133,7 +6133,7 @@ }; name = "debug"; }; - FFF7c380f6f07fd8c380f6f0 /* checked */ = { + FFF71107c6f07fe81107c6f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6163,7 +6163,7 @@ }; name = "checked"; }; - FFF7c380fde07fd8c380fde0 /* profile */ = { + FFF71107cde07fe81107cde0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6193,7 +6193,7 @@ }; name = "profile"; }; - FFF7c38104d07fd8c38104d0 /* release */ = { + FFF71107d4d07fe81107d4d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6223,7 +6223,7 @@ }; name = "release"; }; - FFF7c006c2007fd8c006c200 /* release */ = { + FFF71107dc007fe81107dc00 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6253,7 +6253,7 @@ }; name = "release"; }; - FFF7c006c8f07fd8c006c8f0 /* debug */ = { + FFF71107e2f07fe81107e2f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6283,7 +6283,7 @@ }; name = "debug"; }; - FFF7c006cfe07fd8c006cfe0 /* checked */ = { + FFF71107e9e07fe81107e9e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6313,7 +6313,7 @@ }; name = "checked"; }; - FFF7c006d6d07fd8c006d6d0 /* profile */ = { + FFF71107f0d07fe81107f0d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6343,7 +6343,7 @@ }; name = "profile"; }; - FFF7c080fc007fd8c080fc00 /* release */ = { + FFF7110268007fe811026800 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6373,7 +6373,7 @@ }; name = "release"; }; - FFF7c08102f07fd8c08102f0 /* debug */ = { + FFF711026ef07fe811026ef0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6403,7 +6403,7 @@ }; name = "debug"; }; - FFF7c08109e07fd8c08109e0 /* checked */ = { + FFF7110275e07fe8110275e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6433,7 +6433,7 @@ }; name = "checked"; }; - FFF7c08110d07fd8c08110d0 /* profile */ = { + FFF711027cd07fe811027cd0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6463,7 +6463,7 @@ }; name = "profile"; }; - FFF7c18750007fd8c1875000 /* debug */ = { + FFF71197a2007fe81197a200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6493,7 +6493,7 @@ }; name = "debug"; }; - FFF7c18756f07fd8c18756f0 /* release */ = { + FFF71197a8f07fe81197a8f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6523,7 +6523,7 @@ }; name = "release"; }; - FFF7c1875de07fd8c1875de0 /* checked */ = { + FFF71197afe07fe81197afe0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6553,7 +6553,7 @@ }; name = "checked"; }; - FFF7c18764d07fd8c18764d0 /* profile */ = { + FFF71197b6d07fe81197b6d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6583,7 +6583,7 @@ }; name = "profile"; }; - FFF7c186aa007fd8c186aa00 /* debug */ = { + FFF71280b8007fe81280b800 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6613,7 +6613,7 @@ }; name = "debug"; }; - FFF7c186b0f07fd8c186b0f0 /* release */ = { + FFF71280bef07fe81280bef0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6643,7 +6643,7 @@ }; name = "release"; }; - FFF7c186b7e07fd8c186b7e0 /* checked */ = { + FFF71280c5e07fe81280c5e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6673,7 +6673,7 @@ }; name = "checked"; }; - FFF7c186bed07fd8c186bed0 /* profile */ = { + FFF71280ccd07fe81280ccd0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6703,7 +6703,7 @@ }; name = "profile"; }; - FFF7c400d2007fd8c400d200 /* debug */ = { + FFF7119b7c007fe8119b7c00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6733,7 +6733,7 @@ }; name = "debug"; }; - FFF7c400d8f07fd8c400d8f0 /* checked */ = { + FFF7119b82f07fe8119b82f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6763,7 +6763,7 @@ }; name = "checked"; }; - FFF7c400dfe07fd8c400dfe0 /* profile */ = { + FFF7119b89e07fe8119b89e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6793,7 +6793,7 @@ }; name = "profile"; }; - FFF7c400e6d07fd8c400e6d0 /* release */ = { + FFF7119b90d07fe8119b90d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6823,7 +6823,7 @@ }; name = "release"; }; - FFF7c201e2007fd8c201e200 /* debug */ = { + FFF7128192007fe812819200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6853,7 +6853,7 @@ }; name = "debug"; }; - FFF7c201e8f07fd8c201e8f0 /* checked */ = { + FFF7128198f07fe8128198f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6883,7 +6883,7 @@ }; name = "checked"; }; - FFF7c201efe07fd8c201efe0 /* profile */ = { + FFF712819fe07fe812819fe0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6913,7 +6913,7 @@ }; name = "profile"; }; - FFF7c201f6d07fd8c201f6d0 /* release */ = { + FFF71281a6d07fe81281a6d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6943,7 +6943,7 @@ }; name = "release"; }; - FFF7c28478007fd8c2847800 /* debug */ = { + FFF7119c26007fe8119c2600 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6973,7 +6973,7 @@ }; name = "debug"; }; - FFF7c2847ef07fd8c2847ef0 /* checked */ = { + FFF7119c2cf07fe8119c2cf0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7003,7 +7003,7 @@ }; name = "checked"; }; - FFF7c28485e07fd8c28485e0 /* profile */ = { + FFF7119c33e07fe8119c33e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7033,7 +7033,7 @@ }; name = "profile"; }; - FFF7c2848cd07fd8c2848cd0 /* release */ = { + FFF7119c3ad07fe8119c3ad0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7063,7 +7063,7 @@ }; name = "release"; }; - FFF7c30090007fd8c3009000 /* debug */ = { + FFF71380a8007fe81380a800 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7093,7 +7093,7 @@ }; name = "debug"; }; - FFF7c30096f07fd8c30096f0 /* checked */ = { + FFF71380aef07fe81380aef0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7123,7 +7123,7 @@ }; name = "checked"; }; - FFF7c3009de07fd8c3009de0 /* profile */ = { + FFF71380b5e07fe81380b5e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7153,7 +7153,7 @@ }; name = "profile"; }; - FFF7c300a4d07fd8c300a4d0 /* release */ = { + FFF71380bcd07fe81380bcd0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7183,7 +7183,7 @@ }; name = "release"; }; - FFF7c08118007fd8c0811800 /* debug */ = { + FFF7119cc0007fe8119cc000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7213,7 +7213,7 @@ }; name = "debug"; }; - FFF7c0811ef07fd8c0811ef0 /* checked */ = { + FFF7119cc6f07fe8119cc6f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7243,7 +7243,7 @@ }; name = "checked"; }; - FFF7c08125e07fd8c08125e0 /* profile */ = { + FFF7119ccde07fe8119ccde0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7273,7 +7273,7 @@ }; name = "profile"; }; - FFF7c0812cd07fd8c0812cd0 /* release */ = { + FFF7119cd4d07fe8119cd4d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7303,7 +7303,7 @@ }; name = "release"; }; - FFF7c080c4007fd8c080c400 /* debug */ = { + FFF71104c0007fe81104c000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7333,7 +7333,7 @@ }; name = "debug"; }; - FFF7c080caf07fd8c080caf0 /* release */ = { + FFF71104c6f07fe81104c6f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7363,7 +7363,7 @@ }; name = "release"; }; - FFF7c080d1e07fd8c080d1e0 /* checked */ = { + FFF71104cde07fe81104cde0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7393,7 +7393,7 @@ }; name = "checked"; }; - FFF7c080d8d07fd8c080d8d0 /* profile */ = { + FFF71104d4d07fe81104d4d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7423,7 +7423,7 @@ }; name = "profile"; }; - FFF7c00442007fd8c0044200 /* debug */ = { + FFF7128206007fe812820600 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7453,7 +7453,7 @@ }; name = "debug"; }; - FFF7c00448f07fd8c00448f0 /* release */ = { + FFF712820cf07fe812820cf0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7483,7 +7483,7 @@ }; name = "release"; }; - FFF7c0044fe07fd8c0044fe0 /* checked */ = { + FFF7128213e07fe8128213e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7513,7 +7513,7 @@ }; name = "checked"; }; - FFF7c00456d07fd8c00456d0 /* profile */ = { + FFF712821ad07fe812821ad0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7543,25 +7543,25 @@ }; name = "profile"; }; - FFF3c188b2007fd8c188b200 /* release */ = { + FFF3110734007fe811073400 /* release */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "release"; }; - FFF3c188b8f07fd8c188b8f0 /* debug */ = { + FFF311073af07fe811073af0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "debug"; }; - FFF3c188bfe07fd8c188bfe0 /* checked */ = { + FFF3110741e07fe8110741e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "checked"; }; - FFF3c188c6d07fd8c188c6d0 /* profile */ = { + FFF3110748d07fe8110748d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { }; @@ -7570,34 +7570,34 @@ /* End XCBuildConfiguration section */ /* Begin PBXProject section */ - FFF9bfd0c8107fd8bfd0c810 /* Project object */ = { + FFF910f1e4907fe810f1e490 /* Project object */ = { isa = PBXProject; - buildConfigurationList = FFF6bfd0c8107fd8bfd0c810 /* Build configuration list for PBXProject PhysX */; + buildConfigurationList = FFF610f1e4907fe810f1e490 /* Build configuration list for PBXProject PhysX */; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; - mainGroup = FFFBbfd0c8787fd8bfd0c878 /* PhysX */; + mainGroup = FFFB10f1e4f87fe810f1e4f8 /* PhysX */; targets = ( - FFFAc4a8bb607fd8c4a8bb60, - FFFAc49045107fd8c4904510, - FFFAc490d1007fd8c490d100, - FFFAc4912c607fd8c4912c60, - FFFAc491f0907fd8c491f090, - FFFAc49236207fd8c4923620, - FFFAc10c82107fd8c10c8210, - FFFAc1414ed07fd8c1414ed0, - FFFAc141af507fd8c141af50, - FFFAc173fd607fd8c173fd60, - FFFAc10c0f007fd8c10c0f00, - FFFAc17390207fd8c1739020, - FFFAc10c8d107fd8c10c8d10, - FFFAc172f9207fd8c172f920, - FFFAc133d4f07fd8c133d4f0, - FFFAc13406907fd8c1340690, - FFFAc4a7d6007fd8c4a7d600, + FFFA1266ac007fe81266ac00, + FFFA126754e07fe8126754e0, + FFFA126728307fe812672830, + FFFA12683c607fe812683c60, + FFFA12694cb07fe812694cb0, + FFFA126992107fe812699210, + FFFA134ec9b07fe8134ec9b0, + FFFA12128d507fe812128d50, + FFFA121657c07fe8121657c0, + FFFA12609f207fe812609f20, + FFFA125b5b707fe8125b5b70, + FFFA1261e8907fe81261e890, + FFFA125e9ce07fe8125e9ce0, + FFFA130090807fe813009080, + FFFA12708bc07fe812708bc0, + FFFA132a0da07fe8132a0da0, + FFFA1265b4d07fe81265b4d0, ); }; /* End PBXProject section */ }; - rootObject = FFF9bfd0c8107fd8bfd0c810 /* Project object */; + rootObject = FFF910f1e4907fe810f1e490 /* Project object */; } |